@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: #f48e2f;
  --secondary: #A8D5BA;
  --bg-color: #ffffff;
  --text-color: #171717;
  --text-muted: #575757;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  /* Spacing & Borders */
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  background-image: url('https://images.unsplash.com/photo-1512100356956-c1b47f4b8a21?auto=format&fit=crop&q=80');
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .btn {
  color: #ffffff;
  margin: 10px;
}

/* Bento Grid Layout */
.bento-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  background: var(--bg-color);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

/* Bento Variations */
.large { grid-column: span 2; grid-row: span 2; }
.wide { grid-column: span 2; }
.tall { grid-row: span 2; }

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #d97924;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(244, 142, 47, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #171717;
}

.btn-secondary:hover {
  background-color: #92ba9f;
  transform: scale(1.02);
}

/* Product Cards */
.product-card {
  background: var(--bg-color);
  border-radius: var(--radius);
  padding: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 15px;
  background: #fcfcfc;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
}

/* Accents & Utilities */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--secondary);
  color: #171717;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.text-highlight {
  color: var(--primary);
}

.matte-finish {
  background-color: #f9f9f9;
  border: none;
}

/* Forms */
input, select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-family: inherit;
  margin-bottom: 15px;
}

input:focus {
  outline: none;
  border-color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bento-container {
    grid-template-columns: 1fr;
  }
  .large, .wide, .tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}