/* =============================================
   IMPORTS AND FONT DECLARATIONS
   ============================================= */
@import url("https://api.fontshare.com/v2/css?f[]=archivo@100,200,300,400,500,600,700,800,900&f[]=clash-display@200,300,400,500,600,700&display=swap");

/* =============================================
   CSS CUSTOM PROPERTIES / VARIABLES
   ============================================= */
:root {
    /* Main Website Color Variables */
    --primary-orange: #e67e22;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --grey-divider: #808080;
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-archivo: "Archivo", sans-serif;
    --font-clash-display: "Clash Display", sans-serif;

    /* Layout */
    --max-width: 2100px;

    /* Spacing */
    --spacing-xs: 25px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Border Radius */
    --radius-md: 25px;

    /* Slider Variables */
    --slide-width: min(25vw, 300px);
    --slide-aspect: 2 / 3;
    --slide-transition-duration: 800ms;
    --slide-transition-easing: ease;
}

/* =============================================
   RESET AND BASE STYLES
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#table-reservation {
    scroll-margin-top: 100px; /* Adjust based on your header height */
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
    border: none;
}

.header-divider {
    border: none;
    height: 4px;
    width: 100%;
    margin: 20px 0;
    background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
}

/* =============================================
   FIXED BACKGROUND STYLES
   ============================================= */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-wrapper .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.background-wrapper .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 1;
}

/* =============================================
   HEADER SECTION
   ============================================= */
.main-header {
    margin-top: 40px;
    position: relative;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    transition: all var(--transition-medium);
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.95) 0%,
        rgba(20, 20, 20, 0.9) 50%,
        rgba(40, 40, 40, 0.95) 100%);
    border-bottom: 3px solid rgba(255, 215, 0, 0.9);
    border-top: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px) saturate(1.1);
}

.header-content {
    max-width: 2100px;
    width: 100%;
    transition: padding var(--transition-medium);
}

.header-navigation {
    display: flex;
    justify-content: space-between; /* Keep original space-between */
    align-items: center;
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 8px var(--spacing-lg);
    /* Responsive gap that shrinks as screen gets smaller */
    gap: max(20px, min(650px, 40vw - 400px));
    transition: gap 0.3s ease;
}

/* =============================================
   LOGO SECTION
   ============================================= */
.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
    height: 240px;
}

.brand-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 150px;
    background: linear-gradient(145deg, #4b4747ab, #1f1f1f, #3f3324);
    border: 1px solid #57000017;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: 
        all var(--transition-fast),
        background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border 0.3s ease-out,
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.2s ease-out;
}

.brand-logo a:hover {
    transform: scale(1.03) translateY(-2px);
    border-color: #ffc107;
    background: linear-gradient(145deg, #4b4747ab, #1f1f1f, #3f3324);
    border: 1px solid #e4a700a6;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-logo a:active {
    transform: scale(0.98) translateY(1px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #3f3324, #1f1f1f, #4b4747ab);
    border: 2px solid #cc8400;
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background 0.1s ease;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: auto;
    margin: 0;
    object-fit: contain;
    transition: all var(--transition-fast);
    filter: 
        drop-shadow(12px 20px 40px rgba(0, 0, 0, 0.9))
        drop-shadow(25px 35px 70px rgba(0, 0, 0, 0.4))
        brightness(1.05)
        contrast(1.02);
}

.logo-image:hover {
    filter: 
        drop-shadow(15px 25px 50px rgba(0, 0, 0, 0.95))
        drop-shadow(30px 40px 80px rgba(0, 0, 0, 0.5))
        drop-shadow(45px 55px 100px rgba(0, 0, 0, 0.2))
        brightness(1.08)
        contrast(1.05);
    transform: translateY(-3px);
}

/* =============================================
   NAVIGATION MENU
   ============================================= */
.primary-navigation {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    margin-left: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    margin: 0 15px;
    padding: 15px 30px;
    /* Use consistent gradient background approach */
    background: linear-gradient(135deg, 
        rgba(255, 199, 79, 0.959) 0%,
        rgba(255, 199, 79, 0.959) 100%);
    border-radius: 100px;
    box-shadow: 
        0 2px 0 var(--primary-orange),
        0 4px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Optimized transitions */
    transition: 
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-image 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    will-change: transform, box-shadow, background;
}

.nav-menu::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.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    /* Add opacity control */
    opacity: 0;
}

.nav-menu:not(:hover)::before {
    left: -100%;
    transition: left 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 0.2s ease;
    opacity: 0;
}

.nav-menu:hover::before {
    left: 100%;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s ease;
    opacity: 1;
}

.nav-menu:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 0 var(--primary-orange),
        0 16px 32px rgba(230, 125, 34, 0.25),
        0 24px 48px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    /* Change to background-image instead of background */
    background-image: linear-gradient(135deg, 
        rgba(255, 220, 100, 0.98) 0%,
        rgba(255, 199, 79, 0.98) 50%,
        rgba(240, 180, 60, 0.98) 100%);
}

/* Optional: Add focus state for accessibility */
.nav-menu:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    transition: outline 0.2s ease-in-out;
}

.nav-item {
    position: relative;
    margin: 0;
}

/* Navigation Links - KEEP SAME SIZE */
.nav-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px; /* KEEP original */
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px; /* KEEP original */
    background-color: rgb(255, 255, 255);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(240, 240, 240);
    position: relative;
    overflow: hidden;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

/* All existing navbar-link states remain exactly the same */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 102, 0, 0.08), 
        transparent);
    transition: left var(--transition-slow);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        rgb(255, 102, 0),
        transparent);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.nav-link:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(1px) scale(0.98);
    border-color: rgb(255, 102, 0);
    color: rgb(20, 20, 20);
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 1px 3px rgba(255, 102, 0, 0.15);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:focus {
    outline: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(255, 102, 0, 0.3);
}

.nav-link--active {
    color: #ffffff;
    background-color: rgb(255, 149, 28);
    border: 2px solid rgb(255, 136, 0);
    
    transform: translateY(1px) scale(0.98);
    
    box-shadow: 
        0 1px 6px rgba(255, 136, 0, 0.3),
        inset 0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link--active:hover {
    background-color: rgb(255, 123, 0);
    transform: translateY(1px) scale(0.98);
    border-color: rgb(228, 102, 0);
    color: #ffffff;
    
    box-shadow: 
        0 2px 10px rgba(255, 136, 0, 0.35),
        inset 0 2px 8px rgba(0, 0, 0, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.nav-link--active::after {
    width: 0;
}

.nav-link:active {
    transform: translateY(2px) scale(0.96);
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    
    background-color: rgb(245, 245, 245);
    border-color: rgb(220, 220, 220);
    
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.1s ease,
        border-color 0.1s ease;
}

.nav-link--active:active {
    transform: translateY(2px) scale(0.96);
    
    box-shadow: 
        0 0px 2px rgba(255, 136, 0, 0.4),
        inset 0 3px 10px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    
    background-color: rgb(230, 115, 10);
    border-color: rgb(200, 100, 0);
    
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.1s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-link {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .nav-link:hover {
        transform: translateY(0.5px) scale(0.99); /* Less dramatic on mobile */
    }
    
    /* Adjusted 3D effect for mobile */
    .nav-link:active {
        transform: translateY(1px) scale(0.98);
    }
    
    .nav-link--active {
        transform: translateY(0.5px) scale(0.99);
    }
    
    .nav-link--active:hover {
        transform: translateY(0.5px) scale(0.99);
    }
    
    .nav-link--active:active {
        transform: translateY(1px) scale(0.98);
    }
}

/* =============================================
   MOBILE MENU TOGGLE
   ============================================= */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 199, 79, 0.9);
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.8);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1003;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-banner {
    margin-bottom: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 110px;
    padding-bottom: 30px;
    z-index: 2;
}

.hero-container {
    max-width: 2100px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    display: grid;
    grid-template-columns: 1.2fr 2.6fr;
    grid-template-rows: 1fr auto;
    gap: 50px;
    align-items: center;
    position: relative;
    min-height: 500px;
}

/* =============================================
   HERO CONTENT AREA
   ============================================= */
.hero-text-content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    z-index: 3;
    width: 130%;
    position: relative;
    transform: translateX(15%) translateY(40px);
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(8px) saturate(1.2);
    border-radius: 30px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 100px rgba(255, 140, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.hero-text-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.05) 0%,
        transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.hero-text-content:hover {
    transform: translateX(15%) translateY(30px) scale(1.03);
    background: rgba(15, 15, 15, 0.85);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 150px rgba(255, 140, 0, 0.2);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, 
        #ffd700 0%,
        #ff8c00 25%,
        #ffffff 50%,
        #ff8c00 75%,
        #ffd700 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-main-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #ff8c00 20%,
        #ffd700 50%,
        #ff8c00 80%,
        transparent 100%);
    border-radius: 3px;
    box-shadow: 
        0 4px 15px rgba(255, 140, 0, 0.6),
        0 0 30px rgba(255, 140, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.7;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out 0.5s both;
}



@keyframes sparkle {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(-50%) scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   HERO BUTTONS
   ============================================= */
.hero-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-button--primary,
.cta-button--secondary {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button--primary {
    background: linear-gradient(145deg, 
        var(--primary-orange), 
        #d35400);
    color: var(--white);
    border: 2px solid var(--primary-orange);
    box-shadow: 
        0 6px 0 #b8440e,
        0 8px 15px rgba(230, 126, 34, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease;
    cursor: pointer;
    position: relative;
}

.cta-button--primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(0, 0, 0, 0.1) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.cta-button--primary:hover {
    background: linear-gradient(145deg, 
        #d35400, 
        #b8440e);
    transform: translateY(-3px);
    box-shadow: 
        0 9px 0 #a0380c,
        0 12px 30px rgba(230, 126, 34, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.cta-button--primary:active {
    background: linear-gradient(145deg, 
        #b8440e, 
        #a0380c);
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #a0380c,
        0 4px 10px rgba(230, 126, 34, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.cta-button--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 
        0 6px 0 rgba(255, 255, 255, 0.8),
        0 8px 15px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 0 rgba(255, 255, 255, 0.3),
        0 3px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.15s ease;
    cursor: pointer;
    position: relative;
}

.cta-button--secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(0, 0, 0, 0.1) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.cta-button--secondary:hover {
    background: linear-gradient(145deg, 
        var(--white), 
        #f0f0f0);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 
        0 9px 0 rgba(240, 240, 240, 0.9),
        0 12px 30px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.1),
        0 2px 0 rgba(0, 0, 0, 0.05),
        0 3px 5px rgba(0, 0, 0, 0.2);
}

.cta-button--secondary:active {
    background: linear-gradient(145deg, 
        #f0f0f0, 
        #e0e0e0);
    color: var(--dark-bg);
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 rgba(224, 224, 224, 0.9),
        0 4px 10px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.15),
        0 2px 0 rgba(0, 0, 0, 0.1),
        0 2px 3px rgba(0, 0, 0, 0.25);
}

/* =============================================
   HERO IMAGE SECTION
   ============================================= */
.hero-image-wrapper {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    perspective: 1000px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 320px;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.2) 0%,
        rgba(218, 165, 32, 0.1) 50%,
        rgba(255, 140, 0, 0.2) 100%);
    border-radius: 25px;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-5deg);
    filter: blur(20px);
    animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) rotateY(-5deg) scale(0.95);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) rotateY(5deg) scale(1.05);
        opacity: 0.9;
    }
}

.hero-main-image {
    outline: none;
    border: 6px solid rgba(255, 255, 255, 0.9);
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    transform: translateX(200px) rotateY(-8deg) rotateX(2deg);
    filter: contrast(1.1) saturate(1.1);
}

.hero-main-image:hover {
    transform: translateX(200px) scale(1.08) rotateY(-12deg) rotateX(5deg) translateZ(20px);
    border-color: #ffd700;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 15px 30px rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: contrast(1.08) saturate(1.02);
}

/* =============================================
   SOCIAL MEDIA ICONS
   ============================================= */
.hero-social-links {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    gap: 15px;
    justify-self: end;
    align-self: end;
    z-index: 3;
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(-245px);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.1) 0%,
        rgba(255, 140, 0, 0.05) 100%);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.3) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, 
        var(--primary-orange) 0%,
        #ff8c00 100%);
    border-color: #ffd700;
    transform: translateY(-5px) scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(230, 126, 34, 0.5),
        0 0 40px rgba(255, 140, 0, 0.3);
    color: #ffffff;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:nth-child(1):hover { transform: translateY(-5px) scale(1.15) rotate(-5deg); }
.social-link:nth-child(2):hover { transform: translateY(-5px) scale(1.15) rotate(5deg); }
.social-link:nth-child(3):hover { transform: translateY(-5px) scale(1.15) rotate(-5deg); }

/* =============================================
   HERO FOOTER SECTION
   ============================================= */
.restaurant-info-footer {
    max-width: 2100px;
    margin: 0 auto;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: transparent;
    margin-top: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(20, 20, 20, 0.9) 100%);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 25px;
    text-align: center;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.1) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotate 15s linear infinite;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.05) 0%,
        transparent 50%,
        rgba(218, 165, 32, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 23px;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(25, 25, 25, 0.95) 100%);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 10px 20px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--primary-orange) 0%,
        #ffd700 50%,
        var(--primary-orange) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    animation: gradientShift 3s ease-in-out infinite;
}

.info-card-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.info-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.info-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-restaurant {
    margin-bottom: 0;
    background-color: white;
    padding: 80px 0 100px 0;
    overflow-x: hidden;
}

.about-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* About Section - Image Container */
.about-image-primary img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(139, 69, 19, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-out;
    filter: sepia(0.1) saturate(1.1) brightness(1.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-featured-image:hover {
    transform: scale(1.04) rotateZ(0.5deg);
    box-shadow: 
        0 30px 60px rgba(139, 69, 19, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
    filter: sepia(0.05) saturate(1.15) brightness(1.05);
}

/* About Section - Text Content */
.about-text-content {
    padding: 0 40px;
    position: relative;
}

.about-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
}

.about-main-title {
    font-size: 42px;
    font-weight: 100;
    color: #e4a700;
    line-height: 1.0;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e4a700, transparent);
}

.about-description {
    font-size: 16px;
    line-height: 2.0;
    color: #333;
    margin-bottom: 50px;
    font-weight: 300;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* About Button with 3D Effect */
.about-cta-button {
    background: transparent;
    color: #e53e3e;
    padding: 15px 30px;
    border: 2px solid #e53e3e;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(229, 62, 62, 0.1),
        0 8px 0 #c53030,
        0 16px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    animation: fadeInUp 0.8s ease-out;
    text-decoration: none;
}

.about-cta-button::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;
}

.about-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.about-cta-button:hover {
    background: #e53e3e;
    color: white;
    transform: scale(1.02) translateY(-4px) rotateX(5deg);
    letter-spacing: 4px;
    box-shadow: 
        0 8px 25px rgba(229, 62, 62, 0.3),
        0 12px 0 #c53030,
        0 24px 35px rgba(0, 0, 0, 0.3);
    border-color: #c53030;
}

.about-cta-button:hover::before {
    left: 100%;
}

.about-cta-button:hover::after {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
}

.about-cta-button:active {
    transform: scale(0.98) translateY(-1px) rotateX(2deg);
    transition: transform 0.1s ease;
    box-shadow: 
        0 4px 15px rgba(229, 62, 62, 0.2),
        0 4px 0 #c53030,
        0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Opening Hours Section */
.about-hours-info {
    margin-top: 80px;
    text-align: center;
}

.hours-title {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hours-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    max-width: 300px;
    margin: 0 auto;
}

.hours-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 300;
    line-height: 1.8;
    padding: 8px 0;
    border-bottom: 1px dotted #ddd;
}

/* Side Image with Enhanced Hover Effect */
.about-side-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(228, 167, 0, 0.05);
    transition: all 0.8s ease-in-out;
    object-fit: cover;
    filter: brightness(1.02) contrast(1.04) hue-rotate(0deg);
    transform: rotate(0deg) translateX(0);
    border: 2px solid rgba(255, 255, 255, 0.4);
    will-change: transform, filter, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.about-side-image:hover {
    transform: rotate(-1deg) translateX(-3px) translateY(-6px) scale(1.04);
    box-shadow: 
        0 18px 35px rgba(255, 140, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(255, 165, 0, 0.1);
    filter: brightness(1.08) contrast(1.12) hue-rotate(5deg) saturate(1.15);
    border: 2px solid rgba(255, 255, 255, 0.548);
}

/* =============================================
   MENU PREVIEW SECTION
   ============================================= */
.menu-preview {
    position: relative;
    background: #fffced;
    padding: 80px 20px;
    text-align: center;
}

.menu-preview-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-main-title {
    font-size: 48px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* View All Button with 3D Animation */
.menu-preview-cta {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #e74c3c;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 60px;
    border: 2px solid #e74c3c;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    animation: float 3s ease-in-out infinite;
}

.menu-preview-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #e74c3c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: -1;
}

.menu-preview-cta:hover {
    color: white;
    border-radius: 0;
    transform: scale(1.1) rotate(2deg);
    letter-spacing: 3px;
    border-color: #c0392b;
    animation: none;
}

.menu-preview-cta:hover::before {
    width: 300px;
    height: 300px;
}

.menu-preview-cta:active {
    animation: none;
    transform: scale(0.95) rotateX(15deg) rotateY(15deg);
    transition: transform 0.15s ease;
    box-shadow: 0 8px 15px rgba(192, 57, 43, 0.8);
}

/* Food Gallery */
.food-categories-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.food-category-item {
    text-align: center;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.food-category-item:hover {
    transform: translateY(-10px);
}

.food-category-item--featured {
    transform: translateY(-30px);
}

.food-category-item--featured:hover {
    transform: translateY(-40px);
}

/* Plate Styling for Authentic Look */
.food-category-plate {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffdd80, #fff9a8);
    box-shadow:
        inset 0 -10px 20px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.food-category-plate::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.1);
}

.food-category-image {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.food-category-label {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* =============================================
   GALLERY SLIDER SECTION
   ============================================= */
.gallery-slider {
    background: rgba(7, 6, 5, 0.932);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 40px;
    width: 100%;
}

.slider-container {
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 30px;
}

/* Slider Navigation Buttons */
.slider-control {
    --size: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    position: absolute; /* Changed from relative to absolute */
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;

}

/* Position left button */
.slider-control--prev {
    left: 20px;
}

/* Position right button */
.slider-control--next {
    right: 20px;
}

.slider-control::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff9900, #ffbb00, #ff9900);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    animation: gradientSpin 3s linear infinite;
}

.slider-control:hover {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 153, 0, 0.2);
    border-color: #ff9900;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
}

.slider-control:hover::before {
    opacity: 1;
}

.slider-control svg {
    width: var(--size);
    height: var(--size);
    stroke: rgb(255, 255, 255);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 153, 0, 0.6));
}

/* Slides Wrapper */
.slides-wrapper {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.062);
    border-radius: 400px;
    width: 100%;
    max-width: 900px;
    height: 100%;
    min-height: 450px;
    display: grid;
    place-items: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    box-sizing: border-box;
}

.slides-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 174, 0, 0.822);
}

.slides-wrapper > * {
    grid-area: 1 / -1;
}

.slides-container {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.slides-info-container {
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    place-items: center;
}

.slides-container > *,
.slides-info-container > * {
    grid-area: 1 / -1;
}

/* Individual Slide Styles */
.gallery-slide {
    --slide-tx: 0px;
    --slide-ty: 0vh;
    --padding: 0px;
    --offset: 0;
    width: var(--slide-width);
    height: 100%;
    aspect-ratio: var(--slide-aspect);
    user-select: none;
    perspective: 800px;
    transition: all var(--slide-transition-duration) var(--slide-transition-easing);
    transform: perspective(1000px) translate3d(var(--slide-tx), var(--slide-ty), var(--slide-tz, 0)) rotateY(var(--slide-rotY)) scale(var(--slide-scale));
}

.gallery-slide:hover {
    cursor: pointer;
}

.gallery-slide--current {
    --slide-scale: 1.2;
    --slide-tz: 0px;
    --slide-tx: 0px;
    --slide-rotY: 0;
    pointer-events: auto;
}

.gallery-slide--current:hover {
    --slide-scale: 1.25;
    filter: brightness(1.1);
}

.gallery-slide--next {
    --slide-tx: calc(1 * var(--slide-width) * 1.07);
    --slide-rotY: -45deg;
}

.gallery-slide--previous {
    --slide-tx: calc(-1 * var(--slide-width) * 1.07);
    --slide-rotY: 45deg;
}

.gallery-slide:not([data-current]) {
    --slide-scale: 1;
    --slide-tz: 0;
    pointer-events: none;
    filter: brightness(1.1);
}

.gallery-slide--current .slide-image {
    filter: brightness(0.8);
}

.gallery-slide:not([data-current]) .slide-image {
    filter: brightness(0.5);
}

.gallery-slide--next:hover,
.gallery-slide--previous:hover {
    --slide-scale: 1.1;
    transform: perspective(1000px) translate3d(var(--slide-tx), var(--slide-ty), 20px) rotateY(var(--slide-rotY)) scale(var(--slide-scale));
}

/* Slide Inner Container */
.slide-inner {
    --rotX: 0;
    --rotY: 0;
    --bgPosX: 0%;
    --bgPosY: 0%;
    position: relative;
    left: calc(var(--padding) / 2);
    top: calc(var(--padding) / 2);
    width: calc(100% - var(--padding));
    height: calc(100% - var(--padding));
    transform-style: preserve-3d;
    transform: rotateX(var(--rotX)) rotateY(var(--rotY));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.25) translate3d(var(--bgPosX), var(--bgPosY), 0);
    transition: 
        filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, filter;
}

.gallery-slide--current .slide-image:hover {
    transform: translate(-50%, -50%) scale(1.3) translate3d(var(--bgPosX), var(--bgPosY), 0);
    filter: brightness(0.9);
    transition: 
        filter 0.2s ease-out,
        transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    pointer-events: none;
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease,
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.slide-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: backdrop-filter 0.3s ease;
}

.slide-background:not(.slide-background--current) {
    opacity: 0;
}

.slide-background--previous {
    transform: translateX(-10%);
}

.slide-background--next {
    transform: translateX(10%);
}

/* Slide Information */
.slide-info {
    --padding: 0px;
    position: relative;
    width: var(--slide-width);
    height: 100%;
    aspect-ratio: var(--slide-aspect);
    user-select: none;
    perspective: 800px;
    z-index: 100;
}

.slide-info--current .slide-text-wrapper span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 250ms;
}

.slide-info:not(.slide-info--current) .slide-text-wrapper span {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition-delay: 0ms;
}

.slide-info-inner {
    position: relative;
    left: calc(var(--padding) / 2);
    top: calc(var(--padding) / 2);
    width: calc(100% - var(--padding));
    height: calc(100% - var(--padding));
    transform-style: preserve-3d;
    transform: rotateX(var(--rotX)) rotateY(var(--rotY));
}

.slide-text-wrapper {
    --z-offset: 45px;
    position: absolute;
    height: fit-content;
    left: -15%;
    bottom: 15%;
    transform: translateZ(var(--z-offset));
    z-index: 2;
    pointer-events: none;
}

.slide-text-wrapper .slide-title,
.slide-text-wrapper .slide-subtitle,
.slide-text-wrapper .slide-description {
    font-family: var(--font-clash-display);
    color: #ffffff;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    transition: all var(--slide-transition-duration) var(--slide-transition-easing);
    transition-property: opacity, transform;
    position: relative;
    overflow: hidden;
}

/* Fix text visibility for current slide */
.slide-info--current .slide-text-wrapper span,
.slide-info--current .slide-text-wrapper .slide-title,
.slide-info--current .slide-text-wrapper .slide-subtitle,
.slide-info--current .slide-text-wrapper .slide-description {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 250ms;
}

/* Hide text for non-current slides */
.slide-info:not(.slide-info--current) .slide-text-wrapper span,
.slide-info:not(.slide-info--current) .slide-text-wrapper .slide-title,
.slide-info:not(.slide-info--current) .slide-text-wrapper .slide-subtitle,
.slide-info:not(.slide-info--current) .slide-text-wrapper .slide-description {
    opacity: 0 !important;
    transform: translate3d(0, 100%, 0) !important;
    transition-delay: 0ms;
}


.slide-text-wrapper .slide-title::after,
.slide-text-wrapper .slide-subtitle::after,
.slide-text-wrapper .slide-description::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.4), transparent);
    transition: left 0.8s ease;
}

.slide-text-wrapper .slide-title:hover::after,
.slide-text-wrapper .slide-subtitle:hover::after,
.slide-text-wrapper .slide-description:hover::after {
    left: 100%;
}

.slide-title,
.slide-subtitle {
    font-size: min(3cqw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.2cqw;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow:
        2px 2px 6px #111,
        0 4px 14px #000,
        0 1px 0 #222;
}

.slide-title:hover,
.slide-subtitle:hover {
    color: #ffd667;
    transform: translateX(10px);
    text-shadow:
        2px 2px 6px #111,
        0 4px 14px #000,
        0 1px 0 #222,
        0 0 20px rgba(255, 187, 0, 0.6);
}

.slide-subtitle {
    margin-left: 2cqw;
    font-size: min(2.2cqw, 1.8rem);
    font-weight: 600;
}

.slide-description {
    font-size: min(1.5cqw, 0.95rem);
    font-family: var(--font-archivo);
    font-weight: 400;
    color: #ffe600;
    text-shadow:
        2px 2px 6px #111,
        0 4px 14px #000,
        0 1px 0 #222;
}

.slide-description:hover {
    color: #ffffff;
    transform: translateX(5px) scale(1.05);
}

/* Support Section (Social Media Icons) */
.slider-social-support {
    position: absolute;
    bottom: -185px;
    padding: 15px 45px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    outline: #ffffff 2px solid;
    background: linear-gradient(135deg, #2b2b2b, #1e1e1e);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.5, 0, 0.2, 1);
}

.slider-social-support::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ff9900, #ffbb00, #ff9900, #ffbb00);
    background-size: 300% 300%;
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    animation: supportGradient 4s ease infinite;
}

.slider-social-support:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 153, 0, 0.4);
    outline-color: #ff9900;
}

.slider-social-support:hover::before {
    opacity: 1;
}

.support-label {
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.slider-social-support:hover .support-label {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 187, 0, 0.6);
}

.support-social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    pointer-events: auto;
}

.support-social-link {
    margin: 0 10px;
    color: transparent;
    font-size: 1.8rem;
    backface-visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.support-social-link::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--icon-color), transparent);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    animation: iconSpin 3s linear infinite;
    pointer-events: none;
}

.support-social-link:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.support-social-link:hover::before {
    opacity: 1;
}

.support-social-link:hover::after {
    content: 'âœ¨';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 12px;
    animation: sparkle 1s ease-in-out infinite;
    pointer-events: none;
}

/* Instagram Icon */
.support-social-link .fa-instagram {
    color: #E4405F;
    --icon-color: #E4405F;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.support-social-link:hover .fa-instagram {
    color: #ffffff;
    transform: scale(1.15) rotate(10deg);
    text-shadow:
        0 0 15px #E4405F,
        0 0 30px #E4405F,
        0 0 45px #E4405F;
    filter: brightness(1.3) drop-shadow(0 0 8px #E4405F);
    animation: instagramGlow 1.5s ease-in-out infinite alternate;
}

/* Facebook Icon */
.support-social-link .fa-facebook {
    color: #1877F2;
    --icon-color: #1877F2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.support-social-link:hover .fa-facebook {
    color: #ffffff;
    transform: scale(1.15) rotate(-8deg);
    text-shadow:
        0 0 15px #1877F2,
        0 0 30px #1877F2,
        0 0 45px #1877F2;
    filter: brightness(1.3) drop-shadow(0 0 8px #1877F2);
    animation: facebookGlow 1.5s ease-in-out infinite alternate;
}

/* =============================================
   TABLE RESERVATION SECTION
   ============================================= */
.reservation-section {
    background: linear-gradient(rgba(255, 244, 181, 0.158),#58585842, rgba(255, 233, 162, 0.185)),
        url('restaurant-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: local;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-container {
    margin: 100px;
    max-width: 1300px;
    width: 100%;
    text-align: center;
    background: rgba(38, 49, 80, 0.678);
    padding: 90px 10px;
    border-radius: 3px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
}

.reservation-container:hover {
    background: rgba(38, 49, 80, 0.74); /* Full opacity on hover */
    transform: translateY(-1px); /* Optional: slight lift effect */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); /* Enhanced shadow */
}


.reservation-header {
    margin-bottom: 50px;
}

.reservation-label {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.reservation-title {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.2;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.form-group {
    flex: 1;
    max-width: 300px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Container styling */
.form-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

/* Submit button styling */
.book-button {
    background-color: #fffb00;
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    user-select: none;
    min-width: 120px;
    height: 48px;
}

.book-button:hover {
    background-color: #fffb00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.book-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 123, 255, 0.2);
}

.book-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.book-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.book-button.success {
    background-color: #28a745;
}

.book-button.success:hover {
    background-color: #218838;
}

.book-button.danger {
    background-color: #dc3545;
}

.book-button.danger:hover {
    background-color: #c82333;
}


.form-group {
    position: relative;
}

.form-group input[readonly] {
    cursor: pointer;
    background: transparent;
    position: relative;
}

.form-group input[readonly]::after {
    content: "ðŸ“…";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
}

.form-group {
    position: relative;
}

.form-group input[readonly] {
    cursor: pointer;
    background: transparent;
}

.persons-group {
    position: relative;
}

.number-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.number-input-wrapper input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    /* Extra padding on right for buttons */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.number-controls {
    position: absolute;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.number-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    width: 30px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 10px;
}

.number-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.number-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.3);
}

.arrow-up,
.arrow-down {
    line-height: 1;
    font-size: 8px;
}

/* Hide default number input arrows */
.number-input-wrapper input::-webkit-outer-spin-button,
.number-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input-wrapper input[type="number"] {
    appearance: textfield;
    /* Standard property */
    -moz-appearance: textfield;
    /* Firefox fallback */
}


.custom-clock {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.custom-clock.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.clock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.clock-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.clock-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clock-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.clock-face {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #ff9900;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.clock-hand {
    position: absolute;
    background: #ff9900;
    transform-origin: bottom center;
    border-radius: 2px;
    transition: transform 0.3s ease;
    left: 50%;
}

.hour-hand {
    width: 4px;
    height: 50px; /* Reduced from 60px - just a little shorter */
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) translateY(100%) rotate(0deg);
}

.minute-hand {
    width: 2px;
    height: 65px; /* Reduced from 80px - just a little shorter */
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) translateY(100%) rotate(0deg);
}



.clock-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clock-number {
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clock-number:hover {
    background: rgba(255, 153, 0, 0.2);
    /* Orange background on hover */
    color: #ff9900;
    /* Orange text on hover */
    transform: scale(1.2);
    /* Slightly larger on hover */
    border: 1px solid rgba(255, 153, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.clock-number.active {
    background: #ff9900;
    color: #000000;
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.5);
}

.clock-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.clock-dot:hover {
    background: rgba(255, 153, 0, 0.2);
    /* Orange background on hover */
    color: #ff9900;
    /* Orange text on hover */
    transform: scale(1.2);
    /* Slightly larger on hover */
    border: 1px solid rgba(255, 153, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.clock-dot.active {
    background: #ff9900;
    color: #000000;
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.5);
}

.clock-dot.active:hover {
    transform: scale(1.3);
    /* Even larger when active and hovered */
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.5);
}




.time-display {
    text-align: center;
    margin-bottom: 20px;
}

.time-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.time-hour,
.time-minute {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.time-separator {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.am-pm-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-left: 10px;
}

.am-pm-btn {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.am-pm-btn.active {
    background: #ff9900;
    color: #000000;
}

.clock-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.clock-btn {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clock-btn.cancel {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.clock-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.clock-btn.confirm {
    background: #ff9900;
    color: #000000;
    border-color: #ff9900;
}

.clock-btn.confirm:hover {
    background: #ff8800;
    border-color: #ff8800;
}

.custom-calendar {
    position: absolute;
    bottom: 110%;
    /* Changed from "top: 110%" to "bottom: 110%" */
    left: 0;
    width: 320px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* Changed from translateY(-10px) to translateY(10px) */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.custom-calendar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.calendar-month-year {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.calendar-day.other-month {
    color: rgba(255, 255, 255, 0.3);
}

.calendar-day.today {
    background: rgba(255, 153, 0, 0.3);
    border: 2px solid #ff9900;
    font-weight: 600;
}

.calendar-day.selected {
    background: #ff9900;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
}

.calendar-day.disabled {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: transparent;
    transform: none;
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.footer {
    background-color: #000000e0;
    padding: 121px 20px 20px;
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Newsletter Section */
.newsletter-container {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    transition: all 0.3s ease;
    margin-bottom: -60px;
    margin-top: -40px;
}

.newsletter-section {
    max-width: 510px;
    width: 100%;
    text-align: right;
    padding: 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-left: 0;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}


.newsletter-section:hover {
    background: transparent;
    transform: translateY(-3px);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%;
    animation: borderGlow 3s ease-in-out infinite;
}

.newsletter-section:hover::before {
    opacity: 1;
}

.newsletter-section h2 {
    color: #ffae00;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: "Boldonse", system-ui;
    letter-spacing: -0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.newsletter-section:hover h2 {
    color: #fff;
    transform: translateX(10px);
}

.newsletter-form {
    justify-content: flex-end;
    display: flex;
    margin: 0;
}

.input-wrapper {
    display: flex;
    max-width: 400px;
    width: 100%;
    background: #fff;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.input-wrapper input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
    font-family: "Quicksand", sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper:hover input {
    color: #000;
    font-weight: 500;
}

.input-wrapper input::placeholder {
    color: #999;
    font-weight: 300;
    transition: all 0.3s ease;
}

.input-wrapper:hover input::placeholder {
    color: #666;
}

.input-wrapper button {
    outline: #000 1px solid;
    background: rgb(255, 166, 0);
    color: #525050;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 4px;
    margin-top: 5px;
}

.input-wrapper button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgb(255, 153, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.input-wrapper button:hover::before {
    width: 200%;
    height: 200%;
}

.input-wrapper button:hover {
    background: #111111;
    color: #000;
    transform: scale(1.08);
}

.input-wrapper button:active {
    transform: scale(0.95);
}

.input-wrapper button svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.input-wrapper button:hover svg {
    transform: translateX(3px) rotate(10deg);
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* Section Divider */
.section-divider2 {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffae00, transparent);
    margin: 60px 0;
    width: 100%;
}

/* Footer Logo */
.footer-logo {
    grid-column: 1;
}

.footer-logo img {
    max-width: 230px;
    height: auto;
    transition: transform 0.8s ease-out 0.2s, filter 0.8s ease-out 0.2s;
    cursor: pointer;
    filter: brightness(1);
    transform: scale(1) rotate(0deg);
}

.footer-logo img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1) drop-shadow(0 8px 25px rgba(255, 107, 107, 0.3));
    transition-delay: 0s;
}

.footer-logo img:active {
    transform: scale(0.95) rotate(-1deg);
    transition: transform 0.1s ease;
}

/* Footer Sections */
.footer-section {
    margin-top: -60px;
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3::before,
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section h3::before {
    height: 2px;
    background-color: #8a8a8a;
    bottom: 5px;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.footer-section h3::after {
    height: 1px;
    background-color: #666;
    transform: scaleX(0.6);
    transform-origin: left;
}

.footer-section h3:hover::after {
    transform: scaleX(1);
    background-color: #ff893a;
    box-shadow: 0 1px 5px rgba(255, 107, 107, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 5px;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a:active {
    transform: translateX(5px) scale(0.95);
    transition: transform 0.1s ease;
}

/* Get In Touch Section */
.get-in-touch {
    grid-column: 4;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 5px;
    color: #cccccc;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-icons a i,
.social-icons a svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 2;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff6b6b;
    border-radius: 5px;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icons a:hover::before {
    transform: scale(1);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.social-icons a:active {
    transform: translateY(-2px) rotate(2deg) scale(1.05);
    transition: transform 0.1s ease;
    animation: bounce 0.6s;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 12px;
}

/* =============================================
   BLOG - SECTION
   ============================================= */
.blog-hero {
    margin-bottom: 15px;
    background-color: #121212;
    padding: 200px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-hero .container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.blog-hero h1 {
    color: #e09d00;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;

    letter-spacing: 1px;
}

.blog-hero p {
    color: #ffde95;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(187, 122, 0, 0.5);
    font-style: italic;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-5px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes gradientSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes supportGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) rotate(180deg);
    }
}

@keyframes instagramGlow {
    0% {
        text-shadow:
            0 0 10px #E4405F,
            0 0 20px #E4405F,
            0 0 30px #E4405F;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        text-shadow:
            0 0 20px #E4405F,
            0 0 35px #E4405F,
            0 0 50px #E4405F;
        transform: scale(1.2) rotate(10deg);
    }
}

@keyframes facebookGlow {
    0% {
        text-shadow:
            0 0 10px #1877F2,
            0 0 20px #1877F2,
            0 0 30px #1877F2;
        transform: scale(1.1) rotate(-4deg);
    }
    100% {
        text-shadow:
            0 0 20px #1877F2,
            0 0 35px #1877F2,
            0 0 50px #1877F2;
        transform: scale(1.2) rotate(-8deg);
    }
}

@keyframes sectionPulse {
    0%, 100% {
        transform: translateY(-3px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

/* =============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================= */

/* =============================================
   TABLET RESPONSIVE (992px and below)
   ============================================= */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }

    .about-image-secondary {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-main-title {
        font-size: 42px;
    }
}

/* =============================================
   MOBILE RESPONSIVE (768px and below)
   ============================================= */
@media (max-width: 768px) {

    .main-header{margin-top: 25px;}
    
    /* ===== UTILITY ELEMENTS ===== */
    .header-divider {
        margin: 15px auto;
    }
    
    .footer-divider {
        margin: 0;
    }
    
    /* ===== HEADER SECTION ===== */
    .header-content {
        padding: 0 20px;
    }

    .header-navigation {
        padding: 0 15px;
    }

    /* Logo Styles */
    .brand-logo {
        transition: all 0.3s ease;
    }

    .logo-image {
        height: 120px;
    }

    .primary-navigation {
        margin-left: 15px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 12px;
        background: rgba(255, 199, 79, 0.95);
        border-radius: 15px;
        border: 2px solid rgba(255, 215, 0, 0.8);
        transition: all var(--transition-fast);
        box-shadow: 
            0 2px 0 var(--primary-orange),
            0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1003;
    }

    .mobile-menu-btn:hover {
        background: linear-gradient(135deg, 
            rgba(255, 220, 100, 0.98) 0%,
            rgba(255, 199, 79, 0.98) 50%,
            rgba(240, 180, 60, 0.98) 100%);
        transform: translateY(-2px);
        box-shadow: 
            0 4px 0 var(--primary-orange),
            0 8px 15px rgba(230, 125, 34, 0.2);
    }

    .mobile-menu-btn .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 2px 0;
        transition: all var(--transition-fast);
        border-radius: 20px;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary-orange);
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary-orange);
    }

    /* Hide Desktop Menu on Mobile */
    .nav-menu:not(.mobile-menu):not(.active) {
        display: none;
    }

    /* Mobile Navigation Menu */
    .nav-menu.active {
        position: fixed;
        top: 180px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        margin: 0;
        padding: 25px 20px;
        
        background: linear-gradient(145deg, 
            rgba(5, 0, 0, 0.95) 0%,
            rgba(10, 5, 0, 0.98) 50%,
            rgba(5, 0, 0, 0.95) 100%);
        border-radius: 30px;
        
        border: 2px solid rgba(255, 217, 0, 0.6);
        outline: 1px solid rgba(255, 217, 0, 0.3);
        box-shadow: 
            0 0 0 8px rgba(0, 0, 0, 0.4),
            0 15px 50px rgba(0, 0, 0, 0.8),
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 5px 15px rgba(255, 217, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        
        display: flex;
        flex-direction: column;
        gap: 18px;
        list-style: none;
        z-index: 1002;
        
        opacity: 1;
        visibility: visible;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Hidden state for mobile menu */
    .nav-menu:not(.active) {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
        transition: all 0.3s ease;
    }

    /* Mobile Menu Background Animation */
    .nav-menu.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, 
            rgba(255, 217, 0, 0.05) 0%, 
            transparent 70%);
        border-radius: 18px;
        z-index: -1;
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% { 
            opacity: 0.3;
            transform: scale(0.95);
        }
        50% { 
            opacity: 0.6;
            transform: scale(1.05);
        }
    }

    /* Mobile Menu Items */
    .nav-menu.active .nav-item {
        width: 100%;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.4s ease forwards;
    }

    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Menu Links */
    .nav-menu.active .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        font-family: var(--font-primary);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 16px 30px;
        
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 217, 0, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
        border-radius: 12px;
        border: 1px solid rgba(255, 217, 0, 0.2);
        
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
        transition: all var(--transition-medium);
        
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    /* Mobile Link Hover Animation */
    .nav-menu.active .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 217, 0, 0.2), 
            transparent);
        transition: left 0.6s ease;
    }

    .nav-menu.active .nav-link:hover::before {
        left: 100%;
    }

    /* Mobile Link Hover State */
    .nav-menu.active .nav-link:hover {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 0.15) 0%,
            rgba(255, 217, 0, 0.1) 50%,
            rgba(255, 217, 0, 0.15) 100%);
        border-color: rgba(255, 217, 0, 0.5);
        color: #ffd900;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 6px 15px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(255, 217, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    /* Active Link State */
    .nav-menu.active .nav-link--active {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 0.9) 0%,
            rgba(255, 149, 28, 0.9) 100%);
        border-color: rgba(255, 217, 0, 0.8);
        color: #000000;
        font-weight: 700;
        box-shadow: 
            0 4px 12px rgba(255, 217, 0, 0.4),
            inset 0 2px 6px rgba(0, 0, 0, 0.1),
            inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    }

    .nav-menu.active .nav-link--active:hover {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 1) 0%,
            rgba(255, 149, 28, 1) 100%);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 6px 18px rgba(255, 217, 0, 0.5),
            inset 0 2px 6px rgba(0, 0, 0, 0.15),
            inset 0 -1px 0 rgba(255, 255, 255, 0.4);
    }

    /* Mobile Link Active Press State */
    .nav-menu.active .nav-link:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.4),
            inset 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Body States */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    body.menu-open .brand-logo {
        transform: scale(1.05) ;
        pointer-events: none;
    }

    /* ===== HERO SECTION ===== */
    .hero-banner {
        margin-bottom: 0;
        position: relative;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 20px;
        z-index: 2;
    }

    .hero-container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        position: relative;
        min-height: auto;
    }

    /* Hero Content */
    .hero-text-content {
        grid-column: unset;
        grid-row: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 20px;
        z-index: 3;
        width: 100%;
        max-width: 100%;
        position: relative;
        transform: none;
        background: rgba(20, 20, 20, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 2px solid rgba(255, 165, 0, 0.3);
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        overflow: hidden;
        order: 1;
    }

    .hero-text-content::before {
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, 
            rgba(255, 140, 0, 0.03) 0%,
            transparent 50%);
    }

    .hero-text-content:hover {
        transform: translateY(-5px) scale(1.02);
        background: rgba(15, 15, 15, 0.9);
        border-color: rgba(255, 165, 0, 0.5);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .hero-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: 1px;
    }

    .hero-main-title::after {
        width: 150px;
        height: 4px;
        bottom: -15px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none; /* Hide decorative stars on mobile */
    }

    /* Hero Buttons */
    .hero-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 10px;
        align-items: center;
    }

    .cta-button--primary,
    .cta-button--secondary {
        font-size: 13px;
        padding: 12px 25px;
        width: 200px;
        max-width: 80%;
        text-align: center;
        border-radius: 15px;
    }

    /* Hero Image */
    .hero-image-wrapper {
        grid-column: unset;
        grid-row: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        position: relative;
        perspective: none;
        width: 100%;
        order: 2;
    }

    .hero-image-wrapper::before {
        width: 300px;
        height: 200px;
        border-radius: 15px;
        filter: blur(15px);
        animation: none;
        transform: translate(-50%, -50%);
    }

    .hero-main-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 15px;
        border: 4px solid rgba(255, 255, 255, 0.8);
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.5),
            0 5px 15px rgba(255, 140, 0, 0.2);
        transform: none;
        filter: contrast(1.05) saturate(1.05);
        transition: all 0.4s ease;
    }

    .hero-main-image:hover {
        transform: scale(1.05);
        border-color: #ffd700;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.6),
            0 10px 20px rgba(255, 140, 0, 0.3);
    }

    /* Social Media */
    .hero-social-links {
        grid-column: unset;
        grid-row: unset;
        display: flex;
        gap: 12px;
        justify-content: center;
        align-items: center;
        z-index: 3;
        margin: 20px 0;
        padding: 12px 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 30px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 140, 0, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transform: none;
        width: fit-content;
        order: 3;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 50%;
        background: linear-gradient(135deg, 
            rgba(255, 140, 0, 0.1) 0%,
            rgba(255, 140, 0, 0.05) 100%);
        border: 2px solid rgba(255, 140, 0, 0.4);
    }

    .social-link:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 
            0 10px 20px rgba(230, 126, 34, 0.4),
            0 0 30px rgba(255, 140, 0, 0.2);
    }

    /* Hero Footer */
    .restaurant-info-footer {
        max-width: 100%;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: transparent;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .info-card {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(20, 20, 20, 0.9) 100%);
        border: 2px solid rgba(255, 140, 0, 0.2);
        border-radius: 15px;
        text-align: center;
        padding: 25px 20px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

    .info-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: rgba(255, 140, 0, 0.5);
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.5),
            0 5px 15px rgba(255, 140, 0, 0.2);
    }

    .info-card-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .info-card-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 8px;
        letter-spacing: 0.2px;
    }

    /* ===== ABOUT SECTION ===== */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-restaurant {
        padding: 60px 0;
    }

    .about-text-content {
        padding: 0;
    }

    .about-main-title {
        font-size: 36px;
    }

    .about-hours-info {
        margin-top: 40px;
    }

    .about-side-image {
        border-radius: 8px;
    }

    .about-side-image:hover {
        transform: scale(1.02) translateY(-2px);
    }

    /* ===== MENU SECTION ===== */
    .section-main-title {
        font-size: 36px;
    }

    .food-categories-gallery {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }

    .food-category-item--featured {
        transform: none;
    }

    .food-category-item--featured:hover {
        transform: translateY(-10px);
    }

    .food-category-image {
        width: 200px;
        height: 200px;
    }

    .food-category-plate {
        width: 230px;
        height: 230px;
    }

    .food-category-plate::before {
        width: 180px;
        height: 180px;
    }

    /* ===== SLIDER SECTION ===== */
    .gallery-slider {
        padding: 40px 0;
        background: rgba(7, 6, 5, 0.932);
        overflow: hidden;
    }

    .slider-container {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        min-height: auto;
        padding: 0;
        width: 100%;
    }

    /* Hide desktop navigation buttons */
    .slider-control {
        display: none;
    }

    /* Mobile slider container */
    .slides-wrapper {
        border-radius: 0;
        max-width: 100%;
        min-height: auto;
        height: auto;
        padding: 0;
        background: transparent;
        border: none;
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .slides-wrapper:hover {
        transform: none;
    }

    /* Mobile slides container with horizontal scroll */
    .slides-container {
        display: flex;
        height: auto;
        gap: 0;
        padding: 0 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        width: 100%;
        box-sizing: border-box;
        scroll-padding: 15px;
    }

    .slides-container::-webkit-scrollbar {
        display: none;
    }

    /* Hide slide backgrounds for mobile */
    .slide-background {
        display: none;
    }

    /* Mobile slide cards */
    .gallery-slide {
        flex: 0 0 calc(100% - 30px);
        width: calc(100% - 30px) !important;
        height: auto !important;
        aspect-ratio: unset !important;
        transform: none !important;
        perspective: none;
        position: relative;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        transition: none;
        margin: 0 15px;
    }

    .gallery-slide--current,
    .gallery-slide--next,
    .gallery-slide--previous,
    .gallery-slide:not([data-current]) {
        transform: none !important;
        filter: none !important;
        pointer-events: auto;
        position: relative;
        display: block;
    }

    .slide-inner {
        transform: none;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        border-radius: 20px;
        border: none;
        overflow: hidden;
        position: relative;
        transition: none;
    }

    .slide-inner::before {
        display: none;
    }

    .slide-image-wrapper {
        height: 300px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
        filter: none !important;
        transition: none;
        border-radius: 40px;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Mobile slide info overlay */
    .slides-info-container {
        display: block;
        height: auto;
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
        bottom: 0;
        z-index: 10;
        width: calc(100% - 30px);
    }

    .slide-info {
        width: calc(100% - 30px) !important;
        height: 100% !important;
        aspect-ratio: unset !important;
        perspective: none;
        position: absolute;
        display: block;
        pointer-events: none;
        left: 0;
        transform: none;
        margin: 0 15px;
    }

    .slide-info--current {
        left: 0;
        transform: none;
    }

    .slide-info--next {
        left: 100%;
        transform: none;
    }

    .slide-info--previous {
        left: -100%;
        transform: none;
    }

    .slide-info-inner {
        transform: none;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .slide-text-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        transform: none;
        padding: 25px;
        background: transparent;
        border-radius: 20px;
        pointer-events: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .slide-text-wrapper .slide-title,
    .slide-text-wrapper .slide-subtitle,
    .slide-text-wrapper .slide-description {
        pointer-events: none;
    }

    .slide-text-wrapper .slide-title,
    .slide-text-wrapper .slide-subtitle,
    .slide-text-wrapper .slide-description {
        opacity: 1 !important;
        transform: none !important;
        transition-delay: 0ms !important;
        display: block;
        margin-bottom: 8px;
    }

    .slide-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        line-height: 1.3;
        white-space: normal;
        margin-bottom: 5px;
        color: #ffffff;
    }

    .slide-subtitle {
        font-size: 1.2rem;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .slide-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 5px;
        white-space: normal;
        color: #ffffff;
    }

    /* Mobile support section */
    .slider-social-support {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    padding: 20px 25px;
    border-radius: 15px;
    transform: none !important;
    width: calc(100% - 60px); /* 30px more margin each side */
    max-width: 300px; /* Fixed maximum width */
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    box-sizing: border-box;
    }

    .slider-social-support::before {
        display: none;
    }

    .support-label {
        font-size: 0.9rem;
        margin-bottom: 15px;
        color: #ffffff;
        text-align: center;
    }

    .support-social-icons {
        gap: 15px;
        justify-content: center;
    }

    .support-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* Remove touch active states */
    .slide-inner:active {
        transform: none;
    }

    .support-social-link:active {
        transform: none;
        background: rgba(255, 255, 255, 0.3);
    }

}

/* =============================================
   SMALL MOBILE RESPONSIVE (480px and below)
   ============================================= */
@media (max-width: 480px) {
    
    /* ===== HEADER SECTION ===== */
    .header-content {
        padding: 0 15px;
    }

    .header-navigation {
        padding: 0 10px;
    }

    .logo-image {
        height: 100px;
    }

    /* Mobile Menu Adjustments */
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 80px 20px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 15px;
    }

    /* ===== HERO SECTION ===== */
    .hero-banner {
        padding-top: 60px;
        padding-bottom: 15px;
    }

    .hero-container {
        padding-left: 15px;
        padding-right: 15px;
        gap: 25px;
    }

    .hero-text-content {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .hero-main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .hero-main-title::after {
        width: 120px;
        height: 3px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 20px;
    }

    .cta-button--primary,
    .cta-button--secondary {
        font-size: 12px;
        padding: 10px 20px;
        width: 180px;
    }

    .hero-main-image {
        max-width: 250px;
        border-radius: 12px;
        border: 3px solid rgba(255, 255, 255, 0.8);
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-social-links {
        padding: 10px 15px;
        gap: 10px;
    }

    .info-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .info-card-title {
        font-size: 1.1rem;
    }

    .info-card-text {
        font-size: 0.85rem;
    }

    /* ===== ABOUT SECTION ===== */
    .about-main-title {
        font-size: 28px;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-side-image:hover {
        transform: none;
    }

    /* ===== RESERVATION SECTION ===== */
    .reservation-title {
        font-size: 28px;
    }

    .form-field input {
        padding: 15px 18px;
    }

    .reservation-submit-btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    /* ===== CUSTOM COMPONENTS ===== */
    /* Custom Clock */
    .time-picker {
        width: 300px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translateY(10px);
    }

    .time-picker.active {
        transform: translateY(0);
    }

    .clock-face {
        width: 180px;
        height: 180px;
    }

    /* Custom Calendar */
    .date-picker {
        right: 0;
        left: auto;
        width: 280px;
    }


    /* ===== SLIDER SECTION EXTRA SMALL ===== */
    .slider-container {
        padding: 0;
    }

    .slides-container {
        padding: 0 10px;
    }

    .gallery-slide {
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px) !important;
        margin: 0 10px;
    }

    .slide-info {
        width: calc(100% - 20px) !important;
        margin: 0 10px;
    }

    .slides-info-container {
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }

    .slide-info--current {
        left: 0;
    }

    .slide-info--next {
        left: 100%;
    }

    .slide-info--previous {
        left: -100%;
    }

    .slide-image-wrapper {
        height: 250px;
    }

    .slide-text-wrapper {
        padding: 20px;
    }

    .slide-title {
        font-size: 1.4rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-description {
        font-size: 0.85rem;
    }

    .slider-social-support {
        padding: 18px 20px;
        margin-top: 25px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .support-social-link {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
}

/* =============================================
   RESERVATION SECTION - MOBILE RESPONSIVE
   ============================================= */

/* Mobile Responsive (768px and below) */
@media (max-width: 768px) {
    
    /* ===== RESERVATION SECTION ===== */
    .table-reservation {
        background: linear-gradient(rgba(255, 244, 181, 0.158), #58585842, rgba(255, 233, 162, 0.185)),
            url('restaurant-background.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Changed from local for better mobile performance */
        min-height: 100vh; /* Full height on mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .reservation-container {
        margin: 20px;
        max-width: 100%;
        width: calc(100% - 40px);
        text-align: center;
        background: rgba(38, 49, 80, 0.85); /* Slightly more opaque for mobile */
        padding: 40px 20px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reservation-container:hover {
        background: rgba(38, 49, 80, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    }

    /* Reservation Header - Mobile */
    .reservation-header {
        margin-bottom: 30px;
    }

    .reservation-label {
        font-size: 12px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    .reservation-title {
        font-size: 32px;
        font-weight: 300;
        color: #ffffff;
        font-family: 'Playfair Display', serif;
        margin: 0;
        line-height: 1.2;
    }

    /* ===== RESERVATION FORM - MOBILE ===== */
    .reservation-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        display: flex;
        flex-direction: column; /* Stack form elements vertically */
        gap: 15px;
        justify-content: center;
    }

    .form-field {
        flex: 1;
        max-width: 100%;
        width: 100%;
        position: relative;
    }

    /* Form Inputs - Mobile */
    .form-field input {
        width: 100%;
        padding: 16px 18px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px; /* Slightly rounded for mobile */
        color: #ffffff;
        font-size: 16px;
        font-weight: 300;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .form-field input::placeholder {
        color: rgba(255, 255, 255, 0.7);
        font-weight: 300;
    }

    .form-field input:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.05);
        transform: scale(1.02);
    }

    /* Number Input - Mobile */
    .guest-counter input {
    padding: 16px 50px 16px 18px;
    border-radius: 8px;
}

.counter-controls {
    right: 10px;
    display: flex;
    flex-direction: row; /* This makes buttons horizontal */
    gap: 4px; /* Space between the buttons */
    align-items: center;
}

.counter-btn {
    width: 32px;
    height: 20px;
    font-size: 12px;
    border-radius: 4px;
}

.counter-icon {
    font-size: 14px; /* Bigger arrow symbols */
    line-height: 1;
    font-weight: bold;
}

    /* ===== CUSTOM TIME PICKER - MOBILE ===== */
    .time-picker {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 90%;
        max-width: 350px;
        background: rgba(20, 20, 20, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 20px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    }

    .time-picker.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

    .clock-face {
        width: 180px;
        height: 180px;
        margin: 0 auto 15px;
    }

    .time-picker-title {
        font-size: 16px;
    }

    .time-hour-display,
    .time-minute-display {
        padding: 6px 10px;
        font-size: 20px;
        min-width: 45px;
    }

    .time-separator {
        font-size: 20px;
    }

    .am-pm-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .time-action-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ===== CUSTOM DATE PICKER - MOBILE ===== */
    .date-picker {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 90%;
        max-width: 320px;
        background: rgba(20, 20, 20, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 15px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    }

    .date-picker.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

    .date-picker-title {
        font-size: 16px;
    }

    .date-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .calendar-day {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .weekday-label {
        font-size: 10px;
        padding: 6px 0;
    }

    /* ===== BOOK BUTTON - MOBILE ===== */
    .reservation-submit-btn {
        padding: 16px 30px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        margin-top: 10px;
    }
}

/* Small Mobile Responsive (480px and below) */
@media (max-width: 480px) {
    
    .table-reservation {
        min-height: 100vh;
        padding: 15px 0;
    }

    .reservation-container {
        margin: 15px;
        width: calc(100% - 30px);
        padding: 30px 15px;
        border-radius: 10px;
    }

    .reservation-title {
        font-size: 28px;
    }

    .reservation-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* Form adjustments for very small screens */
    .form-field input {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .guest-counter input {
        padding: 14px 45px 14px 16px;
    }

    .counter-controls {
        right: 8px;
    }

    .counter-btn {
        width: 28px;
        height: 18px;
        font-size: 10px;
    }

    /* Clock adjustments for small screens */
    .time-picker {
        width: 95%;
        padding: 15px;
        border-radius: 12px;
    }

    .clock-face {
        width: 160px;
        height: 160px;
    }

    .time-picker-title {
        font-size: 14px;
    }

    .time-hour-display,
    .time-minute-display {
        padding: 5px 8px;
        font-size: 18px;
        min-width: 40px;
    }

    .time-separator {
        font-size: 18px;
    }

    .time-action-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Calendar adjustments for small screens */
    .date-picker {
        width: 95%;
        padding: 12px;
    }

    .calendar-day {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .date-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .date-picker-title {
        font-size: 14px;
    }

    /* Button adjustments */
    .reservation-submit-btn {
        padding: 14px 25px;
        font-size: 13px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Custom components positioning */
    .time-picker,
    .date-picker {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    
    .reservation-container {
        margin: 10px;
        width: calc(100% - 20px);
        padding: 25px 12px;
    }

    .reservation-title {
        font-size: 24px;
    }

    .form-field input {
        padding: 12px 14px;
    }

    .time-picker {
        padding: 12px;
    }

    .clock-face {
        width: 140px;
        height: 140px;
    }

    .calendar-day {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    
    .table-reservation {
        min-height: 100vh;
        padding: 10px 0;
    }

    .reservation-container {
        padding: 25px 20px;
    }

    .reservation-title {
        font-size: 28px;
    }

    .time-picker,
    .date-picker {
        max-height: 90vh;
        overflow-y: auto;
    }

    .clock-face {
        width: 150px;
        height: 150px;
    }
}

/* Touch-friendly adjustments */
@media (pointer: coarse) {
    
    .form-field input {
        min-height: 44px; /* Apple's recommended touch target size */
    }

    .counter-btn {
        min-width: 32px;
        min-height: 32px;
    }

    .calendar-day {
        min-width: 30px;
        min-height: 30px;
    }

    .clock-number,
    .clock-dot {
        min-width: 30px;
        min-height: 30px;
    }

    .time-action-btn,
    .reservation-submit-btn {
        min-height: 44px;
    }
}

/* ===== Mobile Responsive Footer ===== */
@media (max-width: 768px) {



    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Newsletter full width + stacked */
    .newsletter-container {
        justify-content: center;
        margin: 0 0 -45px 0;
    }

    .newsletter-section {
        text-align: center;
        padding: 15px;
        margin-top: 0;
    }

    .newsletter-form {
        justify-content: center;
        margin-top: 25px;
    }

    .input-wrapper {
        max-width: 100%;
    }

    .input-wrapper input {
        margin-bottom: 10px;
        font-size: 14px;
        text-align: center;
    }

    /* Footer sections stacked */
    .footer-section {
        margin-top: 0;
        align-items: center;
    }

    .footer-section h3::before,
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        font-size: 18px;
    }

    /* Get in Touch full width */
    .get-in-touch {
        grid-column: auto;
        text-align: center;
    }

    .contact-info p {
        font-size: 14px;
    }

    /* Social icons centered */
    .social-icons {
        margin-bottom: 10px;
        justify-content: center;
    }

    .section-divider2{
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 10px 15px;
        font-size: 15px;
    }

    .newsletter-section h2 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .input-wrapper input {
        font-size: 14px;
        padding: 10px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 16px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
    }
}
