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

:root {
  --annafi-gold: #c5a15a;
  --annafi-cream: #f4efe5;
  --annafi-sage: #d7e1d4;
  --annafi-olive: #8a9a6a;
  --text-main: #444444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 90px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: #fafbfa;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(14px);
}

.navbar-brand img {
  height: 52px;
}

.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  min-height: 480px;
  width: 100%;
  background: linear-gradient(135deg, var(--annafi-cream), var(--annafi-sage), var(--annafi-gold));
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 3rem;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-products {
  margin-top: 32px;
}

.hero-products img {
  border-radius: 12px;
  height: 120px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Sections */
.section {
  padding: 60px 20px;
}

.section.alt {
  background: linear-gradient(135deg, #f6f8f6, #edf2ec);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.section-lead {
  max-width: 720px;
  font-size: 1.02rem;
}

/* Cards */
.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--annafi-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--annafi-olive);
  margin-bottom: 0.5rem;
}

.product-card img {
  height: 210px;
  object-fit: cover;
  /* border-radius: 10px 10px 0 0; */
}

.product-card .card-body {
  font-size: 0.93rem;
}

/* Catalog table */
.catalog-table {
  font-size: 0.92rem;
}

/* Contact */
.contact-info p {
  margin-bottom: 0.3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  z-index: 998;
}

.whatsapp-float span.icon {
  font-size: 1.2rem;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 24px 0;
  background: #f0f2f0;
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.9s ease-out forwards;
}

.fade-delay-1 { animation-delay: 0.1s; }
.fade-delay-2 { animation-delay: 0.2s; }
.fade-delay-3 { animation-delay: 0.3s; }
.fade-delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 80px;
  }
  .hero {
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto;
  }
  .hero-products {
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .section {
    padding: 40px 16px;
  }
}
