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

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fbf7f2 0%, #f2ebe2 60%, #efe6da 100%);
  color: #4a4a4a;
}

/* HEADER */
.header {
  text-align: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  max-width: 2000px;
  margin: 0px auto;
}

.logo {
  max-width: 240px;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 10%;
  display: flex;
  align-items: center;
  background: url("images/background_1.png") center/cover no-repeat;
  overflow: hidden;
  max-width: 2000px;
  margin: 0px auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 239, 231, 0.95) 10%, rgba(243, 233, 223, 0.85) 45%, rgba(208, 187, 160, 0.45) 100%);
}

.hero-content {
  position: relative;
  max-width: 630px;
  padding: 48px 56px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 90px rgba(74, 63, 50, 0.18);
  border: 1px solid rgba(184, 167, 143, 0.4);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #4b3b2a;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #6b655f;
}

.hero small {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #958b80;
}

/* COLLECTIONS */
.collections {
  padding: 30px 10%;
   max-width: 2000px;
  margin: 0px auto;
}

.collections h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 32px;
  padding-bottom: 15px ;
  margin-bottom: 40px;
  position: relative;
  color: #4b3b2a;
  border-bottom: 1px solid rgba(190, 172, 150, 0.3);
}



/* EXACT CARD STYLE */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 30px;
}


.collection-card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgba(190, 172, 150, 0.25);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 60px rgba(50, 35, 20, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 75px rgba(50, 35, 20, 0.12);
}

.collection-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.collection-card span {
  display: block;
  text-align: center;
  padding: 18px 16px 22px;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  color: #5a4b3c;
  letter-spacing: 0.04em;
}

/* WHY AMBAYA */
.why {
  position: relative;
  padding: 120px 10%;
  text-align: center;
  background: url("images/why_bg.png") center/cover no-repeat;
  overflow: hidden;
   max-width: 2000px;
  margin: 0px auto;
}

.why-content {
  position: relative;
  max-width: 680px;
  /* margin: 0 auto; */
  padding: 48px 40px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.why-content h2 {
  font-family: 'Playfair Display', serif;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(190, 172, 150, 0.3);
  font-size: 40px;
  color: #3a2f24;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.why-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  color: #7a6a57;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.why-subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  color: #4e463c;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.why-tagline {
  font-size: 18px;
  color: #6b5c4c;
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  letter-spacing: 1px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 50px 8%;
  background: #f1ece6;
  font-size: 14px;
  color: #6b6b6b;
   max-width: 2000px;
  margin: 0px auto;
}

.features div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(181, 157, 124, 0.4);
  background: rgba(255, 255, 255, 0.6);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 22px;
  font-size: 12px;
  color: #888;
  background: #f1ece6;
   max-width: 2000px;
  margin: 0px auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    padding: 110px 8%;
  }

  .why {
    padding: 100px 8%;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 80px 6%;
  }

  .hero-content {
    padding: 32px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .why {
    padding: 80px 6%;
  }

  .why-content {
    padding: 32px 24px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 24px;
  }

  .notify-form button {
    width: 100%;
    margin-bottom: 6px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }
}
