:root {
    --gold: #D4AF37;
    --gold-light: #E8C874;
    --gold-dark: #B38B2D;
    --black: #121212;
    --white: #F8F8F8;
    --crimson: #990000;
    --deep-red: #800020;
}

html {
  overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.gold-gradient {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.3) 50%, rgba(212,175,55,0.1) 100%);
}

.gold-text {
    color: var(--gold);
}

.gold-border {
    border-color: var(--gold);
}

.gold-bg {
    background-color: var(--gold);
    margin: 0 auto;
    padding: 0.5rem;
}

.gold-bg-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.menu-item:hover .menu-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4dbc7e6667b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reservation-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.buffet-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll-down 2s infinite;
}

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

.logo-float {
    animation: float 6s ease-in-out infinite;
}

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

.card-hover {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-hover:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.menu-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.menu-card:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.emboss-effect {
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2), 0 0 16px rgba(0,0,0,0.1);
}

.gold-emboss {
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    color: black;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:active {
    transform: translateY(1px);
}

.btn-gold: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: all 0.5s ease;
}

.btn-gold:hover:before {
    left: 100%;
}

.menu-overlay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.parallax {
    background-attachment: fixed;
}

.floating {
    animation: floating 8s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gold-text-shadow {
    text-shadow: 1px 1px 3px rgba(212, 175, 55, 0.5);
}

.hover-scale {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hover-scale:hover {
    transform: scale(1.03);
}

.section-divider {
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.section-divider-reverse {
    height: 100px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    transform: rotateY(5deg);
}

.logo-container {
    perspective: 1000px;
}

.logo-3d {
    transform-style: preserve-3d;
    animation: rotateLogo 20s infinite linear;
}

@keyframes rotateLogo {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.glow {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.buffet-item {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.buffet-item:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rounded-xl {
    border-radius: 1rem;
}

.rounded-2xl {
    border-radius: 1.5rem;
}

.rounded-3xl {
    border-radius: 2rem;
}

.shadow-3d {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 
                inset 0 -3px 8px rgba(0,0,0,0.1);
}

.hover-grow {
    transition: all 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.textured-bg {
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.btn-crimson {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--deep-red) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(153, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-crimson:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 0, 0, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.skewed-bg {
    transform: skewY(-3deg);
    transform-origin: top left;
}

.skewed-content {
    transform: skewY(3deg);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.meat-grill {
    background-image: url('https://images.unsplash.com/photo-1558030006-450675393462?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1931&q=80');
    background-size: cover;
    background-position: center;
}

.abalone-bg {
    background-image: url('https://images.unsplash.com/photo-1605209672354-92d9e3848a01?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
}

.particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.content-over-particles {
    position: relative;
    z-index: 1;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
}

.text-stroke-thick {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
}

.hover-tilt {
    transition: transform 0.5s ease;
}

.hover-tilt:hover {
    transform: rotate(2deg);
}

.ribbon {
    position: relative;
    padding: 0.5rem 2rem;
    background: var(--gold);
    color: white;
    display: inline-block;
}

.ribbon:before, .ribbon:after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-style: solid;
}

.ribbon:before {
    top: 0;
    left: -1.5em;
    border-width: 1.5em 1.5em 0 0;
    border-color: var(--gold-dark) transparent transparent transparent;
}

.ribbon:after {
    bottom: 0;
    right: -1.5em;
    border-width: 0 0 1.5em 1.5em;
    border-color: transparent transparent var(--gold-dark) transparent;
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.marquee {
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Placeholder for gallery images */
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Map iframe styling */
iframe {
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}