:root {
    --bg-color: #0c0c0c;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-gold: #d4af37;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Cinematic Background & Lighting */
.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, #1a1a1a 0%, #000000 90%);
    z-index: -2;
}

.ambient-light {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: lightPulse 10s infinite alternate ease-in-out;
}

@keyframes lightPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    position: relative;
}

.content {
    max-width: 600px;
    z-index: 10;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn {
    padding: 1rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    border-radius: 50px;
}

/* Hero Scroller Background */
.scrolling-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.4;
    /* Keep it subtle */
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    /* Fade edges */
}

.scroller-track {
    display: flex;
    width: 500%;
    /* 5 images * 100% */
    height: 100%;
    animation: scrollBackground 30s linear infinite;
}

.scroll-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.5) contrast(1.2);
}

@keyframes scrollBackground {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-80%);
    }

    /* Stop before the last duplicate (4/5 = 80%) */
}

.cta-btn:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Floating Elements Container */
.floating-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 1;
}

.float-item {
    position: absolute;
    font-size: 4rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    opacity: 0.8;
}

/* Specific Positions & Animations for items */
.utensil-1 {
    top: 20%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
    transform: rotate(15deg);
    font-size: 5rem;
}

.utensil-2 {
    bottom: 30%;
    right: 10%;
    animation: float 7s ease-in-out infinite reverse -1s;
    transform: rotate(-10deg);
    color: #ccc;
}

.fruit-1 {
    top: 30%;
    right: 35%;
    animation: float 5s ease-in-out infinite -2s;
    font-size: 3rem;
    filter: sepia(0.5);
}

.cookware-1 {
    bottom: 15%;
    right: 40%;
    animation: float 8s ease-in-out infinite -1s;
    font-size: 8rem;
    opacity: 0.1;
    filter: blur(2px);
}

.leaf-1 {
    top: 15%;
    left: 45%;
    animation: float-drift 9s ease-in-out infinite;
    font-size: 2rem;
    opacity: 0.6;
}

.leaf-2 {
    bottom: 20%;
    left: 10%;
    animation: float-drift 11s ease-in-out infinite reverse;
    font-size: 2.5rem;
    opacity: 0.3;
    filter: blur(4px);
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -25px) rotate(10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Feature Sections (Experience & Design) */
.feature-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    background: transparent;
}

.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

.feature-content {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-body {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.feature-body.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.feature-list i {
    color: var(--accent-gold);
}

.feature-visual {
    flex: 1.2;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}

.feature-visual:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {

    .feature-body,
    .feature-body.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .feature-visual {
        width: 100%;
        height: 300px;
    }
}

/* Menu Section */
.menu-section {
    padding: 6rem 4rem;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-gold);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transition: filter 0.4s;
}

.menu-card:hover .card-image {
    filter: brightness(1.1);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.specialty {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.menu-card:hover .price {
    background: var(--accent-gold);
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        text-align: center;
    }

    .glass-nav {
        padding: 1rem 2rem;
    }

    .float-item {
        opacity: 0.3;
    }

    .menu-section {
        padding: 4rem 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.contact-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-text label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.info-text span {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* Contact Form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-gold);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.mini-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 4rem 2rem;
    }
}