:root {
    --primary-color: #ebd373;
    --white: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a {
    all: unset;
}

/* --- RESET & BASIC --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: url('images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* --- HEADER & NAV --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--primary-color);
    transition: var(--transition);
}

.header .container {
    flex-direction: row;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo img{
    height: 70px;
    object-fit: cover;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav ul li a:hover {
    color: var(--primary-color);
}

/* --- BANNER GRID --- */
.banner {
    padding-top: 80px;
    width: 100%;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 15px; */
    height: 100vh;
    /* padding: 20px; */
}

.item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    /* border-radius: 8px; */
    /* border: 1px solid var(--border-light); */
}

.large-item{
    padding: 50px;
}
.large-item .content .title{
    font-size: 45px;
    color: #ebd373;
}
.large-item .content .subtitle{
    font-size: 20px;
    /* color: #ebd373; */
}
.item::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 70%); */
    background-color: rgba(0, 0, 0, 0.403);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.title {
    color: #ebd373;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.subtitle {
    color: rgba(255, 255, 255, 0.906);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.small-items:hover {
    background: #c5ae69 !important; 

}
.small-items:hover.item::after{
    background: none;
}
.small-items:hover .title{
    color: black;
}
.small-items:hover .subtitle{
    color: black;
}
.btn-hoverv{
    padding: 10px 20px;
    background: black !important; 
    opacity: 0;
    /* transition: var(--transition); */

}
.small-item:hover .btn-hoverv{
    opacity: 1;

    /* width: 80px;
    height:50px; */
}

.btn-hover {
    display: inline-block;
    padding: 10px 25px;
    background: #ebd373;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    /* opacity: 0; */
    transform: translateY(20px);
    transition: var(--transition);
}
.small-item{
    text-align: center;
    /* transition: var(--transition); */

}

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

.small-items-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* gap: 15px; */
}

/* --- GALLERY --- */
.gallery-session {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

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

/* --- MENU SESSION --- */
.menu-session {
    padding: 120px 0 80px 0;
    position: relative;
    z-index: 1;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.4);
}

.menu-content {
    max-width: 1100px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.5s forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 30px;
}

.menu-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

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

.menu-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 700;
}

.menu-price {
    font-weight: 600;
    font-size: 1.25rem;
}

.menu-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-weight: 300;
}

.menu-item.note {
    grid-column: 1 / -1;
    text-align: center;
    border: none;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 20px;
}

/* --- REVIEWS --- */
.review-session {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-radius: 5px;
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-right: 3px;
    text-shadow: 0 0 10px rgba(212, 163, 115, 0.3);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 25px;
}

.review-user {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.user-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- FOOTER --- */
.main-footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-logo {
    font-size: 1.8rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo span {
    font-weight: 300;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.contact-list,
.hours-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 5px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.walk-in {
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p,
.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* --- RESPONSIVE --- */
.menu-toggle {
    display: none;
}

@media (max-width: 992px) {

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

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

    .banner-grid {
        height: auto;
    }

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

    /* .content {
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-end;
    } */
    .title {
        font-size: 16px;
    }

    .item::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.546) 0%, rgba(0, 0, 0, 0.524) 0% 70%);
    }

    .small-item {
        padding: 0;
        padding: 40px 10px;
    }

    .small-item .content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .btn-hover {
        opacity: 1;
        transform: translateY(0);
    }

    .large-item .content .title,.small-item .content .title  {
        font-size: 20px;
    }
      .large-item .content .subtitle,.small-item .content .subtitle {
        font-size: 18px;
    }
    .large-item{
        padding: 20px;
        height: 500px;
    }
     .large-item .content{
        text-align: center;
     }
    .small-items-group{
        grid-template-columns:1fr;
    }
    
    .small-item{
        height: 500px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        color: var(--white);
        font-size: 1.5rem;
    }

    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        transition: 0.4s;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .nav ul li {
        margin: 20px 0;
    }

    .menu-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-legal {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .tab-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}