/* Footer Styles */
.luxury-footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--darker);
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.luxury-footer p {
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

.signature {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #eae6d9;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.heart {
    display: inline-block;
    font-size: 1.1em;
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Luxury Menu Styles */
:root {
    --gold: #c5a47e;
    --gold-light: #e8c39e;
    --dark: #474544;
    --darker: #474544;
    --light: #eae6d9;
    --light-transparent: rgba(234, 230, 217, 0.03);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
}

/* Content Protection */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Allow selection in input and textarea */
input, textarea, [contenteditable] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Font Face Declarations */
@font-face {
    font-family: 'Maginia';
    src: url('../fonts/Maginia/Maginia.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #474544;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/images/logo/background.PNG');
    background-size: 50%;
    background-repeat: repeat;
    background-position: center center;
    background-attachment: fixed;
    color: #eae6d9;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold: #c5a47e;
    --dark: #474544;
    --light: #eae6d9;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh; /* Reduced by 15% from 100vh */
    min-height: 500px; /* Reduced from 600px to maintain proportion */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    padding: 2rem 0;
    box-sizing: border-box;
    scroll-snap-align: start;
    perspective: 1000px;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    perspective: 1000px;
    opacity: 0.9;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    background: #474544;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    transform: translateZ(0);
    z-index: 2;
}

/* Smooth zoom effect for active slide */
@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Removed zoom animation to prevent image distortion */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 40%, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 20%),
        linear-gradient(225deg, rgba(0,0,0,0.1) 0%, transparent 20%),
        linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 3;
}

/* Hero Content */
/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 4rem;
}

/* Logo Container */
.logo-container {
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    text-align: center;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-logo {
    height: 204px; /* Increased size for better visibility +15% total */
    width: auto;
    margin: 0 auto 2.5rem;
    filter: 
        brightness(0) invert(1) /* Makes logo white */
        drop-shadow(0 4px 20px rgba(0,0,0,0.6));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
    will-change: transform, filter;
    max-width: 90%;
    object-fit: contain;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Fix for webkit rendering */
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    transform: translateZ(0) scale(1.0, 1.0);
}

.site-logo:hover {
    transform: translateY(-5px) scale(1.03);
    filter: 
        brightness(0) invert(1) /* Keeps logo white on hover */
        drop-shadow(0 8px 30px rgba(0,0,0,0.7));
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.divider .line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0 12px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left center;
    will-change: transform, background-color;
}

.logo-container:hover .divider .line {
    width: 80px;
    background: var(--gold);
}

.divider .icon {
    color: var(--gold);
    font-size: 1.4rem;
    transform: rotate(45deg);
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, color;
}

.logo-container:hover .divider .icon {
    transform: rotate(405deg);
    color: white;
}

/* Subtitle */
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 1.5rem 0 0;
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    font-weight: 300;
    position: relative;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, letter-spacing, color;
}

.logo-container:hover .subtitle {
    letter-spacing: 5px;
    color: white;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%;
    height: 1px;
    background: var(--gold);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.logo-container:hover .subtitle::after {
    transform: translateX(-50%) scaleX(1);
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out 1.1s forwards;
}

.hero h1 {
    font-family: 'Maginia', 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0.5rem 0 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    color: #eae6d9;
}

.hero h1 span {
    color: var(--gold);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 4px;
}

/* Responsive adjustments for h1 */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
    cursor: pointer;
}

.scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) translateY(-3px);
}

.scroll-indicator:hover .scroll-arrow span {
    border-color: white;
}

.scroll-arrow {
    margin-top: 0.8rem;
}

.scroll-arrow span {
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: -2px;
    animation: scrollDown 2s infinite;
    opacity: 0;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .site-logo {
        height: 154px; /* +10% total increase */
    }
    
    .hero-overlay,
    .hero-slideshow .slide {
        animation-duration: 25s;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 85vh;
        min-height: 500px;
        padding: 3rem 0 5rem;
    }
    
    .logo-container {
        margin-top: 2.5rem;
    }
    
    .site-logo {
        height: 132px; /* +10% total increase */
    }
    
    .divider .line {
        width: 50px;
    }
    
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
        padding: 0 1rem;
    }
    
    .explore-btn {
        padding: 0.8rem 2rem;
        font-size: 0.75rem;
        bottom: 2rem;
    }
    
    .scroll-indicator {
        bottom: 6rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        overflow: hidden;
    }
    
    .hero-slideshow {
        overflow: visible;
    }
    
    .hero-slideshow .slide {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        transform: scale(1);
        min-height: 100%;
        min-width: 100%;
    }
    
    
    .site-logo {
        height: 66px; /* +10% total increase */
        margin-bottom: 1.5rem;
    }
    
    .divider .line {
        width: 40px;
    }
    
    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2.5px;
        line-height: 1.6;
    }
    
    .explore-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        bottom: 1.5rem;
        min-width: 180px;
        letter-spacing: 1px;
    }
    
    .explore-btn svg {
        width: 16px;
        height: 16px;
        margin-left: 8px;
    }
    
    .scroll-indicator {
        bottom: 5rem;
        font-size: 0.65rem;
    }
    
    .scroll-arrow {
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
        min-height: 500px;
        padding: 2rem 1rem 4rem;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .logo-container {
        margin: 1.5rem 0;
    }
    
    .site-logo {
        height: 99px; /* +10% total increase */
        margin: 0 auto 1.5rem;
        max-width: 90%;
    }
    
    .hero-overlay,
    .hero-slideshow .slide {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        padding: 1.5rem 0.5rem 3rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .logo-container {
        margin: 1rem 0;
    }
    
    .site-logo {
        height: 88px; /* +10% total increase */
        margin: 0 auto 1.5rem;
        max-width: 95%;
    }
    
    .explore-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        min-width: 160px;
        bottom: 1.5rem;
    }
    
    .hero-overlay,
    .hero-slideshow .slide {
        animation-duration: 15s;
    }
    
    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .divider .line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 5.5rem;
        letter-spacing: 4px;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 6rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
}

.hero h1 span {
    color: var(--gold);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.divider .line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 20px;
    opacity: 0.7;
}

.divider .icon {
    margin: 0 5px;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Hero CTA Buttons */
.explore-btn, .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease-out 1.3s forwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-btn {
    background: var(--gold);
    color: #111;
    border: 2px solid var(--gold);
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.explore-btn:hover::before {
    width: 100%;
}

.explore-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.explore-btn svg {
    margin-left: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(0);
}

.explore-btn:hover svg {
    transform: translateX(8px);
}

.explore-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(197, 164, 126, 0.3);
    min-width: 200px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
    overflow: hidden;
    will-change: transform, box-shadow, background-color;
    cursor: pointer;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.explore-btn:hover {
    background: white;
    color: var(--dark);
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 164, 126, 0.4);
}

.explore-btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.explore-btn:active {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.explore-btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.explore-btn:hover span {
    transform: translateX(3px);
}

.explore-btn svg {
    margin-left: 10px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(0);
    will-change: transform;
}

.explore-btn:hover svg {
    transform: translateX(8px);
}

.explore-btn:active {
transform: translateY(0);
box-shadow: 0 2px 10px rgba(197, 164, 126, 0.2);
}

/* Menu Section */
.menu-section {
    width: 100%;
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    min-height: 100vh;
    margin: 0;
    box-sizing: border-box;
}

.menu-section.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
}

.menu-category {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 0;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Maginia', 'Playfair Display', serif;
    font-size: 3rem;
    color: #eae6d9;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-title i {
    font-size: 2.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #eae6d9;
}

.category-title:hover i {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #eae6d9;
}

.category-subtitle {
    font-family: 'Maginia', 'Montserrat', sans-serif;
    color: #eae6d9;
    font-size: 1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.menu-card {
    background: #eae6d9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.menu-cover {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #eae6d9;
    color: #474544;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    margin-top: 0;
    flex-shrink: 1;
    align-items: center;
    text-align: center;
}

.menu-content h3 {
    font-family: 'Maginia', 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #474544;
    margin: 0 0 1.2rem 0;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    display: block;
}

.menu-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #474544;
    transition: width 0.3s ease;
}

.menu-content p {
    font-family: 'Maginia', 'Montserrat', sans-serif;
    color: #474544;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    font-size: 0.9rem;
    font-weight: 300;
    text-align: justify;
    padding: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.8rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.explore-btn:hover {
color: var(--darker);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(197, 164, 126, 0.3);
}

.explore-btn:active {
transform: translateY(0);
box-shadow: 0 2px 10px rgba(197, 164, 126, 0.2);
}

.explore-btn svg {
margin-left: 8px;
transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
stroke: var(--gold);
width: 16px;
height: 16px;
}

.explore-btn:hover svg {
transform: translateX(4px);
stroke: var(--darker);
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #474544;
    color: #eae6d9;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Maginia', 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    border: none;
    width: auto;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(71, 69, 68, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 0.5rem auto 0;
    z-index: 1;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(71, 69, 68, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(71, 69, 68, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(71, 69, 68, 0.3);
    }
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eae6d9;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
    border-radius: 50px;
}

.btn-luxury:hover {
    color: #474544;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(71, 69, 68, 0.4);
}

.btn-luxury:hover::before {
    transform: scaleX(1);
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(234, 230, 217, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -2;
}

.btn-luxury:hover::after {
    width: 200px;
    height: 200px;
}

.btn-luxury:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(71, 69, 68, 0.3);
}


/* Ripple effect */
@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.btn-luxury:active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Menu Navigation */
.menu-navigation {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu-navigation li {
    margin: 0 1.5rem;
}

.menu-navigation a {
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.menu-navigation a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.menu-navigation a:hover,
.menu-navigation a.active {
    color: var(--gold);
}

.menu-navigation a:hover:after,
.menu-navigation a.active:after {
    width: 100%;
}

/* Menu Container */
.menu-container {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.luxury-header {
    text-align: center;
    margin-bottom: 3rem;
}

.luxury-header h2 {
    font-family: 'Maginia', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
    color: #eae6d9;
}

.luxury-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.luxury-header p {
    font-family: 'Maginia', 'Montserrat', sans-serif;
    color: #eae6d9;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Menu Categories */
.menu-category {
    margin-bottom: 4rem;
    position: relative;
    z-index: 0;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Maginia', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #eae6d9;
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: #eae6d9;
}

.category-subtitle {
    font-family: 'Maginia', 'Montserrat', sans-serif;
    color: #eae6d9;
    margin: 0.5rem auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
    max-width: 800px;
    text-align: center;
    font-weight: 300;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem auto;
    padding: 0 1rem;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Menu Card */
.menu-card {
    background: #eae6d9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 69, 68, 0.2);
    margin: 0 auto;
    max-width: 380px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.menu-cover {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.menu-card:hover .menu-cover {
    transform: scale(1.05);
}

.menu-card:hover .menu-content h3:after {
    width: 60px;
}

.menu-card:hover .menu-content p {
    color: #474544;
}

/* Menu content styles are defined earlier in the file */

.menu-content h3 {
    font-family: 'Maginia', 'Playfair Display', serif;
    color: #474544;
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 0.8rem;
    z-index: 2;
    text-align: center;
    display: block;
}

.menu-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #474544;
    opacity: 0.7;
}

.menu-card h3 {
    font-family: 'Maginia', 'Playfair Display', serif;
    margin: 0.5rem 0 1rem 0;
    color: #474544;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: block;
    padding-bottom: 0.5rem;
    text-align: center;
}

.menu-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #474544;
    transition: width 0.3s ease;
}

.menu-card:hover h3::after {
    width: 100%;
}

.menu-content p {
    font-family: 'Maginia', 'Montserrat', sans-serif;
    color: #474544;
    margin: 1rem 0 2rem 0;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

/* Button Styles - Removed duplicate definition */


@media (max-width: 768px) {
    .btn-luxury {
        --btn-padding: 1rem 2.2rem;
        font-size: 1rem;
        margin: 2rem auto 0;
    }
    
    .luxury-header {
        padding: 1.5rem 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 0 0.75rem;
        gap: 1.25rem;
        margin: 1rem 0;
    }
    
    .menu-card {
        margin: 0 auto 1.25rem;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .menu-cover {
        height: 200px;
    }
    
    .menu-content {
        padding: 1.25rem;
    }
    
    .menu-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .btn-luxury {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: 90%;
        max-width: 220px;
        margin: 1rem auto 0;
        display: block;
    }
    
    .luxury-header {
        padding: 1.5rem 1rem;
    }
    
    .luxury-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .luxury-header p {
        font-size: 0.95rem;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .luxury-header h2 {
        font-size: 2rem;
    }
    
    .luxury-header p {
        font-size: 1rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .menu-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .menu-cover {
        height: 200px;
    }
    
    .menu-content {
        padding: 1.5rem;
    }
    
    .menu-content h3 {
        font-size: 1.4rem;
        margin: 1rem 0 0.8rem;
    }
    
    .menu-content p {
        font-size: 1rem;
        margin: 0.5rem 0 1.5rem;
        line-height: 1.6;
    }
    
    .btn-luxury {
        padding: 0.7rem 1.8rem;
        font-size: 0.75rem;
        margin-top: 1rem;
    }
    
    .menu-navigation {
        padding: 0.5rem 0;
    }
    
    .menu-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .menu-navigation li {
        margin: 0.3rem 0.8rem;
    }
    
    .menu-navigation a {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-subtitle {
        font-size: 0.95rem;
        margin: 0.5rem auto 2rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .menu-container {
        padding: 1.5rem 0.5rem;
    }
    
    .luxury-header h2 {
        font-size: 1.8rem;
    }
    
    .menu-cover {
        height: 180px;
    }
    
    .menu-content {
        padding: 1.2rem;
    }
    
    .menu-content h3 {
        font-size: 1.3rem;
    }
    
    .menu-content p {
        font-size: 0.95rem;
    }
    
    .btn-luxury {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .menu-navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-navigation li {
        margin: 0.2rem 0;
    }
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateZ(0);
    }
    50% {
        transform: translateY(-15px) translateZ(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Decorative Elements */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c5a47e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.menu-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Add delay for each card */
.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }