/* =========================================
   VARIABLES & SETUP
   ========================================= */
   :root {
    /* Colors */
    --clr-black: #0a0a0a;
    --clr-dark: #121212;
    --clr-darker: #050505;
    --clr-gold: #d4af37;
    --clr-gold-hover: #b8962e;
    --clr-gold-light: rgba(212, 175, 55, 0.2);
    --clr-ivory: #fffff0;
    --clr-text: #e0e0e0;
    --clr-text-muted: #a0a0a0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-black);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-ivory);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-darker {
    background-color: var(--clr-darker);
}

.w-100 {
    width: 100%;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Hover effects for cursor */
.cursor.hovered {
    width: 0;
    height: 0;
}

.cursor-follower.hovered {
    width: 60px;
    height: 60px;
    background-color: var(--clr-gold-light);
    border-color: transparent;
}

/* =========================================
   TYPOGRAPHY & COMPONENTS
   ========================================= */
.section-title {
    margin-bottom: var(--spacing-xl);
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-black);
    border: 1px solid var(--clr-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--clr-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--clr-black);
    z-index: -1;
    transition: var(--transition-fast);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--clr-ivory);
    border: 1px solid var(--clr-ivory);
}

.btn-secondary:hover {
    background-color: var(--clr-ivory);
    color: var(--clr-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
}

.btn-outline:hover {
    background-color: var(--clr-gold);
    color: var(--clr-black);
}

.btn i {
    margin-left: 8px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--clr-gold);
    line-height: 1;
    letter-spacing: 2px;
}

.logo span {
    font-size: 0.7rem;
    color: var(--clr-ivory);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-ivory);
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-gold);
    transition: var(--transition-fast);
}

.nav-link:not(.btn-outline):hover::after {
    width: 100%;
}

.nav-link:not(.btn-outline):hover {
    color: var(--clr-gold);
}

.nav-link.btn-outline {
    padding: 8px 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--clr-ivory);
    transition: var(--transition-fast);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-content .subtitle {
    margin-bottom: 20px;
}

.hero-content .title {
    font-size: 5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-content .description {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--clr-ivory);
    border-radius: 15px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--clr-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--clr-darker);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--clr-gold);
    color: var(--clr-black);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-heading);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.signature {
    margin-top: 40px;
}

.signature h3 {
    font-family: 'Brush Script MT', cursive, var(--font-heading); /* Add a cursive fallback if desired */
    font-size: 2.5rem;
    color: var(--clr-gold);
    margin-bottom: 5px;
}

.signature span {
    font-style: italic;
    color: var(--clr-text-muted);
}

/* =========================================
   AWARDS SECTION (MICHELIN)
   ========================================= */
.award-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(145deg, #121212, #0a0a0a);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}

.award-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.award-image, .award-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.award-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: floating 4s ease-in-out infinite;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

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

.award-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--clr-text);
}

.award-content .award-highlight {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 25px;
}

@media screen and (max-width: 992px) {
    .award-container {
        flex-direction: column;
        padding: 40px 20px;
    }
}

/* =========================================
   MENU SECTION
   ========================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.menu-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-fast);
}

.menu-card:hover {
    background-color: rgba(255,255,255,0.02);
    transform: translateX(10px);
}

.menu-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-gold);
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-img img {
    transform: scale(1.2) rotate(5deg);
}

.menu-info {
    flex-grow: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-header h3 {
    font-size: 1.5rem;
    color: var(--clr-ivory);
}

.menu-header .price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-gold);
    font-weight: 600;
}

.menu-info p {
    font-style: italic;
    color: var(--clr-text-muted);
}

/* =========================================
   PARALLAX BREAK
   ========================================= */
.parallax-break {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: -2;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    z-index: -1;
}

.parallax-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.5rem;
    font-style: italic;
}

.divider-gold {
    width: 80px;
    height: 2px;
    background-color: var(--clr-gold);
    margin: 0 auto 20px;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    cursor: none; /* Let custom cursor handle this */
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.masonry-item::after {
    content: '\f00e';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--clr-ivory);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 2;
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10,10,10,0.6);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 1;
}

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

.masonry-item:hover::before {
    opacity: 1;
}

.masonry-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.review-card {
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    color: var(--clr-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.quote {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--clr-ivory);
}

.author {
    font-size: 1.2rem;
    color: var(--clr-gold);
}

/* =========================================
   RESERVATION & CONTACT
   ========================================= */
.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--clr-dark);
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-details {
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--clr-gold);
    margin-top: 5px;
}

.contact-details strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-ivory);
    display: block;
    margin-bottom: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    color: var(--clr-ivory);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--clr-black);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--clr-darker);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    color: var(--clr-gold);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--clr-gold);
    color: var(--clr-black);
    border-color: var(--clr-gold);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--clr-ivory);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--clr-gold);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-muted);
}

/* =========================================
   FULL MENU PDF GALLERY
   ========================================= */
.full-menu-pdf {
    background-color: var(--bg-dark);
}

.pdf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pdf-page {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.pdf-page img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.pdf-page:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media screen and (max-width: 992px) {
    .about-container,
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
    
    .masonry-grid {
        column-count: 2;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--clr-darker);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content .title {
        font-size: 3.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Disable custom cursor on mobile */
    body {
        cursor: auto;
    }
    .cursor, .cursor-follower {
        display: none;
    }
    .btn, a {
        cursor: pointer;
    }
}
