@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Great+Vibes&display=swap');

:root {
    --bg-color: #050505;
    /* Midnight Noir */
    --text-color: #ffffff;
    /* Pure White */
    --text-light: #a0a0a0;
    /* Slate Gray */
    --accent-color: #f3b61f;
    /* Golden Yellow from Burger Image */
    --accent-hover: #d99e12;
    --secondary-accent: #e6a82d; /* Honey Gold */
    --card-bg: #111111;
    /* Subtle Surface */
    --border-color: rgba(243, 182, 31, 0.15);
    --glass-bg: rgba(5, 5, 5, 0.85);
    --glass-border: rgba(243, 182, 31, 0.1);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 25px 60px rgba(243, 182, 31, 0.1);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: url("https://www.transparenttextures.com/patterns/felt.png");
    /* Subtle texture for luxury feel */
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.2px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    line-height: 1.2;
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a:hover {
    color: var(--accent-color);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.in-view,
.fade-left.in-view,
.fade-right.in-view,
.scale-up.in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Fallback for visibility if JS takes too long or threshold isn't hit */
.menu-item-list .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Reveal Image Animation */
.reveal-img {
    position: relative;
    overflow: hidden;
}

.reveal-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: right;
    z-index: 10;
}

.reveal-img.in-view::after {
    transform: scaleX(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 50px; /* Reduced from 70px for better mobile/standard fit */
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
    /* Pure white logo */
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px; /* Even smaller for mobile headers */
    }
}

header.scrolled .logo-img {
    height: 36px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    display: inline-block;
}

nav ul li a:hover {
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 60%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--accent-color);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(203, 31, 39, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-hover);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(203, 31, 39, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color) !important;
    box-shadow: none;
}

.btn-outline::before {
    background: var(--accent-color);
}

.btn-outline:hover {
    color: #fff !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    overflow: hidden;
    background-color: #050505;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.7) 40%, rgba(5, 5, 5, 0.1) 100%);
    z-index: 2;
}

.hero-text-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

.hero-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-tag {
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-color);
}

.hero h1 .highlight {
    color: var(--accent-color);
    font-family: 'Great Vibes', cursive;
    font-size: 6rem;
    display: block;
    margin-top: -10px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 500px;
    margin-left: 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-nav {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.dot:hover {
    background: #888;
}

/* Pages General Layout */
.page-header {
    padding: 240px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    /* slightly scaled for parallax effect */
    z-index: -2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 1));
    z-index: -1;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.page-header p {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* Cards (Menu/Info) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 25px;
    color: var(--text-color);
}

.card .icon-wrapper {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    background: rgba(230, 168, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-accent);
    transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease;
}

.card:hover .icon-wrapper {
    background: var(--secondary-accent);
    color: #fff;
    transform: rotateY(180deg);
}

.card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Menu Specific */
.menu-category {
    margin-bottom: 80px;
}

.menu-category-title {
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    position: relative;
}

.menu-item-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
}

.menu-item-info {
    flex: 1;
    padding-right: 20px;
}

.menu-item-info h4 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    /* larger menu title */
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
}

.menu-item-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-style: italic;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-hover);
    /* slightly darker gold for better reading */
    font-size: 1.6rem;
    white-space: nowrap;
}

/* Forms */
.form-card {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    /* Bolder label */
    color: var(--text-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #1a1a1a; /* Dark text for visibility on white inputs */
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(203, 31, 39, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

select.form-control {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23cb1f27%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') !important;
}

/* Contact Info Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info .info-item {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.4rem;
    color: var(--secondary-accent);
    width: 50px;
    height: 50px;
    background: rgba(230, 168, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.info-text p,
.info-text a {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 3.5rem;
    /* Larger heading */
    color: var(--accent-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Footer */
footer {
    background: #111;
    /* Back to professional dark */
    color: #fff;
    padding: 60px 5% 0px;
    border-top: 4px solid var(--accent-color);
    margin-top: 40px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Balanced columns */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo-img {
    height: 65px;
    /* More modern, compact size */
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Ensure logo works on dark background if it's dark */
}

.footer-col h3 {
    color: #fff;
    /* White for dark theme */
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col p,
.footer-col a {
    color: #ccc;
    margin-bottom: 12px;
    display: block;
    font-size: 1rem;
}

.footer-col i {
    color: var(--accent-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(203, 31, 39, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        order: 3;
    }

    nav {
        order: 2;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: var(--shadow-soft);
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        padding: 0 5%;
        text-align: center;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero h1 .highlight {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }

    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 160px 15px 60px;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .container {
        padding: 60px 15px;
    }

    .card {
        padding: 40px 20px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    h2[style*="font-size"] {
        font-size: 2.2rem !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .about-grid {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .form-card {
        padding: 30px 20px;
    }

    .menu-item-info h4 {
        font-size: 1.2rem;
    }

    .menu-category-title {
        font-size: 2.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}