/* Global Styles */
:root {
    --primary-color: #8B4513;  /* Saddle Brown - Royal */
    --secondary-color: #DAA520;  /* Golden Rod - Elegant */
    --accent-color: #800020;  /* Burgundy - Rich */
    --text-color: #333;
    --light-color: #FFF8DC;  /* Corn Silk - Light */
    --dark-color: #2C1810;  /* Dark Brown */
    --gold-gradient: linear-gradient(45deg, #DAA520, #FFD700);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.cursor-follower {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.logo-decoration {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover .logo-decoration {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.link-text {
    position: relative;
    z-index: 1;
}

.link-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.nav-link:hover .link-button {
    opacity: 0.1;
    transform: scale(1);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero p {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 0.5rem;
}

/* Menu Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.section-decoration {
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

.menu-section {
    padding: 6rem 2rem;
    background: var(--light-color);
    position: relative;
}

.menu-categories {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.category-tab:hover::after,
.category-tab.active::after {
    width: 80%;
}

.category-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Menu Item Default (Desktop) Styles */
@media (hover: hover) {
    .menu-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 4/3;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
        will-change: transform;
        height: 100%;
    }

    .menu-item:hover {
        transform: translateY(-5px) translateZ(0);
    }

    .menu-item-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-item:hover .menu-item-overlay {
        opacity: 1;
    }

    .menu-item-overlay h3 {
        color: #FFDF00;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .menu-item-overlay p {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        transform: translateY(20px);
        transition: all 0.3s ease;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .menu-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 4/3;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .menu-item-overlay {
        opacity: 0;
        transform: translateY(20px);
        background: rgba(0, 0, 0, 0.75);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
    }

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

    .menu-item-overlay h3,
    .menu-item-overlay p,
    .menu-item-details {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .menu-item.in-view .menu-item-overlay h3 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .menu-item.in-view .menu-item-overlay p {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .menu-item.in-view .menu-item-overlay .menu-item-details {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    /* Remove all hover effects for mobile */
    .menu-item:hover,
    .menu-item:active,
    .menu-item:focus {
        transform: none;
    }

    .menu-item:hover .menu-item-overlay,
    .menu-item:active .menu-item-overlay,
    .menu-item:focus .menu-item-overlay {
        transform: none;
        opacity: 0;
    }

    .menu-item:hover .menu-item-image img,
    .menu-item:active .menu-item-image img,
    .menu-item:focus .menu-item-image img {
        transform: none;
    }

    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.menu-item-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1) translateZ(0);
}

.menu-item-details {
    color: var(--secondary-color);
    font-size: 1rem;
    display: flex;
    gap: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 2;
}

.menu-category {
    margin-bottom: 3rem;
}

.category-title {
    color: var(--color-primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.menu-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.highlight-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.highlight-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-item p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.2rem;
}

.menu-button-container {
    text-align: center;
    margin-top: 3rem;
}

.menu-button {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) {
    .menu-grid {
        padding: 0 2rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    body {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .menu-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .navbar {
        width: 95%;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

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

    .hero p {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .menu-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .navbar {
        top: 1rem;
    }

    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .menu-section, .about-section, .gallery-section {
        padding: 4rem 1rem;
    }

    .menu-item {
        position: relative;
        transform: none !important;
    }

    .menu-item-overlay {
        opacity: 0;
        transform: translateY(20px);
        background: rgba(0, 0, 0, 0.75);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
    }

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

    .menu-item-overlay h3,
    .menu-item-overlay p,
    .menu-item-details {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .menu-item.in-view .menu-item-overlay h3 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .menu-item.in-view .menu-item-overlay p {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .menu-item.in-view .menu-item-overlay .menu-item-details {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    /* Disable all hover effects on mobile */
    .menu-item:hover {
        transform: none !important;
    }

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

    .menu-item:hover .menu-item-image img {
        transform: none !important;
    }

    .menu-item-image img {
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 576px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .menu-item {
        margin: 0 1rem;
    }

    .menu-item-overlay h3 {
        font-size: 1.5rem;
    }

    .menu-item-overlay p {
        font-size: 1rem;
    }

    .menu-item-details {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .footer-section h3 {
        font-size: 1.6rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.4rem;
        margin: 1rem 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .menu-item-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.75);
        transform: translateY(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-item.active .menu-item-overlay {
        transform: translateY(0);
    }

    .menu-item-overlay h3,
    .menu-item-overlay p {
        transform: none;
        opacity: 1;
    }

    .menu-item {
        position: relative;
        transform: none !important;
    }

    .menu-item-image img {
        transform: none !important;
    }

    .cursor, .cursor-follower {
        display: none;
    }

    * {
        cursor: auto;
    }

    a, button {
        cursor: pointer;
    }
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    background: var(--dark-color);
    color: white;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    background: var(--light-color);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:nth-child(4n-2) {
    grid-row: span 2;
}

.gallery-item:nth-child(4n) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.lightbox-nav button:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-close {
        top: -35px;
        right: 0;
    }
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-section p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .menu-section {
        padding: 4rem 5%;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(n) {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* Diagonal Menu Container */
.diagonal-menu-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 4rem auto;
    max-width: 1400px;
    overflow: hidden;
}

.diagonal-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.diagonal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.diagonal-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.diagonal-item:hover .diagonal-content {
    transform: translateY(-10px);
}

.diagonal-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.diagonal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.diagonal-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.diagonal-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Diagonal Layout */
.diagonal-item.starters {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    top: 0;
}

.diagonal-item.main-course {
    clip-path: polygon(0 33%, 100% 33%, 100% 66%, 0 66%);
    top: 33%;
}

.diagonal-item.desserts {
    clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
    top: 66%;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: relative;
    z-index: 1001;
    padding: 0;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 1000;
        gap: 2rem;
        padding: 2rem;
        margin: 0;
        overflow: hidden;
    }

    .nav-links.active {
        right: 0;
        overflow-y: auto;
    }

    .nav-link {
        font-size: 1.5rem;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        top: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .logo-text {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

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

/* Watermark Styles */
.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure watermark stays on top of all content */
.watermark::before {
    content: 'SPWEBSMITHS';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
    pointer-events: none;
    z-index: 10000;
}

/* Responsive Watermark */
@media screen and (max-width: 1200px) {
    .watermark {
        font-size: 100px;
    }
}

@media screen and (max-width: 992px) {
    .watermark {
        font-size: 80px;
    }
}

@media screen and (max-width: 768px) {
    .watermark {
        font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
    .watermark {
        font-size: 40px;
    }
}