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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

@keyframes rotateImage {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: #e0a800;
    animation: bounce 0.5s ease-out;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* 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;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.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);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

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

/* 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;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

.promotion-img {
    flex: 1;
    min-width: 300px;
    position: relative;
    animation: slideInLeft 0.8s ease-out;
}

.promotion-img img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.promotion-img img:hover {
    transform: scale(1.05);
}

.promotion-content {
    flex: 1;
    min-width: 300px;
    animation: slideInRight 0.8s ease-out;
}

.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;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Voucher Section */
.voucher {
    background-color: #1d1d1d;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out 0.3s backwards;
    transition: transform 0.3s ease;
}

.voucher:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.voucher-code {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    font-family: monospace;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite;
}

/* 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;
    animation: fadeInUp 0.8s ease-out;
}

#bbq-party a {
    margin-top: 25px;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.menu-section .heading,
.menu-section .subheading {
    animation: fadeInUp 0.8s ease-out;
}

section .heading {
    animation: fadeInUp 0.8s ease-out;
}

section .subheading {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* 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;
    animation: slideUp 0.6s ease-out backwards;
}

.menu-category:nth-child(1) {
    animation-delay: 0s;
}

.menu-category:nth-child(2) {
    animation-delay: 0.1s;
}

.menu-category:nth-child(3) {
    animation-delay: 0.2s;
}

.menu-category:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

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

.menu-category:hover .menu-img {
    transform: scale(1.1);
}

.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;
    animation: slideInLeft 0.8s ease-out;
}

.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;
    transition: transform 0.6s ease;
}

.event-img img:hover {
    transform: scale(1.05) rotateY(2deg);
}

.event-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    animation: slideInRight 0.8s ease-out;
}

.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;
    animation: bounce 2s ease-in-out infinite;
}

.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;
    animation: slideInLeft 0.8s ease-out;
}

.reservation {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
    animation: slideInRight 0.8s ease-out;
}

.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);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background-color: #444;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    transform: scale(1.02);
}

.call-us {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.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;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeInUp 0.4s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #161616;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border: 1px solid #333;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ffc107;
}

.close-modal {
    background: none;
    border: none;
    color: #ffc107;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: white;
}

.currency-toggle {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.currency-btn {
    background-color: #333;
    color: white;
    border: 2px solid #ffc107;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.currency-btn:hover {
    background-color: #ffc107;
    color: #000;
}

.currency-btn.active {
    background-color: #ffc107;
    color: #000;
}

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.menu-item {
    background-color: #1d1d1d;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease-out backwards;
    border: 1px solid #333;
    cursor: pointer;
}

.menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-item:nth-child(3) { animation-delay: 0.15s; }
.menu-item:nth-child(4) { animation-delay: 0.2s; }
.menu-item:nth-child(5) { animation-delay: 0.25s; }
.menu-item:nth-child(6) { animation-delay: 0.3s; }
.menu-item:nth-child(7) { animation-delay: 0.35s; }
.menu-item:nth-child(8) { animation-delay: 0.4s; }

.menu-item:hover {
    transform: translateY(-15px);
    border-color: #ffc107;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

.menu-item-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffc107;
}

.menu-item p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.4;
}

.menu-item-price {
    font-size: 1.5rem;
    color: #ffc107;
    font-weight: bold;
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #e0a800;
}

/* ===== PRODUCT DETAIL MODAL STYLES ===== */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    overflow-y: auto;
    animation: fadeInUp 0.4s ease-out;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-content {
    background-color: #161616;
    border-radius: 15px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border: 1px solid #333;
}

.close-product-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffc107;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-product-modal:hover {
    transform: rotate(90deg);
    color: white;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-detail-img {
    text-align: center;
}

.product-detail-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.product-detail-info {
    padding: 20px;
}

#productDetailName {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.product-detail-price {
    font-size: 2rem;
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 25px;
}

.product-description h3 {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-description p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.product-actions {
    margin: 25px 0;
}

.buy-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.product-reviews {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.product-reviews h3 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.reviews-container {
    margin-bottom: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.review {
    background-color: #1d1d1d;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #ffc107;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    color: #ffc107;
}

.review-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.add-review {
    background-color: #1d1d1d;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.add-review h4 {
    color: #ffc107;
    margin-bottom: 10px;
}

#reviewText {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    resize: vertical;
    margin-bottom: 10px;
}

#reviewText:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.reviews-container::-webkit-scrollbar {
    width: 6px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #333;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-modal-content {
        padding: 20px;
    }

    #productDetailName {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }

    .close-product-modal {
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }

    .product-reviews {
        margin-top: 20px;
    }

    .reviews-container {
        max-height: 250px;
    }
}

/* 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;
    }

    .modal-content {
        padding: 20px;
        max-width: 95vw;
    }

    .full-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .menu-item-img {
        height: 150px;
    }

    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .modal-header .heading {
        font-size: 1.5rem;
    }

    .close-modal {
        align-self: flex-end;
    }

    .currency-toggle {
        justify-content: space-around;
    }
}

@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;
    }

    .modal-content {
        padding: 15px;
        margin: 10px;
    }

    .full-menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-img {
        height: 180px;
    }

    .modal-header .heading {
        font-size: 1.2rem;
    }

    .currency-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .close-modal {
        font-size: 1.5rem;
    }
}