/* ===============================
   CSS CUSTOM PROPERTIES (Variables)
   =============================== */
:root {
    /* Color Palette - Based on Cafe Mysa Brand */
    --color-dark-green: #1a4d3e;
    --color-medium-green: #9fb968;
    --color-light-green: #d3daa3;
    --color-cream: #f8f9f0;
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-gray: #6b7280;
    
    /* Typography */
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===============================
   RESET & BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-cream);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===============================
   LOADING SCREEN
   =============================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-light-green);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--color-dark-green);
    font-weight: 300;
    letter-spacing: 0.1em;
    animation: fadeInOut 1.5s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* ===============================
   NAVIGATION
   =============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 249, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark-green);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-medium-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark-green);
    transition: var(--transition-fast);
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(to bottom, var(--color-cream), var(--color-white));
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--color-dark-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-dark-green);
    color: var(--color-cream);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(26, 77, 62, 0.2);
}

.cta-button:hover {
    background: var(--color-medium-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 62, 0.3);
}

/* Fade-in animations */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* ===============================
   HORIZONTAL IMAGE STRIP
   =============================== */
.image-strip-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background: var(--color-white);
}

.image-strip:hover {
    animation-play-state: paused;
}

@keyframes scrollStrip {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.image-strip {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    width: max-content;
    animation: seamless-scroll 60s linear infinite;
}

@keyframes seamless-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--strip-width, -100%) * -1));
    }
}

.strip-item {
    flex: 0 0 auto;
    text-align: center;
}

.strip-image {
    width: 280px;
    height: 280px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

/* Base image styling for all strip images */
.strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-smooth);
}

/* Container styling for specific images */
.spaghetti-image,
.doria-image,
.biscoff-image,
.strawberryfrappe-image,
.matchlatte-image,
.omurice-image {
    width: 280px;
    height: 280px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

/* Specific object-fit overrides for landscape/portrait images */
.spaghetti-image img {
    object-fit: contain;
    background-color: var(--color-cream);
}

.doria-image img {
    object-fit: contain;
    background-color: var(--color-cream);
}

.biscoff-image img {
    object-fit: contain;
    background-color: var(--color-cream);
}

.strawberryfrappe-image img {
    object-fit: contain;
    background-color: var(--color-cream);
}

.matchlatte-image img {
    object-fit: contain;
    background-color: var(--color-cream);
}

.omurice-image img {
    object-fit: contain;
    background-color: var(--color-cream);
}

/* Hover effects for all strip images */
.strip-item:hover .strip-image,
.strip-item:hover .spaghetti-image,
.strip-item:hover .doria-image,
.strip-item:hover .biscoff-image,
.strip-item:hover .strawberryfrappe-image,
.strip-item:hover .matchlatte-image,
.strip-item:hover .omurice-image {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.strip-item:hover .strip-image {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Placeholder image backgrounds with gradient overlays */
.pasta { background: linear-gradient(135deg, #ff9a56, #ff6b6b); }
.pizza { background: linear-gradient(135deg, #f39c12, #e74c3c); }
.breakfast { background: linear-gradient(135deg, #fdcb6e, #fab1a0); }
.chicken { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.curry { background: linear-gradient(135deg, #00b894, #55efc4); }
.cappuccino { background: linear-gradient(135deg, #795548, #8d6e63); }
.frappe { background: linear-gradient(135deg, #74b9ff, #a29bfe); }
.cold-brew { background: linear-gradient(135deg, #2d3436, #636e72); }
.tea { background: linear-gradient(135deg, #00b894, #81c784); }

.strip-label {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark-green);
}

/* ===============================
   CONTAINER & SECTIONS
   =============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--color-medium-green);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

/* Reveal animation on scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   ABOUT SECTION
   =============================== */
.about {
    background: var(--color-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===============================
   SIGNATURE SECTION
   =============================== */
.signature {
    background: var(--color-cream);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.signature-column {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.signature-subtitle {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--color-dark-green);
    margin-bottom: 2rem;
    text-align: center;
}

.signature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.signature-item {
    display: flex;
    align-items: center; 
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.signature-item:hover {
    background: var(--color-cream);
    transform: translateX(5px);
}

.signature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;  
    display: flex;    
    align-items: center;
    justify-content: center;
}

.signature-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin-bottom: 0.25rem;
    line-height: 1.4;  
}

.signature-details {
    flex: 1;  
}

.signature-details p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;  
}

.pasta-icon img {
  width: 26px;
  height: 26px;
}

.pizza-icon img {
  width: 26px;
  height: 26px;
}

.breakfast-icon img {
  width: 26px;
  height: 26px;
}

.chicken-icon img {
  width: 26px;
  height: 26px;
}

.curry-icon img {
  width: 26px;
  height: 26px;
}

.cappuccino-icon img {
  width: 26px;
  height: 26px;
}

.frappe-icon img {
  width: 26px;
  height: 26px;
}

.cold-brew-icon img {
  width: 26px;
  height: 26px;
}

.herbaltea-icon img {
  width: 26px;
  height: 26px;
}

/* ===============================
   MENU SECTION
   =============================== */
.menu-section {
    background: var(--color-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-card {
    background: var(--color-cream);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: flex;              
    flex-direction: column;     
    align-items: center;        
    justify-content: center;    
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-medium-green);
}

.menu-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;            
    display: flex;             
    align-items: center;       
    justify-content: center;   
}

.menu-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
    line-height: 1.3;          
}

.menu-card p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;         
}

.menu-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-dark-green);
    color: var(--color-cream);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.menu-button:hover {
    background: var(--color-medium-green);
    transform: scale(1.05);
}

.breakfastmenu-icon img {
  width: 75px;
  height: 75px;
}

.sips-icon {
    width: 75px;
    height: 75px;
    line-height: 0;            
    display: block;           
    margin: 0 auto 1.5rem;     
}

.sips-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fullmenu-icon {
    width: 75px;
    height: 75px;
    line-height: 0;            
    display: block;           
    margin: 0 auto 1.5rem;     
}

.fullmenu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===============================
   INFO SECTION
   =============================== */
.info-section {
    background: var(--color-cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.info-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    display: flex;              
    flex-direction: column;     
    align-items: center;        
    justify-content: center;    
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;            
    display: flex;             
    align-items: center;       
    justify-content: center;   
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
    line-height: 1.3;         
}

.info-details {
    margin-top: 1rem;
}

.info-highlight {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-medium-green);
    margin-bottom: 0.5rem;
    line-height: 1.2;          
}

.info-subtext {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.5;          
}

.clock-icon img {
  width: 50px;
  height: 50px;
}

.people-icon img {
  width: 50px;
  height: 50px;
}

/* ===============================
   DELIVERY SECTION
   =============================== */
.delivery-section {
    background: var(--color-white);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.delivery-card {
    background: var(--color-cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;              
    flex-direction: column;     
    align-items: center;        
    justify-content: center;  
    min-height: 250px;  
}

.delivery-icon {
    margin-bottom: 1.5rem;      
    line-height: 0;             
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;               
}

.delivery-icon img {
    max-width: 150px;           
    max-height: 80px;           
    width: auto;
    height: auto;
    object-fit: contain;        
    display: block;
}

.delivery-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark-green);
    line-height: 1.3;
    margin-top: 0;              
}

.delivery-card:hover {
    transform: scale(1.05);
    border-color: var(--color-medium-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.zomato-icon img {
  width: 150px;
  height: 110px;
}

.easydiner-icon img {
  width: 150px;
  height: 150px;
}

.district-icon img {
  width: 120px;
  height: 120px;
}


/* ===============================
   FOOTER
   =============================== */
.footer {
    background: var(--color-dark-green);
    color: var(--color-cream);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-light-green);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1) invert(0);
    background-color: #d3daa3;
    padding: 1rem;
    box-sizing: content-box;
}

.footer-tagline {
    color: var(--color-light-green);
    font-style: italic;
}

.footer-address {
    line-height: 1.8;
    color: var(--color-cream);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-medium-green);
    color: var(--color-dark-green);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.whatsapp-button:hover {
    background: var(--color-light-green);
    transform: scale(1.05);
}

.whatsapp-icon img {
  width: 26px;
  height: 26px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-medium-green);
    color: var(--color-dark-green);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-bottom: 0.75rem;
}

.instagram-button:hover {
    background: var(--color-light-green);
    transform: scale(1.05);
}

.instagram-icon img {
    width: 26px;
    height: 26px;
}


.facebook-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-medium-green);
    color: var(--color-dark-green);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.facebook-button:hover {
    background: var(--color-light-green);
    transform: scale(1.05);
}

.facebook-icon img {
    width: 26px;
    height: 26px;
}

.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(211, 218, 163, 0.2);
    color: var(--color-light-green);
}

/* Footer Credits Link */
.footer-credits {
    margin-top: 0.5rem;
}

.credit-link {
    color: var(--color-medium-green);
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
}

.credit-link:hover {
    color: var(--color-light-green);
    text-decoration: none;
}

.credit-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-light-green);
    transition: width 0.3s ease;
}

.credit-link:hover::after {
    width: 100%;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablet */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--color-cream);
        padding: 2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .image-strip {
        gap: 1.5rem;
    }
    
    .strip-image {
        width: 220px;
        height: 220px;
    }
    
    .signature-grid {
        gap: 2rem;
    }
    
    .menu-grid,
    .info-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--color-cream);
        padding: 2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .image-strip {
        gap: 1.5rem;
    }
    
    .strip-image {
        width: 220px;
        height: 220px;
    }
    
    .signature-grid {
        gap: 2rem;
    }
    
    .menu-grid,
    .info-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center logo */
    .footer-logo {
        margin: 0 auto 1rem;
    }
    
    /* Center all buttons */
    .whatsapp-button,
    .instagram-button,
    .facebook-button {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .image-strip {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .strip-image {
        width: 180px;
        height: 180px;
    }
    
    .signature-column {
        padding: 1.5rem;
    }
    
    .menu-card,
    .info-card,
    .delivery-card {
        padding: 2rem 1.5rem;
    }
    
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
    }
    
    .whatsapp-button,
    .instagram-button,
    .facebook-button {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

/* Center all footer sections on mobile */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center logo on mobile */
.footer-logo {
    margin: 0 auto 1rem;
}

/* Center buttons on mobile */
.whatsapp-button,
.instagram-button,
.facebook-button {
    margin-left: auto;
    margin-right: auto;
}
}


body, html {
    overflow-x: hidden;
}
