/* =====================
   GLOBAL RESET & TOKENS
===================== */
:root {
  --primary: #D79847;
  --hover: ;
  --dark: #0f2a1d;
  --dark-2: #153b27;
  --text: #222;
  --muted: #666;
  --bg-light: #fafafa;
  --radius: 0.25rem;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =====================
   FONT SYSTEM (UPDATED)
===================== */

/* All text uses Merriweather */
body {
  font-family: 'Merriweather', serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  /* better for serif readability */
}

/* Headings – slightly stronger weight */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--text);

}

/* Paragraphs & small text */
p,
nav a,
.logo,
.btn-primary,
.btn-secondary,
.btn-outline,
.footer,
.footer a,
input,
button {
  font-family: 'Merriweather', serif;
}

/* =====================
   CONTAINER
===================== */
.container {

  width: min(90%, 1200px);
  margin-inline: auto;

}

/* =====================
   TYPOGRAPHY
===================== */
h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--dark);
  font-size: 0.95rem;
}

.section-subtitle {
  max-width: 600px;
  margin-bottom: 40px;
}

/* =====================
   BUTTONS
===================== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #0A2540;
  color: #fff;
}

.btn-primary:hover {
  background: #D79847;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;

}

/* ================= Premium Navbar ================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo img {
  height: 70px;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #1f2933;
  transition: color 0.3s ease;
}

/* Underline hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c89b3c;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #c89b3c;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Premium CTA Button */
.btn-quote {
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #c89b3c;
  color: #c89b3c;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: #c89b3c;
  color: #fff !important; 
  
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: #C9A24D;
  border-radius: 2px;
}

/* ================= Mobile Menu ================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.mobile-menu a {
  padding: 14px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1f2933;
  border-bottom: 1px solid #eee;
}

.mobile-quote {
  margin-top: 15px;
  text-align: center;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
  .logo img {
  height: 60px;
}
}


/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Animated background layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero/about.jpg") center / cover no-repeat;
  animation: heroZoom 10s ease-in-out infinite alternate;
  z-index: 0;
}

/* Premium dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11,44,61,0.65), rgba(11,44,61,0.65));
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  color: white;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-buttons a.btn-primary {
  background: #c8a14a;
  color: #111;
}

.hero-buttons a.btn-primary:hover {
  background: #b8923f;
}

.hero-buttons a.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-buttons a.btn-secondary:hover {
  background: #fff;
  color: #0b2c3d;
}

/* ===== Background Zoom Animation ===== */
@keyframes heroZoom {
  0% {
    transform: scale(1) translate(0,0);
  }
  100% {
    transform: scale(1.15) translate(-30px, -20px);
  }
}

/* ===== Text Fade Animation ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
}

/* =====================
   PRODUCTS
===================== */
.products-container {
  width: min(90%, 1200px);
  margin-inline: auto;

  margin-top: 5rem;
  margin-bottom: 5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  background: #d79947cb;
}

/* Image wrapper */
.product-img {
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  padding: 16px;
  /* shows card background */
}

/* Image itself */
.product-img img {
  width: 17rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 10px;
  /* image radius */
  display: block;
}

/* Text */
.product-card h4 {
  margin: 0rem 0rem 0.5rem 0rem;
  text-align: center;
}

.product-card p {
  margin: 0 15px 20px;
  text-align: center;
}

.products-cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, repeat (1, 4fr));
    gap: 24px;
    margin-top: 2rem;
  }

}

/* =====================
   ABOUT SECTION (BG IMAGE)
===================== */
.about {
  padding: 6rem 2rem;
  margin-top: 2rem;
}

.about-bg {
  position: relative;
  background: url("../img/about.jpg") center / cover no-repeat;
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
}

/* Premium overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 44, 61, 0.55),
    rgba(11, 44, 61, 0.65)
  );
}


/* Content */
.about-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.about-content h2 {
  margin-bottom: 22px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

.about-content p {
  color: #e5e7eb;
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1.05rem;
}

/* Button */
.about-content .btn-secondary {
  margin-top: 1.8rem;
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
}

/* =====================
   RESPONSIVE – MOBILE
===================== */
@media (max-width: 768px) {
  .about {
    padding: 3.5rem 1.2rem;
    margin-top: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}


/* =====================
   WHY ZAÏKA – BOLD WITH IMAGE
===================== */
.why-bold {
  background: var(--dark);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.why-h2 {
  color: white;
  margin-bottom: 0rem;
}

.why-bold-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.why-bold-content h2 {
  color: #fff;
}

.why-intro {
  margin: 0rem 0 4rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e6e6e6;
  text-align: center;
}

/* Points */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-bold-item {
  border-left: 3px solid var(--primary);
  padding-left: 18px;
}

.why-bold-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  color: #fff;
}

.why-bold-item p {
  font-size: 0.9rem;
  color: #d0d0d0;
  line-height: 1.6;
}

/* Image */
.why-bold-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-bold-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .why-bold-layout {
    grid-template-columns: 1fr;
  }

  .why-bold-image {
    order: -1;
    /* image first on mobile */
  }

  .why-bold-content {
    text-align: center;
  }

  .why-bold-item {
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-left: 0;
    padding-top: 14px;
  }
}


/* =====================
   CONTACT CTA
===================== */
.contact-cta {
  margin: 4rem auto;
  padding: 4.5rem 1.5rem;
  max-width: 1000px;
  text-align: center;
  background: linear-gradient(135deg, #081f2b, #0b2c3d);
  color: #ffffff;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

/* subtle premium glow */
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
    rgba(212,175,55,0.15),
    transparent 60%);
  pointer-events: none;
}

.contact-h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-cta p {
  color: #cbd5e1;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Button */
.contact-cta .btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid #d4af37;
  color: #081f2b;
  background: #d4af37;
  transition: all 0.3s ease;
}

.contact-cta .btn:hover {
  background: transparent;
  color: #d4af37;
  transform: translateY(-2px);
}

/* Contact details (hidden initially) */
.contact-details {
  margin-top: 1.8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-size: 0.9rem;
}

.contact-details a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #d4af37;
}

.contact-details .divider {
  margin: 0 0.6rem;
  color: #94a3b8;
}

/* Reveal on hover */
.contact-cta:hover .contact-details {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .contact-cta {
    margin: 3rem 1rem;
    padding: 3.5rem 1.5rem;
  }

  .contact-h2 {
    font-size: 1.9rem;
  }

  .contact-cta p {
    font-size: 0.95rem;
  }

  .contact-details {
    font-size: 0.85rem;
  }
}




/* =====================
   FOOTER
===================== */
.footer {
  background: #0b2c3d;
  color: #dcdcdc;
  padding-top: 60px;
  margin-top: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 20px 40px;
}

.footer p {
  color: #cfcfcf;
}

/* Brand */
.footer-logo {
  height: 3.5rem;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Contact */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #cbd5e1;
  font-size: 15px;
}

.footer-contact i {
  width: 18px;
  height: 18px;
  color: var(--accent);
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px 0;
  font-size: 0.8rem;
  color: #bdbdbd;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .footer {
    text-align: left;
    padding-top: 40px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-links, .footer-contact {
    text-align: left;
  }
}


/* =====================
   PRODUCT PAGE – HERO
===================== */
.hero-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* CONTENT */
.hero-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 20px;
  animation: fadeInUp 0.9s ease forwards;
}

.hero-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  color: white;
}

.hero-hero-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #e5e7eb;
  margin-bottom: 22px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.breadcrumb a {
  color: #c89b3c;
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #ffffff;
}

/* ================= ANIMATION ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-hero {
    min-height: 45vh;
  }

  .hero-hero-content h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

@media (max-width: 480px) {
  .hero-hero {
    min-height: 40vh;
  }

  .hero-hero-content h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-hero-content p {
    font-size: 0.9rem;
  }
}
