﻿
:root {
    --gold: #c9a96e;
    --gold-hover: #d8b980;
    --dark: #0f0f0f;
    --dark-2: #181818;
    --white: #ffffff;
    --gray: #bcbcbc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

.top-bar {
    background: #000;
    color: var(--gray);
    padding: 8px 0;
    font-size: 14px;
}

.main-navbar {
    transition: .4s;
    padding: 20px 0;
    background: transparent;
}

    .main-navbar.scrolled {
        background: rgba(0,0,0,.95);
        backdrop-filter: blur(10px);
    }

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 500;
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

.btn-gold {
    background: var(--gold);
    color: #000;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
}

    .btn-gold:hover {
        background: var(--gold-hover);
        transform: translateY(-2px);
    }

.section-title {
    font-size: 55px;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card {
    background: var(--dark-2);
    transition: .4s;
    overflow: hidden;
    border-radius: 20px;
}

    .product-card:hover {
        transform: translateY(-10px);
    }

    .product-card img {
        transition: .4s;
    }

    .product-card:hover img {
        transform: scale(1.08);
    }

.footer {
    background: #000;
    padding: 80px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 15px;
    }

.social-icons a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: .3s;
}

    .social-icons a:hover {
        background: var(--gold);
        color: black;
    }

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 32px;
    z-index: 9999;
}

.gallery-image {
    transition: .4s;
}

    .gallery-image:hover {
        transform: scale(1.05);
    }

.reservation-box {
    background: #181818;
    padding: 40px;
    border-radius: 20px;
}

.form-control,
.form-select {
    background: #252525;
    border: 1px solid #333;
    color: white;
}

    .form-control:focus,
    .form-select:focus {
        background: #252525;
        color: white;
        border-color: var(--gold);
        box-shadow: none;
    }




/* HERO SECTION */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.70) 45%, rgba(0,0,0,.30) 100%);
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient( circle, rgba(201,169,110,.25), transparent 70%);
    z-index: -1;
}

.hero-tag {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 25px;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
}

.btn-video {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.play-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 28px;
}

.hero-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 5px;
}

.hero-stat span {
    color: #d5d5d5;
}

/* MOBILE */

@@media(max - width:991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-info {
        gap: 25px;
    }
}

@@media(max - width:768px) {
    .hero-title {
        font-size: 2.7rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-buttons .btn {
            width: 100%;
        }
}








/* ABOUT SECTION */

.about-section {
    background: #111;
    position: relative;
}

.about-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.about-text {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

    .feature-item i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(201,169,110,.15);
        color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .feature-item h5 {
        margin-bottom: 4px;
    }

    .feature-item span {
        color: #bdbdbd;
    }

.about-counters {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.counter-box {
    min-width: 140px;
    padding: 25px;
    border-radius: 15px;
    background: #1a1a1a;
    text-align: center;
}

    .counter-box h3 {
        color: var(--gold);
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .counter-box span {
        color: #d2d2d2;
        font-size: 14px;
    }

/* IMAGE */

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

/* CHEF CARD */

.chef-card {
    position: absolute;
    bottom: 40px;
    left: -50px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: black;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

    .chef-card img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }

    .chef-card span {
        color: #888;
        font-size: 13px;
    }

    .chef-card h5 {
        margin: 0;
    }

    .chef-card small {
        color: #666;
    }

/* MOBILE */

@@media(max - width:991px) {
    .about-title {
        font-size: 2.8rem;
    }

    .chef-card {
        left: 20px;
        bottom: 20px;
    }
}

@@media(max - width:768px) {
    .about-title {
        font-size: 2.2rem;
    }

    .counter-box {
        width: 100%;
    }

    .chef-card {
        position: relative;
        margin-top: 20px;
        left: 0;
        bottom: 0;
    }
}



/* CHEF SPECIAL */

.chef-special-section {
    padding: 120px 0;
    background: #0b0b0b;
}

.section-description {
    color: #bdbdbd;
    max-width: 700px;
    margin: auto;
}

.featured-product {
    background: #181818;
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
}

    .featured-product:hover {
        transform: translateY(-10px);
    }

.product-image {
    position: relative;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: .4s;
    }

.featured-product:hover img {
    transform: scale(1.08);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: black;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.product-content {
    padding: 25px;
}

/* MENU SECTION */

.menu-section {
    padding: 120px 0;
    background: #111;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    border: 1px solid #333;
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    transition: .3s;
}

    .category-btn:hover,
    .category-btn.active {
        background: var(--gold);
        color: black;
        border-color: var(--gold);
    }

.menu-card {
    background: #181818;
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
}

    .menu-card:hover {
        transform: translateY(-8px);
    }

    .menu-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.menu-card-body {
    padding: 25px;
}

.menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.menu-price {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}




/* EXPERIENCE SECTION */

.experience-section {
    position: relative;
    padding: 180px 0;
    background: url('/images/parallax-bg.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.experience-section .container {
    position: relative;
    z-index: 2;
}

.experience-title {
    font-size: 5rem;
    color: white;
    margin: 20px 0;
}

.experience-description {
    color: #d5d5d5;
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

.experience-play-btn {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: black;
    font-size: 50px;
    margin-top: 40px;
    transition: .3s;
}

    .experience-play-btn:hover {
        transform: scale(1.1);
    }

/* RESERVATION */

.reservation-section {
    padding: 120px 0;
    background: #0b0b0b;
}

.reservation-wrapper {
    overflow: hidden;
    border-radius: 30px;
    background: #181818;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.reservation-image {
    position: relative;
    height: 100%;
}

    .reservation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.reservation-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
    padding: 20px 25px;
    border-radius: 15px;
}

    .reservation-badge h3 {
        color: var(--gold);
        margin: 0;
    }

.reservation-content {
    padding: 60px;
}

.reservation-title {
    font-size: 3.5rem;
    margin: 20px 0;
}

.reservation-text {
    color: #cfcfcf;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.reservation-content .form-control,
.reservation-content .form-select {
    height: 58px;
    border-radius: 12px;
}

.reservation-content textarea {
    min-height: 140px !important;
}

/* MOBILE */

@@media(max - width:991px) {
    .experience-title {
        font-size: 3rem;
    }

    .reservation-content {
        padding: 35px;
    }

    .reservation-title {
        font-size: 2.5rem;
    }
}

@@media(max - width:768px) {
    .experience-title {
        font-size: 2.3rem;
    }

    .experience-play-btn {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }

    .reservation-content {
        padding: 25px;
    }
}


/* GALLERY */

.gallery-section {
    padding: 120px 0;
    background: #111;
}

.gallery-description {
    color: #cfcfcf;
    max-width: 650px;
    margin: auto;
}

.gallery-masonry {
    columns: 4;
    column-gap: 20px;
}

.gallery-item {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 20px;
    break-inside: avoid;
}

    .gallery-item img {
        width: 100%;
        transition: .5s;
        border-radius: 20px;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* INSTAGRAM */

.instagram-section {
    padding: 100px 0;
    background: #0b0b0b;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 15px;
}

.instagram-item {
    overflow: hidden;
    border-radius: 20px;
}

    .instagram-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: .4s;
    }

    .instagram-item:hover img {
        transform: scale(1.08);
    }

/* MOBILE */

@@media(max - width:991px) {
    .gallery-masonry {
        columns: 3;
    }

    .instagram-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@@media(max - width:768px) {
    .gallery-masonry {
        columns: 2;
    }

    .instagram-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .instagram-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@@media(max - width:576px) {
    .gallery-masonry {
        columns: 1;
    }
}




/* REVIEWS */

.reviews-section {
    padding: 120px 0;
    background: #111;
}

.google-rating {
    margin-top: 25px;
}

    .google-rating h3 {
        color: var(--gold);
        font-size: 2.5rem;
    }

    .google-rating span {
        color: #d0d0d0;
    }

.review-card {
    max-width: 800px;
    margin: auto;
    background: #181818;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
}

    .review-card p {
        font-size: 1.2rem;
        color: #d0d0d0;
        margin: 25px 0;
    }

    .review-card h5 {
        color: var(--gold);
    }

.stars {
    color: var(--gold);
    font-size: 1.5rem;
}

/* CONTACT */

.contact-section {
    background: #0b0b0b;
}

.contact-content {
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 4rem;
    margin: 20px 0;
}

.contact-text {
    color: #cfcfcf;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

    .contact-item i {
        color: var(--gold);
        font-size: 24px;
        margin-top: 5px;
    }

    .contact-item h5 {
        margin-bottom: 5px;
    }

    .contact-item p {
        color: #cfcfcf;
        margin: 0;
    }

.map-wrapper {
    height: 100%;
    min-height: 650px;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
    }

/* MOBILE */

@@media(max - width:991px) {
    .contact-title {
        font-size: 2.8rem;
    }

    .contact-content {
        padding: 40px 25px;
    }

    .map-wrapper {
        min-height: 450px;
    }
}

@@media(max - width:768px) {
    .review-card {
        padding: 30px;
    }

    .contact-title {
        font-size: 2.2rem;
    }
}




/* HERO IMAGE */

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    transition: .5s;
}

    .hero-image:hover {
        transform: translateY(-10px);
    }

/* FLOATING CARD */

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    color: black;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.floating-icon {
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hero-floating-card h5 {
    margin: 0;
    font-weight: 700;
}

.hero-floating-card span {
    color: #666;
    font-size: 14px;
}

/* MOBILE */

@@media(max - width:991px) {
    .hero-image-wrapper {
        margin-top: 50px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-floating-card {
        left: 20px;
        bottom: 20px;
    }
}

@@media(max - width:768px) {
    .hero-floating-card {
        position: relative;
        margin-top: 20px;
        left: 0;
        bottom: 0;
    }
}



.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

    .about-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 18px;
        color: #d0d0d0;
        line-height: 1.8;
    }

        .about-list li i {
            color: var(--gold);
            font-size: 20px;
            margin-top: 4px;
        }


