:root {
    --bg-color: #0c0c0c;
    --text-color: #f0f0f0;
    --accent-color: #d4af37;
    /* Bronze/Gold */
    --accent-hover: #b5952f;
    --secondary-text: #a0a0a0;
    --surface-color: #1a1a1a;
    --border-color: #333333;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: background var(--transition-fast), padding var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(12, 12, 12, 0.95);
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-cta:hover {
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s ease-out;
    transform: scale(1.05);
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-bg.prev {
    z-index: 2;
    /* Keep outgoing image on top during fade */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-slider {
    display: grid;
    place-items: center;
    margin-bottom: 2.5rem;
    min-height: 180px;
}

.hero-text-item {
    grid-area: 1 / 1;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}

.hero-text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-text-item.prev {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--bg-color);
    z-index: 5;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.section-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--secondary-text);
    line-height: 1.8;
}

/* About */
.about-section {
    background-color: #0f0f0f;
}

/* Services */
.services-section {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 4rem;
}

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    filter: brightness(0.7);
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.service-card:hover .service-info {
    transform: translateY(0);
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.service-card:hover .service-info p {
    opacity: 1;
    transform: translateY(0);
}

/* Event Sizes */
.sizes-section {
    background-color: #0f0f0f;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.size-card {
    background-color: var(--surface-color);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.size-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.size-card h3 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    /* Modern stylistic choice for numbers */
    font-weight: 300;
}

.size-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.size-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--secondary-text);
    font-style: italic;
}

/* Event Types */
.types-section {
    text-align: center;
}

.types-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.type-item span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--secondary-text);
    transition: color 0.4s ease;
}

.type-item span:hover {
    color: var(--accent-color);
}

/* Gallery */
.gallery-section {
    background-color: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact-section {
    padding-bottom: 4rem;
}

.contact-form {
    max-width: 600px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-text);
}

.form-group input,
.form-group select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
}

.btn-submit {
    margin-top: 2rem;
    align-self: center;
    width: 100%;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.footer-area {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile menu overlay */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Page Header */
.page-header {
    padding-top: 15rem;
    padding-bottom: 5rem;
    text-align: center;
    background: linear-gradient(to bottom, #050505 0%, var(--bg-color) 100%);
}

.page-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
}

/* Detailed Menu Categories */
.detailed-menu {
    background-color: #080808;
    padding-bottom: 4rem;
}

.menu-category {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category.reverse {
    flex-direction: row-reverse;
}

.menu-img-container {
    flex: 1;
    height: 500px;
    overflow: hidden;
    position: relative;
    border: 1px solid #222;
}

.menu-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.85);
}

.menu-category:hover .menu-img-container img {
    transform: scale(1.05);
    filter: brightness(1);
}

.menu-details {
    flex: 1;
    padding: 2rem;
}

.menu-details h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.menu-details p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    line-height: 1.8;
}

/* Nav Active State */
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    width: 100%;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        /* simple fix for mobile */
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Menu & Contact Response */
    .menu-category,
    .menu-category.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .menu-img-container {
        height: 300px;
        width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        margin-top: 0;
    }
}