* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

/* ========== NAVBAR ========== */
.navbar {
  position: absolute;   /* 🔥 THIS keeps it locked */
  top: 0;
  left: 0;
  width: 100%;

  padding: 20px 80px;
  z-index: 9999;

  background: transparent; /* or slight blur if you want */
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Home page navbar - WHITE */
.navbar.home-page {
  background: transparent;
}

/* Other pages navbar - BLACK (add this class to other pages) */
.navbar.other-page {
  background: transparent;
}

/* BASE LINKS (desktop default) */
/* BASE (other pages default) */
.navbar a {
  color: #000000;
}

/* HOME PAGE (white over image) */
.navbar.home-page a {
  color: white;
}

/* HAMBURGER */
.hamburger span {
  background: #000000;
}

/* HOME PAGE hamburger */
.navbar.home-page .hamburger span {
  background: white;
}

/* HIDE hamburger by default (desktop) */
.hamburger {
  display: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left, .nav-right {
  display: flex;
  gap: 40px;
  flex: 1;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.navbar a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.navbar a:hover {
  opacity: 0.7;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  width: 60px;
  height: auto;
  display: block;
 /* Makes logo white if it's dark */
}

.menu-icon {
  width: 28px;
  height: 28px;
  stroke: #000; /* default = other pages */
  stroke-width: 2;
}

/* Home page (white icon) */
.navbar.home-page .menu-icon {
  stroke: white;
}


/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  position: relative;
  background: url('../images/DailyHero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;  /* Remove any margin */
  padding-top: 0;  /* Remove any padding */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: white;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.hero-description {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 40px;
  color: white;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s, opacity 0.3s;
}

.btn-primary {
  background: #004030;
  color: white;
}

.btn-secondary {
  background: #AF723E;
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* STORY SECTION */
.story-section {
  padding: 80px 80px;
  background: #ffffff;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header with bean icon */
.story-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-bean {
  width: 160px;
  position: absolute;
  right: 0;
}

.title-bean {
  width: 40px;
  height: 40px;
  order: 2;  /* Puts bean AFTER the title */
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #30261C;
  letter-spacing: 2px;
  margin: 0;
  order: 1;  /* Puts title BEFORE the bean */
}

/* Two column layout */
.story-content {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 80px;
  align-items: center; /* 🔥 THIS FIXES ALIGNMENT */
}

.story-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Left column */

.story-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;

  max-width: 480px; /* ✅ better for desktop */
}

.highlight {
  font-weight: bold;
  font-size: 18px;
  color: #30261C;
}
/* Make sure paragraphs have proper spacing */
.story-text:first-child {
  margin-bottom: 30px;
}

/* Image between paragraphs */
.between-image {
  width: 100%;
  max-width: 300px;
}

/* Right column - Large bean */
.story-left,
.story-right {
  max-width: 400px;
}



/* Responsive */
@media (max-width: 768px) {
  .story-section {
    padding: 50px 30px;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-right {
    width: 150px;
    margin: 0 auto;
  }
  
  .large-bean {
    width: 150px;
  }
  
  .story-title {
    font-size: 24px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .story-section {
    padding: 60px 30px;
  }
  
  .story-title {
    font-size: 28px;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-right {
    width: 150px;
    margin: 0 auto;
  }
  
  .large-bean {
    width: 150px;
  }
  
  .title-bean {
    width: 30px;
    height: 30px;
  }
}

/* SECTION */
.statement-section {
  position: relative;
  width: 100%;
  height: 460px;

  background: url('../images/StatementBackground.webp') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* OVERLAY */
.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTENT */
.statement-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.statement-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* SECTION */
.favourites {
  padding: 60px 80px;
  background: #ffffff;
}

/* TITLE */
.favourites-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;

  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #30261C;
  margin-bottom: 80px;
}

/* GRID */
.favourites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 120px;
}

/* ITEM */
.menu-item {
  display: flex;
  gap: 24px;
  align-items: center;

  transform: translateY(60px) scale(0.9);
  opacity: 0;

  transition: all 0.6s ease;
}

/* IMAGE */
.menu-item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;

  transition: all 0.4s ease;
}

/* TEXT */
.menu-text {
  flex: 1;
}

/* TOP ROW */
.menu-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* NAME */
.menu-top h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* DOTS */
.dots {
  flex: 1;
  border-bottom: 1px dotted #C5BFB8;
  margin: 0 8px;
}

/* PRICE */
.price {
  color: #AF723E;
  font-weight: 600;
  font-size: 18px;
}

/* DESCRIPTION */
.menu-text p {
  font-size: 14px;
  color: #6F6F6F;
  margin-top: 8px;
  line-height: 1.5;
}

/* 🔥 SCROLL ANIMATION ACTIVE */
.menu-item.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* 🔥 HOVER EFFECT (STRONG) */
.menu-item:hover img {
  transform: scale(1.15) rotate(3deg);
}

.menu-item:hover {
  transform: scale(1.03);
}

/* TEXT HOVER */
.menu-item:hover h3 {
  color: #AF723E;
}

/* SECTION */
.gallery {
  padding: 100px 80px;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.gallery-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #30261C;
  margin-bottom: 60px;
}

.title-bean {
  width: 24px;
}

/* GRID */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* IMAGE ITEM */
.gallery-item {
  overflow: hidden;

  /* animation initial state */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease;
}

/* IMAGE */
.gallery-item img {
  width: 240px;
  height: 460px;
  object-fit: cover;

  transition: transform 0.4s ease;
}

/* 🔥 SCROLL ACTIVE */
.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 HOVER (clean zoom) */
.gallery-item:hover img {
  transform: scale(1.08);
}
/* push some images down */
.gallery-item:nth-child(2) {
  margin-top: 40px;
}

.gallery-item:nth-child(4) {
  margin-top: 80px;
}

.gallery-item:nth-child(6) {
  margin-top: 40px;
}

/* SECTION */
.reviews {
  position: relative;
  padding: 60px 0;
  background: url('../images/ReviewBackground.webp') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.reviews-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* TITLE */
.reviews-title {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.title-bean {
  width: 24px;
}

/* CONTAINER */
.review-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;

  height: auto;        /* ✅ REMOVE fixed height */
  min-height: 420px;   /* ✅ give base space */
}

.review {
  position: absolute;
  inset: 0;

  background: #004030;
  color: #fff;
  padding: 40px 40px 50px;
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  gap: 20px; /* ✅ controlled spacing */

  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;

  height: auto;
  overflow: visible;
}

/* ACTIVE REVIEW */
.review.active {
  opacity: 1;
  transform: translateX(0);
}

/* EXIT (optional smoother feel) */
.review.exit {
  opacity: 0;
  transform: translateX(-50px);
}

/* TEXT */
.review h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.review p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}

/* BOTTOM */
.review-bottom {
  margin-top: auto; /* 🔥 pushes it to bottom INSIDE the card */
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-bottom span {
  font-weight: 600;
}

.stars {
  color: #FFD700;
  letter-spacing: 2px;
}

/* SECTION */
.visit {
  position: relative;
  padding: 60px 80px;
  background: #ffffff;
  overflow: hidden;
}

/* DECORATIVE BEANS */
.visit-beans {
  position: absolute;
  left: 0;
  top: 100px;
  width: 120px;
  pointer-events: none;
}

/* CONTAINER */
.visit-container {
  max-width: 1200px;
  margin: 0 auto;
}
.visit-block {
  width: 100%;        /* 🔥 makes everything align */
  max-width: 320px;   /* optional: keeps it neat */
}

/* TITLE */
.visit-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #30261C;

  margin-bottom: 80px;
}

/* GRID */
.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 60px;

  max-width: 900px;   /* 🔥 THIS centers the whole block */
  margin: 0 auto;     /* 🔥 centers horizontally */
}

/* LEFT IMAGE */
.visit-image {
  display: flex;
  justify-content: center;
  justify-content: flex-end;
}

.visit-image img {
  width: 380px;
  max-width: 100%;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.visit-image img:hover {
  transform: scale(1.04);
}

/* RIGHT INFO */
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 40px;

  align-items: flex-start;   /* 🔥 THIS FIXES IT */
  text-align: left;          /* 🔥 ensures text lines up */
}

/* BLOCK */
.visit-block h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 10px 0;  /* 🔥 clean spacing */
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.visit-block p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  line-height: 1.7;
}


/* SECTION */
.menu-showcase {
  position: relative;
  padding: 140px 80px 60px;
  background: #ffffff;
  overflow: hidden;
}

/* CONTAINER */
.menu-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* HEADER */
.menu-showcase-header {
  text-align: center;
  margin-bottom: 80px;
}

.menu-showcase-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #30261C;
}

.menu-showcase-header p {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* CATEGORY LAYOUT */
.menu-showcase-category {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  margin-bottom: 80px;
}
.menu-showcase-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* remove default spacing issue */
.menu-showcase-header h2 {
  margin: 0;
}

/* bean */
.menu-showcase-title img {
  width: 22px;
  height: auto;

  /* optional fine-tune */
  transform: translateY(2px);
}
/* LABEL */
.menu-showcase-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #30261C;
}

/* GRID */
.menu-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.menu-showcase-card {
  text-align: center;
  transition: all 0.3s ease;
}

/* IMAGE */
.menu-showcase-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

/* TITLE */
.menu-showcase-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

/* TEXT */
.menu-showcase-card p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* HOVER */
.menu-showcase-card:hover img {
  transform: scale(1.1);
}

.menu-showcase-card:hover {
  transform: translateY(-5px);
}

/* ========================= */
/* DECOR IMAGES */
/* ========================= */

.menu-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.decor-top {
  top: 20px;
  right: 300px;
  width: 80px;
}

.decor-left {
  top: 40%;
  left: 0px;
  width: 120px;
}

.decor-right {
  top: 30%;
  right: 0px;
  width: 160px;
}

.decor-bottom {
  bottom: -20px;
  right: 300px;
  width: 220px;
}

/* ========================= */
/* BOTTOM SECTION WRAPPER */
/* ========================= */

.menu-showcase-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;

  margin-top: 100px;
  align-items: start;
}

/* ========================= */
/* COLUMN */
/* ========================= */

.menu-showcase-list h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #30261C;
}

/* ========================= */
/* ROW */
/* ========================= */

.menu-showcase-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

/* TOP LINE (NAME + DOTS + PRICE) */
.menu-showcase-row-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* NAME */
.menu-showcase-row-top span:first-child {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* DOT LINE */
.menu-showcase-dots {
  flex: 1;
  border-bottom: 1px dotted #C5BFB8;
  margin: 0 6px;
}

/* PRICE */
.menu-showcase-row-top span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #30261C;
}

/* DESCRIPTION */
.menu-showcase-row p {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  line-height: 1.4;
}


/* SECTION */
.about-brew {
  padding: 140px 80px 60px;
  background: #ffffff;
}

/* CONTAINER */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TITLE */
.about-brew-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-style: italic;
  letter-spacing: 2px;
  color: #30261C;

  margin-bottom: 60px;
}

/* GRID */
.about-brew-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.about-brew-image {
  display: flex;
  justify-content: center;
}

.about-brew-image img {
  width: 360px;
  max-width: 100%;
  transition: transform 0.4s ease;
}

.about-brew-image img:hover {
  transform: scale(1.04);
}

/* TEXT */
.about-brew-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  max-width: 480px;
}

/* SECTION */
.why-coffee {
  position: relative;
  padding: 60px 80px 100px;
  background: #ffffff;
  overflow: hidden;
}

/* CONTAINER */
.why-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TITLE */
.why-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #30261C;

  margin-bottom: 80px;
}

/* CARDS WRAPPER */
.why-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* CARD */
/* INITIAL STATE */
.why-card {
  opacity: 1 !important;
  transform: translateY(0) !important;

  background: #fff;
  padding: 32px 28px;
  width: 300px;

  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);

  text-align: center;

  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
}

/* HOVER (CLEAN + PREMIUM) */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.1);
}

/* TITLE */
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #30261C;
}

/* TEXT */
.why-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.why-card.show {
  opacity: 1;
  transform: translateY(0);
}

.why-card:nth-child(1) {
  transition-delay: 0.1s;
}

.why-card:nth-child(2) {
  transition-delay: 0.25s;
}

.why-card:nth-child(3) {
  transition-delay: 0.4s;
}
/* ========================= */
/* BACKGROUND IMAGE */
/* ========================= */

.why-decor {
  position: absolute;
  right: -10px;
  bottom: -10px;

  width: 520px;

  z-index: 1;
  pointer-events: none;
}

/* SECTION */
.experience {
  position: relative;
  width: 100%;
  height: 500px;

  background: url('../images/CTABackground.webp') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;
}

/* DARK OVERLAY */
.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTENT */
.experience-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* TITLE */
.experience-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* TEXT */
.experience-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* BUTTON WRAPPER */
.experience-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  color: #004030; /* your green */
  font-weight: 500;
}

/* SECTION */
.contact-hero {
  padding: 140px 120px 60px 120px;
  background: #ffffff;
}

/* CONTAINER */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* GRID */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */
.contact-left {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-style: italic;
  letter-spacing: 1px;
  color: #30261C;
  margin-bottom: 20px;
}

/* SUBTEXT */
.contact-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 30px;
}

/* BLOCKS */
.contact-block {
  margin-top: 30px;
}

/* HEADINGS */
.contact-block h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TEXT */
.contact-block p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* RIGHT IMAGE */
.contact-right {
  display: flex;
  justify-content: center;
}

.contact-right img {
  width: 380px;
  max-width: 100%;
  transition: transform 0.4s ease;
}

/* HOVER */
.contact-right img:hover {
  transform: scale(1.04);
}

/* SECTION */
.contact-form-section {
  padding: 60px 80px;
  background: #ffffff;
}

/* CONTAINER */
.contact-form-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* GRID */
.contact-form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* ========================= */
/* LEFT: FORM CARD */
/* ========================= */

.form-card {
  position: relative;
  padding: 30px;
  border-radius: 12px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.form-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

/* FORM */
.form {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* INPUTS */
.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;

  background: rgba(0,0,0,0.16);  /* 🔥 your requirement */
  color: rgba(0,0,0,0.8);

  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

/* PLACEHOLDER */
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(0,0,0,0.5); /* 🔥 your requirement */
}

/* TEXTAREA */
.form textarea {
  height: 100px;
  resize: none;
}

/* FOCUS */
.form input:focus,
.form textarea:focus {
  outline: none;
  background: rgba(0,0,0,0.25);
}

/* BUTTON */
.form button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 8px;

  background: #004030;
  color: #fff;
  font-size: 14px;
  cursor: pointer;

  transition: all 0.3s ease;
}

.form button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ========================= */
/* RIGHT: INFO */
/* ========================= */

.form-info {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-style: italic;
  color: #30261C;
  margin-bottom: 20px;
}

/* SUBTEXT */
.form-subtext {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 30px;
}

/* BLOCK */
.form-block {
  margin-top: 30px;
}

.form-block h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.form-block p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.socials i {
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.socials i:hover {
  color: #004030;
}

.footer {
  background: #004030;
  color: #fff;
  padding: 48px 60px 40px;
}

/* GRID - CENTERED */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}

/* LOGO */
.footer-logo {
  width: 100px;
  margin-bottom: 32px;
}

/* TAGLINE */
.tagline {
  font-style: italic;
  margin-bottom: 32px;
  font-size: 14px;
}

/* LINKS */
.footer-col a {
  display: block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 16px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  opacity: 0.8;
}

.socials a {
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

/* VISIT US SECTION - BETTER SPACING */
.footer-col .footer-contact-block {
  margin-bottom: 25px;
}

.footer-col .footer-contact-block:last-child {
  margin-bottom: 0;
}

.footer-col .footer-contact-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.footer-col .footer-contact-block p {
  margin: 0;
  line-height: 1.6;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer {
    padding: 50px 40px 30px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 20px 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .socials {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  background: #1E1E1E;
  color: #fff;
  font-size: 12px;

  padding: 16px 24px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  gap: 20px;

  z-index: 999;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

#acceptCookies {
  background: #004030;
  color: #fff;
}

#declineCookies {
  background: #AF723E;
  color: #fff;
}

/* 🔥 FORCE CORRECT COLORS */

/* Other pages → black */
.navbar.other-page .hamburger span {
  background: #000000;
}

/* Home page → white */
.navbar.home-page .hamburger span {
  background: white;
}