/* =========================================
   GLOBAL RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #333;
}

/* =========================================
   NAVBAR
========================================= */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* Underline hover animation */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s ease;
}

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

.nav-btn {
    padding: 10px 24px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #fff;
}

/* =========================================
   HERO SECTION
========================================= */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 90px; /* navbar height */
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: fadeSlide 20s infinite;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoom 20s infinite;
}

/* Cinematic overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.2)
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #eee;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
}

/* Slide timing */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

@keyframes fadeSlide {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* =========================================
   GENERAL SECTION
========================================= */
section {
    padding: 120px 10%;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

section h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 15px auto 0;
}

/* =========================================
   MENU SECTION
========================================= */
#menu {
    background: #f5f5f5;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.menu-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.menu-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

.menu-card:hover img {
    transform: scale(1.08);
}

.menu-info {
    padding: 25px;
}

.menu-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.menu-info p {
    color: #666;
    font-size: 15px;
}

/* =========================================
   EVENTS SECTION
========================================= */
#events {
    background: #111;
    color: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.event-card {
    background: #1c1c1c;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-info {
    padding: 25px;
    text-align: left;
}

.event-date {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.event-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s ease;
}

.event-btn:hover {
    background: #fff;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: #111;
    padding: 80px 10% 20px;
    color: #ccc;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {

    .main-navbar {
        padding: 0 30px;
    }

    section {
        padding: 80px 6%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
    }

    .event-info {
        text-align: center;
    }
}