/* ============================================
   CSS VARIABLES - Casa Doner Brand Colors
   ============================================ */
   :root {
    /* Primary Color - Warm Orange */
    --primary: #e07b39;
    --primary-light: #f09454;
    --primary-dark: #c4652a;
    
    /* Secondary Color - Deep Brown */
    --secondary: #4a3228;
    --secondary-light: #5e4438;
    
    /* Accent Color - Tangerine/Gold */
    --accent: #f5a623;
    
    /* Background Colors */
    --bg-cream: #faf8f5;
    --bg-light: #fefdfb;
    --bg-warm: #f5f0e8;
    
    /* Text Colors */
    --text-dark: #2d1f1a;
    --text-medium: #5a4a42;
    --text-light: #8b7b73;
    --text-white: #fefdfb;
    
    /* Border Colors */
    --border: #e8e0d8;
    --border-dark: #d4c8bc;
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
  }
  
  /* ============================================
     RESET & BASE STYLES
     ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
  }
  
  /* Headings use Playfair Display */
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ============================================
     ANIMATIONS - Keyframes
     ============================================ */
  
  /* Fade down from top */
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Fade up from bottom */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Slide in from left */
  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Slide in from right */
  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Zoom in */
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Pulse animation for icons */
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  
  /* Float animation */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* ============================================
     ANIMATION CLASSES
     ============================================ */
  .animate-fade-down {
    animation: fadeDown 0.8s ease-out forwards;
  }
  
  .animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
  }
  
  .animate-slide-left {
    animation: slideLeft 0.8s ease-out forwards;
  }
  
  .animate-slide-right {
    animation: slideRight 0.8s ease-out forwards;
  }
  
  .animate-zoom {
    animation: zoomIn 0.6s ease-out forwards;
  }
  
  /* ============================================
     LAYOUT - Container & Sections
     ============================================ */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
  }
  
  /* Each section has consistent vertical padding */
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  /* Alternating background for visual separation */
  .section--alt {
    background-color: var(--bg-warm);
  }
  
  /* Dark background section */
  .section--dark {
    background-color: var(--secondary);
    color: var(--text-white);
  }


  


  /* =============================================================================
   CASA DÖNER — shared-nav-footer.css
   
   Styles for the shared navbar and footer only.
   Link this on every page alongside your page-specific stylesheet.
   ============================================================================= */


/* =============================================================================
   00. CSS VARIABLES
   (keep here so nav/footer tokens are always available)
   ============================================================================= */

:root {
  --navH: 80px;

  --primary:         #e07b39;
  --primary-light:   #f09454;
  --primary-dark:    #c4652a;

  --secondary:       #4a3228;
  --secondary-light: #5e4438;

  --bg-cream:  #faf8f5;
  --bg-light:  #fefdfb;
  --bg-warm:   #f5f0e8;

  --text-dark:   #2d1f1a;
  --text-medium: #5a4a42;

  --border: #e8e0d8;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Nunito', sans-serif;

  --transition-fast:   0.2s ease;
  --transition-normal: 0.3s ease;
}


/* =============================================================================
   01. MINIMAL BASE (only what nav/footer depend on)
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; }

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* Body needs top padding so content clears the fixed header */
body {
  padding-top: var(--navH);
}


/* =============================================================================
   02. HEADER & NAVIGATION
   ============================================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navH);
  background: transparent;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Nav layout */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 0 0 20px;
}

/* Logo */
.navLogo {
  max-width: 100px;
  width: 100%;
  border-radius: 8px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  z-index: 1001;
}

.logo span          { color: var(--primary); }
.header.scrolled .logo { color: var(--text-dark); }

/* Hamburger */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.menu-btn span {
  width: 25px;
  height: 3px;
  background: #2d1f1a;
  border-radius: 2px;
  transition: 0.3s;
}

.header.scrolled .menu-btn span       { background: var(--text-dark); }
.menu-btn.active span:nth-child(1)    { transform: rotate(45deg) translate(6px, 6px); background: var(--text-dark); }
.menu-btn.active span:nth-child(2)    { opacity: 0; }
.menu-btn.active span:nth-child(3)    { transform: rotate(-45deg) translate(6px, -6px); background: var(--text-dark); }

/* Full-screen mobile menu overlay */
.nav-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Nav links */
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  color: #2d1f1a;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.nav-links a:hover { color: var(--primary); }

/* Order button */
.order-btn {
  background: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bg-cream);
  transition: background var(--transition-fast);
}

.order-btn:hover { background: var(--primary-dark); }

/* Mobile-only info block */
.mobile-info {
  margin-top: 30px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.mobile-info p        { margin-bottom: 10px; color: var(--text-medium); }
.mobile-info i        { color: var(--primary); margin-right: 8px; }

/* Social links inside mobile nav */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.social-links a:hover { background: var(--primary); color: white; }

/* Desktop nav overrides */
@media (min-width: 768px) {
  .menu-btn { display: none; }

  .nav-menu {
    position: static;
    flex-direction: row;
    background: transparent;
    opacity: 1;
    visibility: visible;
    gap: 30px;
  }

  .nav-links {
    flex-direction: row;
    margin-bottom: 0;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
  }

  .header.scrolled .nav-links a { color: var(--text-dark); }

  .mobile-info { display: none; }
}


/* =============================================================================
   06. FOOTER
   ============================================================================= */

/* CTA banner */
.footer-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 40px 20px;
  text-align: center;
}

.footer-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 5px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
  transition: border-color var(--transition-fast);
}

.cta-btn.primary              { background: white; color: var(--primary); }
.cta-btn.secondary            { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.cta-btn.secondary:hover      { border-color: white; }

/* Footer main */
.footer-main {
  background: var(--secondary);
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}

/* Brand column */
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.footer-logo span      { color: var(--primary); }
.footer-tagline        { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }

/* Footer socials */
.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-socials { justify-content: flex-start; }
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--transition-fast);
}

.footer-socials a:hover { background: var(--primary); }

/* Column headings */
.footer-heading {
  font-family: var(--font-heading);
  color: white;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--primary);
}

@media (min-width: 768px) {
  .footer-heading::after { left: 0; transform: none; }
}

/* Quick links */
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--primary-light); }

/* Hours */
.hours-item  { margin-bottom: 15px; }
.hours-day   { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.hours-time  { color: white; font-weight: 600; }
.hours-time.closed { color: #f44336; }

/* Contact */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  justify-content: center;
  transition: color var(--transition-fast);
}

@media (min-width: 768px) {
  .contact-item { justify-content: flex-start; }
}

.contact-item i     { color: var(--primary); margin-top: 3px; }
.contact-item:hover { color: var(--primary-light); }

/* Bottom bar */
.footer-bottom {
  background: #2d1f1a;
  padding: 20px;
  text-align: center;
}

.footer-bottom p      { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a      { color: rgba(255,255,255,0.5); margin: 0 10px; transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--primary-light); }
  
  /* ============================================
     HERO SECTION
     ============================================ */
  .hero {
    background-color: var(--secondary);
    color: var(--text-white);
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    position: relative;
    overflow: hidden;
  }
  
  /* Subtle background pattern */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(224, 123, 57, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    position: relative;
  }
  
  .hero__subtitle {
    font-size: 1rem;
    color: var(--primary-light);
    font-weight: 300;
    position: relative;
  }
  
  /* ============================================
     OUR STORY SECTION
     ============================================ */
  .story {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .story__image {
    width: 100%;
    height: 250px;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  
  .story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  /* Hover zoom effect on image */
  .story__image:hover img {
    transform: scale(1.05);
  }
  
  .story__content h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
  }
  
  .story__content p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
  }
  
  /* Highlight text with accent color */
  .highlight {
    color: var(--primary);
    font-weight: 500;
    position: relative;
  }
  
  .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .story__content:hover .highlight::after {
    transform: scaleX(1);
  }
  
  /* ============================================
     IMAGE GALLERY - 2 Additional Images
     ============================================ */
  .story__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    transform: translateX(-0.5rem);
  }
  
  .story__gallery-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .story__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
  }
  
  /* Overlay on gallery images */
  .story__gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm);
    background: linear-gradient(transparent, rgba(45, 31, 26, 0.8));
    color: var(--text-white);
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .story__gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .story__gallery-item:hover .story__gallery-overlay {
    transform: translateY(0);
  }
  
  /* ============================================
     MISSION & VALUES SECTION
     ============================================ */
  .values__header {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
  
  .values__header h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }
  
  .values__header p {
    color: var(--text-medium);
  }
  
  /* Values grid - single column on mobile */
  .values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  /* Individual value card */
  .value-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 50, 40, 0.15);
    border-color: var(--primary-light);
  }
  
  .value-card__icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--text-white);
    font-size: 1.25rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  /* Icon pulse on card hover */
  .value-card:hover .value-card__icon {
    animation: pulse 0.6s ease;
    background-color: var(--primary-dark);
  }
  
  .value-card h3 {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }
  
  .value-card p {
    font-size: 0.875rem;
    color: var(--text-medium);
  }
  
  /* ============================================
     CATERING SECTION
     ============================================ */
  .catering {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .catering__info h2 {
    font-size: 1.75rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
  }
  
  .catering__info p {
    color: rgba(254, 253, 251, 0.85);
    margin-bottom: var(--spacing-sm);
  }
  
  /* Catering features list */
  .catering__features {
    list-style: none;
  }
  
  .catering__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(254, 253, 251, 0.9);
    transition: transform 0.2s ease;
  }
  
  /* Slide effect on hover */
  .catering__features li:hover {
    transform: translateX(8px);
  }
  
  .catering__features i {
    color: var(--accent);
    transition: transform 0.2s ease;
  }
  
  .catering__features li:hover i {
    transform: scale(1.2);
  }
  
  /* ============================================
     CATERING FORM
     ============================================ */
  .catering__form {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .catering__form h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
  }
  
  /* Form group - label + input pair */
  .form-group {
    margin-bottom: var(--spacing-sm);
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
  }
  
  /* Required field indicator */
  .form-group label .required {
    color: var(--primary);
  }
  
  /* Input and textarea base styles */
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    border: 2px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  }
  
  /* Focus state with animation */
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(224, 123, 57, 0.15);
    transform: translateY(-2px);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  /* Two column row for form */
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  /* Submit button */
  .btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Button shine effect */
  .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn-submit:hover::before {
    left: 100%;
  }
  
  .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 123, 57, 0.4);
  }
  
  .btn-submit:active {
    transform: translateY(-1px);
  }
  
  /* Button icon animation */
  .btn-submit i {
    transition: transform 0.3s ease;
  }
  
  .btn-submit:hover i {
    transform: translateX(4px);
  }
  
  /* Form success message (hidden by default) */
  .form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-md);
  }
  
  .form-success.show {
    display: block;
    animation: zoomIn 0.5s ease;
  }
  
  .form-success i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    animation: pulse 1s ease infinite;
  }
  
  .form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }
  
  .form-success p {
    color: var(--text-medium);
  }
  
  /* ============================================
     CONTACT & LOCATION SECTION
     ============================================ */
  .contact__header {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
  
  .contact__header h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }
  
  /* Contact info cards */
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .contact-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 50, 40, 0.1);
  }
  
  .contact-card__icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--text-white);
    transition: transform 0.3s ease;
  }
  
  /* Float animation on hover */
  .contact-card:hover .contact-card__icon {
    animation: float 1s ease infinite;
  }
  
  .contact-card h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
  }
  
  .contact-card p,
  .contact-card a {
    font-size: 0.875rem;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-card a:hover {
    color: var(--primary);
  }
  
  /* Map placeholder */
  .contact__map {
    margin-top: var(--spacing-md);
    height: 200px;
    background-color: var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: background-color 0.3s ease;
  }
  
  .contact__map:hover {
    background-color: var(--border-dark);
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background-color: var(--secondary);
    color: var(--text-white);
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer__socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .footer__socials a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .footer__socials a:hover {
    background-color: var(--primary);
    transform: translateY(-4px) rotate(5deg);
  }
  
  .footer__copy {
    font-size: 0.75rem;
    color: rgba(254, 253, 251, 0.6);
  }
  
  /* ============================================
     TABLET BREAKPOINT - 768px+
     ============================================ */
  @media (min-width: 768px) {
    .hero__title {
      font-size: 3rem;
    }
  
    .hero__subtitle {
      font-size: 1.125rem;
    }
  
    /* Story section - side by side */
    .story {
      flex-direction: row;
      align-items: center;
    }
  
    .story__image {
      flex: 0 0 45%;
      height: 300px;
    }
  
    .story__content {
      flex: 1;
    }
  
    /* Gallery - 2 columns */
    .story__gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  
    /* Values grid - 2 columns */
    .values__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    /* Catering - side by side */
    .catering {
      flex-direction: row;
      align-items: flex-start;
    }
  
    .catering__info {
      flex: 1;
    }
  
    .catering__form {
      flex: 0 0 50%;
    }
  
    /* Form row - 2 columns */
    .form-row {
      grid-template-columns: repeat(2, 1fr);
    }
  
    /* Contact grid - 3 columns */
    .contact__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .contact__map {
      height: 250px;
    }
  }
  
  /* ============================================
     DESKTOP BREAKPOINT - 1024px+
     ============================================ */
  @media (min-width: 1024px) {
    .section {
      padding: 4rem 0;
    }
  
    .hero {
      padding: 4rem var(--spacing-sm);
    }
  
    .hero__title {
      font-size: 3.5rem;
    }
  
    .story__image {
      height: 350px;
    }
  
    .story__gallery-item {
      height: 250px;
    }
  
    .story__content h2,
    .values__header h2,
    .catering__info h2,
    .contact__header h2 {
      font-size: 2.25rem;
    }
  
    /* Values grid - 4 columns */
    .values__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .contact__map {
      height: 300px;
    }
  }
  
