/* Coconut Juice Bar Design System - Bottle Green & Gold Theme */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Variables */
:root {
    /* Bottle green theme */
    --background: hsl(160, 45%, 15%);
    --foreground: hsl(45, 90%, 80%);
    
    --card: hsl(160, 45%, 20%);
    --card-foreground: hsl(45, 90%, 80%);
    
    --popover: hsl(160, 45%, 20%);
    --popover-foreground: hsl(45, 90%, 80%);
    
    /* Gold and bottle green theme */
    --primary: hsl(45, 95%, 65%);
    --primary-foreground: hsl(160, 45%, 15%);
    
    --secondary: hsl(160, 35%, 25%);
    --secondary-foreground: hsl(45, 90%, 70%);
    
    --muted: hsl(160, 35%, 25%);
    --muted-foreground: hsl(45, 85%, 75%);
    
    --accent: hsl(45, 90%, 60%);
    --accent-foreground: hsl(160, 45%, 15%);
    
    --destructive: hsl(0, 65%, 55%);
    --destructive-foreground: hsl(45, 85%, 80%);
    
    --border: hsl(160, 35%, 30%);
    --input: hsl(160, 35%, 25%);
    --ring: hsl(45, 95%, 65%);
    
    /* Gold and bottle green coconut theme colors */
    --coconut-brown: hsl(160, 45%, 20%);
    --coconut-cream: hsl(45, 80%, 90%);
    --coconut-gold: hsl(45, 95%, 65%);
    --coconut-dark: hsl(160, 45%, 15%);
    --tropical-green: hsl(160, 45%, 25%);
    
    /* Gold and green gradients */
    --gradient-hero: linear-gradient(135deg, var(--background), var(--tropical-green));
    --gradient-accent: linear-gradient(135deg, var(--coconut-gold), hsl(45, 100%, 70%));
    --gradient-dark: linear-gradient(135deg, var(--coconut-dark), var(--background));
    --gradient-metallic: linear-gradient(135deg, hsl(45, 95%, 65%), hsl(45, 100%, 75%), hsl(45, 90%, 60%));
    
    /* Gold shadows */
    --shadow-elegant: 0 10px 30px -10px hsla(160, 45%, 15%, 0.5);
    --shadow-glow: 0 0 40px hsla(45, 95%, 65%, 0.5), 0 0 80px hsla(45, 100%, 70%, 0.3);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slide: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    background-image: url('./lovable-uploads/d03a84ac-887a-41c7-90c2-7f9359e94a3a.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 71, 56, 0.8);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(29, 71, 56, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        width: 48px;
        height: 48px;
    }
}

.logo-text {
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: block;
    }
}

.brand-name {
    font-size: 1.125rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--foreground);
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 3px;
    background: var(--foreground);
    transition: var(--transition-smooth);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-elegant);
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--foreground);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 71, 56, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    animation: fadeIn 1s ease-out;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-logo img {
        width: 128px;
        height: 128px;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--coconut-cream);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--coconut-dark);
}

.btn-primary:hover {
    background: var(--accent);
    opacity: 0.9;
}

.btn-outline {
    border-color: var(--coconut-cream);
    color: var(--coconut-cream);
    background: transparent;
}

.btn-outline:hover {
    background: var(--coconut-cream);
    color: var(--coconut-dark);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(40, 90, 72, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    animation: fadeIn 1s ease-out;
}

.feature-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--muted-foreground);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--gradient-hero);
}

.gallery .section-header h2 {
    color: var(--coconut-cream);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    animation: fadeIn 1s ease-out;
}

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

@media (min-width: 1024px) {
    .gallery-item-wide {
        grid-column: span 2;
    }
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Call to Action */
.cta {
    padding: 5rem 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta h2 {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--coconut-cream);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.25rem;
    }
}

.cta p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    margin-top: 5rem;
    padding: 2rem 0;
    text-align: center;
    color: var(--muted-foreground);
}

.footer p {
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Utility Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Page-specific Styles */
.about-story, .catering-services, .locations, .contact-info, .menu { padding: 5rem 0; background: var(--gradient-dark); }
.about-grid, .contact-grid, .services-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .about-grid, .contact-grid, .services-grid { grid-template-columns: repeat(2, 1fr); } }
.about-text, .about-card, .contact-card, .service-card { background: rgba(40, 90, 72, 0.8); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 0.5rem; padding: 2rem; }
.values-grid, .core-values, .steps-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .values-grid, .core-values, .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card, .core-value, .step { text-align: center; background: rgba(40, 90, 72, 0.8); padding: 2rem; border-radius: 0.5rem; }
.values { padding: 5rem 0; background: var(--gradient-hero); }
.values .section-header h2, .core-value h3 { color: var(--coconut-cream); }
.menu-category { margin-bottom: 5rem; }
.category-header { text-align: center; margin-bottom: 3rem; }
.category-divider { width: 6rem; height: 4px; background: var(--gradient-accent); margin: 1rem auto; }
.menu-items { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .menu-items { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-items { grid-template-columns: repeat(3, 1fr); } }
.menu-item { background: rgba(40, 90, 72, 0.8); border-radius: 0.5rem; overflow: hidden; transition: var(--transition-smooth); }
.menu-item:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.menu-item img { width: 100%; height: 12rem; object-fit: cover; }
.menu-item-content { padding: 1.5rem; }
.menu-item-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 0.5rem; }
.special-badge { background: var(--gradient-accent); color: var(--coconut-dark); padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; font-weight: 600; }
.category-tag { background: rgba(255, 215, 0, 0.2); color: var(--primary); padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; border: 1px solid var(--primary); }
.whatsapp-order, .whatsapp-contact { padding: 4rem 0; background: var(--gradient-hero); text-align: center; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: #25d366; color: white; padding: 1rem 2rem; border-radius: 9999px; text-decoration: none; font-weight: 600; transition: var(--transition-smooth); }
.whatsapp-btn.large { padding: 1.5rem 3rem; font-size: 1.25rem; }
.whatsapp-btn:hover { background: #20b55a; transform: scale(1.05); }
.phone-number { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1rem; }
.special-note { padding: 4rem 0; background: var(--gradient-dark); text-align: center; }
.locations-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
.location-card { background: rgba(40, 90, 72, 0.8); border-radius: 0.5rem; padding: 2rem; transition: var(--transition-smooth); }
.location-card:hover { box-shadow: var(--shadow-glow); }
.location-header h3 { color: var(--foreground); margin-bottom: 1rem; }
.features-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.features-tags span { background: rgba(255, 215, 0, 0.2); color: var(--primary); padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; }
.location-btn { width: 100%; margin-top: 1rem; }
.map-section { padding: 5rem 0; background: var(--gradient-dark); }
.map-placeholder { background: rgba(40, 90, 72, 0.2); border-radius: 0.5rem; height: 24rem; display: flex; align-items: center; justify-content: center; }
.map-content { text-align: center; }
.map-icon { font-size: 4rem; margin-bottom: 1rem; }
.contact-form-section { padding: 6rem 0; background: var(--gradient-hero); }
.form-container { max-width: 48rem; margin: 0 auto; }
.form-card { background: rgba(40, 90, 72, 0.9); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 0.5rem; padding: 3rem; box-shadow: var(--shadow-elegant); }
.form-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { margin-bottom: 2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--foreground); }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; background: rgba(29, 71, 56, 0.5); border: 1px solid var(--border); border-radius: 0.25rem; color: var(--foreground); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2); }
.form-submit { text-align: center; padding-top: 1rem; }
.submit-btn { padding: 1.5rem 3rem; font-size: 1.125rem; border-radius: 9999px; }
.faq { padding: 6rem 0; background: var(--gradient-dark); }
.faq-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }
.faq-card { background: rgba(40, 90, 72, 0.8); border-radius: 0.5rem; padding: 2rem; transition: var(--transition-smooth); }
.faq-card:hover { box-shadow: var(--shadow-glow); }
.faq-card h4 { color: var(--foreground); margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
.contact-icon, .service-icon, .step-number { width: 4rem; height: 4rem; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; color: var(--coconut-dark); font-weight: 700; }
.catering-contact { padding: 5rem 0; background: var(--gradient-hero); }
.contact-card { max-width: 32rem; margin: 0 auto; background: rgba(40, 90, 72, 0.8); border-radius: 0.5rem; padding: 3rem; text-align: center; }
.contact-actions { margin-top: 2rem; }
.contact-actions .phone-number { display: block; font-size: 1.875rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; text-decoration: none; }
.contact-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.how-it-works { padding: 5rem 0; background: var(--gradient-dark); }
.about-card-img {
  width: 80px; /* or any desired size */
  height: auto;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .hero-content { padding: 2rem 1rem; }
    .features, .gallery, .cta, .about-story, .catering-services, .locations, .contact-info, .menu { padding: 3rem 0; }
    .contact-buttons { flex-direction: column; }
}
/* About Story Section */
.about-story {
  background-color: #002920;
  color: #fef9d7;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-text,
.about-card {
  background-color: #0c3a30;
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 400px;
  max-width: 500px;
  color: #fef9d7;
}

.about-text h3,
.about-card h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-card-icon img {
  max-width: 80px;
  height: auto;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.value-card {
  background-color: #0c3a30;
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  color: #fef9d7;
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.catering-services {
  background-color: #002920;
  color: #fef9d7;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.catering-services .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.catering-services .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fef9d7;
  margin-bottom: 1rem;
}

.catering-services .section-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.service-card {
  background-color: #0c3a30;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2rem;
  background-color: #ffe55c;
  color: #002920;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fef9d7;
}

.service-card p {
  font-size: 0.95rem;
  color: #fef9d7;
  line-height: 1.4;
}
.contact-info {
  background-color: #002920;
  color: #fef9d7;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-info .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info .section-header p {
  font-size: 1.1rem;
  color: #fef9d7;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-card {
  background-color: #0c3a30;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  background-color: #ffe55c;
  color: #002920;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-detail {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: #fef9d7;
}
.contact-info {
  padding: 60px 20px;
  background-color: #0e3b2f;
  text-align: center;
  color: #fff5bf;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-card {
  background-color: #083d2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 10px;
  width: 300px;
}

.contact-icon {
  background-color: #ffe15d;
  color: #0e3b2f;
  font-size: 28px;
  padding: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff5bf;
}

.contact-detail {
  font-weight: bold;
  color: #ffffff;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #ffffffcc;
}
.contact-info {
  padding: 60px 20px;
  background-color: #0e3b2f;
  text-align: center;
  color: #fff5bf;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 30px; /* reduced from 60px to 30px */
  flex-wrap: wrap;
  max-width: 800px; /* new: controls total width */
  margin: 0 auto;
}

.contact-card {
  background-color: #083d2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 10px;
  width: 300px;
}

.contact-icon {
  background-color: #ffe15d;
  color: #0e3b2f;
  font-size: 28px;
  padding: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff5bf;
}

.contact-detail {
  font-weight: bold;
  color: #ffffff;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #ffffffcc;
}
.catering-section {
  background-color: #114232;
  padding: 60px 20px;
  text-align: center;
  color: #fff5bf;
}

.catering-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.catering-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #fdf9c7;
}

.catering-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: #083d2e;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.catering-icon {
  background-color: #ffe15d;
  color: #0e3b2f;
  font-size: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.catering-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fffbd1;
}

.catering-description {
  color: #ffffffcc;
  margin-bottom: 25px;
  line-height: 1.5;
}

.catering-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffe15d;
  margin-bottom: 25px;
}

.catering-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-yellow {
  background-color: #ffe15d;
  color: #0e3b2f;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}
.catering-section {
  background-color: #114232;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  color: #fffbd1;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #fffbd1;
  font-size: 1rem;
  margin-bottom: 40px;
}

.catering-card {
  background-color: #083d2e;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle {
  background-color: #ffe15d;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.card-title {
  color: #fffbd1;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-description {
  color: #ffffffcc;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffe15d;
  margin-bottom: 25px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #ffe15d;
  color: #0e3b2f;
  border: none;
}

.outline-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
