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

body {
    background-color: #161616;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.heading {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subheading {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ccc;
    margin-bottom: 20px;
    cursor: pointer;
}

.yellow-text {
    color: #ffc107;
}

.btn {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.btn:hover {
    background-color: #e0a800;
}

/* Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: bold;
    text-decoration: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Hamburger styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        padding-top: 70px;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .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);
    }
}

/* Add padding to hero section to account for fixed navbar */
.hero {
    padding-top: 70px;
}

/* Video Backgrounds */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    filter: brightness(0.5);
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-background {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Promotion Section */
.promotion {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promotion-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.promotion-img img {
    width: 100%;
    border-radius: 8px;
}

.discount-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.discount-badge span:first-child {
    font-size: 1.5rem;
}

.promotion-content {
    flex: 1;
    min-width: 300px;
}

/* Voucher Section */
.voucher {
    background-color: #1d1d1d;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.voucher-code {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    font-family: monospace;
    letter-spacing: 2px;
}

/* BBQ Party Section */
#bbq-party {
    min-height: 100vh;
    height: auto;
}

.bbq-party {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.bbq-party-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

#bbq-party a {
    margin-top: 25px;
}

/* Menu Section */
.menu-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
    padding: 80px 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.menu-category {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: rgba(29, 29, 29, 0.8);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-10px);
}

.menu-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-category h3 {
    margin-bottom: 10px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.price {
    font-size: 1.5rem;
    color: #ffc107;
    font-weight: bold;
    margin: 10px 0;
}

/* Weekend Event Section */
#weekend-event {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
}

.weekend-event {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    min-height: 90vh;
    height: auto;
    flex-wrap: wrap;
    padding: 60px 0;
}

.event-img {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.event-img img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.event-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.event-date {
    width: 100px;
    height: 100px;
    background-color: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 20px auto;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.8rem;
}

/* Contact Section */
.contact {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.address {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.hours {
    margin-top: 20px;
}

.hours ul {
    list-style: none;
}

.hours li {
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.reservation {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.call-us {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.call-badge {
    width: 60px;
    height: 60px;
    background-color: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotion,
    .weekend-event,
    .contact {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .discount-badge {
        width: 60px;
        height: 60px;
    }
    
    .discount-badge span:first-child {
        font-size: 1.2rem;
    }
    
    .event-img img {
        max-width: 300px;
    }
    
    .menu-category {
        max-width: 100%;
    }
    
    .video-background {
        height: 100%;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 20px;
    }
    
    .discount-badge {
        width: 50px;
        height: 50px;
        left: 10px;
        bottom: 10px;
    }
    
    .discount-badge span:first-child {
        font-size: 1rem;
    }
    
    .discount-badge span:last-child {
        font-size: 0.8rem;
    }
    
    .voucher {
        padding: 20px;
    }
    
    .event-date {
        width: 80px;
        height: 80px;
    }
    
    .event-date .month {
        font-size: 0.9rem;
    }
    
    .event-date .day {
        font-size: 1.5rem;
    }
    
    .call-badge {
        width: 50px;
        height: 50px;
    }
    
    .call-badge svg {
        width: 20px;
        height: 20px;
    }
}