/* ================= RESET & VARIABLES ================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #0a0705;
    --bg-surface: rgba(25, 18, 14, 0.6);
    --bg-surface-hover: rgba(40, 30, 24, 0.8);
    --gold: #d4af37;
    --gold-hover: #f1c94b;
    --caramel: #b87333;
    --text-main: #fcfcfc;
    --text-muted: #dcdcdc;
    --border-glass: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* Add a subtle background glow */
body::before {
    content: '';
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(184, 115, 51, 0.05), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Typography Overrides */
h1, h2, h3, .logo-text {
    font-family: "Playfair Display", serif;
}

/* ================= UTILITIES ================= */
.button {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--caramel));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit';
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.button.secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: none;
}
.button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= NAVBAR ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}
header.scrolled {
    background: rgba(10, 7, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.5rem 0;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

header.scrolled .navbar {
    padding: 0.8rem 2rem;
}

.logo-text {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 400;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ================= SECTIONS ================= */
section {
    padding: 6rem 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-details {
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Outfit';
}

.hero-description {
    font-size: 1.15rem;
    color: #aeaeae;
    margin-bottom: 2.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.12;
    border-radius: 50%;
    z-index: -1;
}

.hero-image-wrapper img {
    width: 480px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* ================= ABOUT ================= */
.about-section {
    background: var(--bg-dark);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-details {
    flex: 1;
}

.about-details h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-details p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-image-wrapper img {
    width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: transform 0.5s;
    border: 1px solid rgba(255,255,255,0.05);
}
.about-image-wrapper img:hover {
    transform: scale(1.02);
}

/* ================= MENU ================= */
.menu-section .section-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.menu-card {
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.menu-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.6s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    background: var(--bg-surface-hover);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.menu-card:hover::before {
    left: 100%;
}

.menu-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.menu-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.menu-card span {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    background: rgba(212, 175, 55, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

/* ================= RATINGS ================= */
.ratings-section {
    background: url('images/gallery-1.jpg') no-repeat center fixed;
    background-size: cover;
    position: relative;
}
.ratings-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 7, 5, 0.85); /* Dark overlay */
}

.rating-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rating-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 2.5rem;
    width: 340px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.rating-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
}

.rating-card p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.rating-card span {
    font-size: 1.3rem;
    letter-spacing: 2px;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(40%) brightness(0.8);
    cursor: crosshair;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 2;
    position: relative;
}

/* ================= CONTACT ================= */
.contact-section .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-main);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    align-self: flex-start;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-content, .about-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-image-wrapper img { width: 400px; }
    .about-image-wrapper img { width: 400px; }
    .buttons { display: flex; justify-content: center; gap: 1rem; }
    .button { margin-right: 0; }
    .contact-form button { align-self: center; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        background: rgba(10, 7, 5, 0.98);
        width: 100vw; height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        z-index: 99;
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.5rem; }
    .hero-title { font-size: 2.8rem; }
    section { padding: 5rem 1.5rem; }
}

/* ================= HAMBURGER ANIMATION ================= */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}
