/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #faf7f2;
  --cream: #f0e6d6;
  --warm-dark: #3b2518;
  --green: #4a7c3f;
  --green-light: #6a9e5c;
  --green-dark: #365e2e;
  --warm-pale: #ede4d6;
  --warm-light: #e0d3c2;
  --rose: #a0764e;
  --rose-light: #f5ead8;
  --brown-dark: #2a1f14;
  --brown: #6b4c35;
  --gold: #c9956b;
  --honey: #d4a853;
  --wheat: #e8d5b8;
  --text-dark: #2a1f17;
  --text-body: #4a3f35;
  --text-light: #7a6f63;
  --border: #e8e2d8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-description {
  max-width: 550px;
  margin: 0 auto 2.5rem;
  color: var(--text-light);
  text-align: center;
  font-size: 1rem;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-pill);
}

.btn-primary {
  background-color: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-rose {
  background-color: var(--rose);
  color: var(--white);
}

.btn-rose:hover {
  background-color: #b04460;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background-color: var(--white);
  color: var(--brown);
}

.btn-white:hover {
  background-color: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo span {
  color: var(--green);
}

.logo-img {
  height: 40px;
  width: auto;
  display: inline-block;
}

.header.scrolled .logo-img {
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ===== DROPDOWN NAV ===== */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
  margin-top: 8px;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body) !important;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.dropdown a::after {
  display: none !important;
}

.dropdown a:hover {
  background: var(--warm-pale);
  color: var(--green) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(160deg, var(--warm-pale) 0%, var(--cream) 50%, var(--rose-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/bakery-pattern.svg');
  background-size: 400px 400px;
  background-repeat: repeat;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 0 2rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}

.hero-content .section-subtitle {
  color: var(--green);
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 7rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--warm-pale) 0%, var(--cream) 50%, var(--white) 100%);
}

.page-hero h1 {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--white);
}

.section-alt {
  background-color: var(--cream);
}

.section-green-light {
  background-color: var(--warm-pale);
}

/* ===== IMAGE MARQUEE ===== */
.image-marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  background-color: var(--white);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

.marquee-item {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.marquee-item:hover img {
  transform: scale(1.05);
}

.image-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section-green {
  background-color: var(--warm-dark);
  color: var(--white);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-green p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== FEATURED / HIGHLIGHTS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 2px solid var(--warm-pale);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.95rem;
  font-style: italic;
  border-radius: var(--radius-md);
}

.about-text .section-subtitle {
  text-align: left;
}

.about-text h2 {
  margin-bottom: 1.2rem;
}

.about-text .divider {
  margin-left: 0;
  margin-right: auto;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* ===== MENU PREVIEW ===== */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-category {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--warm-dark) 0%, var(--brown-dark) 100%);
  border-radius: var(--radius-md);
}

.menu-category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: var(--radius-md);
}

.menu-category:hover .menu-category-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.menu-category-overlay h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.menu-category-overlay p {
  color: var(--warm-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== MENU PAGE ===== */
.menu-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.menu-section .divider {
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px dotted var(--border);
}

.menu-item-info h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.2rem;
}

.menu-item-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--warm-pale);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-style: italic;
  font-size: 0.92rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--warm-pale) 0%, var(--cream) 100%);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: var(--radius-sm);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(59, 37, 24, 0.4);
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: scale(1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-style: italic;
  font-size: 0.85rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border: 2px solid var(--cream);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 0.92rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.85rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 3.5rem 0;
  text-align: center;
  background: linear-gradient(160deg, var(--warm-pale) 0%, var(--cream) 50%, var(--rose-light) 100%);
  color: var(--text-dark);
}

.cta-banner h2 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.cta-banner p {
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.about-story.reverse {
  direction: rtl;
}

.about-story.reverse > * {
  direction: ltr;
}

.about-story-image {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--warm-pale) 0%, var(--warm-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-style: italic;
  border-radius: var(--radius-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: var(--warm-pale);
}

.value-card .feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.value-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-info-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--warm-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h4 {
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 124, 63, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-social {
  margin-top: 1.5rem;
}

.contact-social h4 {
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.map-container {
  margin-top: 3rem;
  width: 100%;
  height: 350px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-style: italic;
}

/* ===== CATERING PAGE ===== */
.catering-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.catering-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.package-card.featured {
  border-color: var(--green);
  position: relative;
  background: var(--white);
}

.package-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 4px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
}

.package-card h3 {
  margin-bottom: 0.8rem;
}

.package-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.package-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.package-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

.package-card ul li::before {
  content: '\2713';
  color: var(--green);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--warm-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand .logo-img {
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
}

.footer-brand .logo span {
  color: var(--green);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--honey);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--honey);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 2001;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

/* ===== PASSWORD GATE ===== */
.password-gate {
  position: fixed;
  inset: 0;
  background: var(--warm-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.password-gate.fade-out {
  opacity: 0;
}

.password-gate-content {
  text-align: center;
  max-width: 400px;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.password-gate-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.password-gate-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.password-gate-content > p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.password-gate-form {
  display: flex;
  gap: 0.5rem;
}

.password-gate-form input {
  flex: 1;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  outline: none;
  transition: border-color 0.3s ease;
}

.password-gate-form input:focus {
  border-color: var(--green);
}

.password-gate-form button {
  padding: 10px 20px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.password-gate-form button:hover {
  background: var(--green-dark);
}

.password-gate-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
  min-height: 1.2em;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }

  .hero-content h1 { font-size: 2.5rem; }

  .features-grid,
  .menu-categories,
  .testimonials-grid,
  .gallery-category-grid,
  .catering-packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview,
  .about-story,
  .about-story.reverse,
  .catering-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 3rem 0; }

  .hero { padding: 6rem 0 3rem; }
  .hero-content h1 { font-size: 2.2rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .has-dropdown {
    text-align: center;
  }

  .dropdown {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.3rem 0 0;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .dropdown::before {
    display: none;
  }

  .dropdown a {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.6rem;
    background: var(--warm-pale);
    border-radius: var(--radius-pill);
    color: var(--text-light) !important;
  }

  .dropdown a:hover {
    background: var(--green);
    color: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .features-grid,
  .menu-categories,
  .testimonials-grid,
  .gallery-grid,
  .gallery-category-grid,
  .catering-packages {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-hero {
    padding: 6rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
