/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Dancing+Script:wght@400;600&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000, #000000);
    color: #f9d342;
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    height: 100vh; 
    overflow: hidden;
}

.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/other_img/hero-background.webp'); 
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.parallax-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5); 
    height: 200vh; 
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* Allows positioning of overlay */
    color: #f9d342;
    background-image: url('../img/other_img/hero2_background.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

/* Dark Overlay */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

/* Hero Content */
.hero-content {
    position: relative; 
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); 
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 10px 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}


.hero-content .btn {
    background: #f9d342;
    color: #282828;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

/* Book Your Table Section */
#book-table {
    text-align: center;
    margin: 50px 0;
    padding: 30px 0;


    border-radius: 12px;
}

#book-table h2 {
    font-size: 2.5rem;
    color: #f9d342;
    margin-bottom: 10px;
}

#book-table p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.btn-call {
    background: #f9d342;
    color: #282828;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.btn-call:hover {
    background-color: #fff;
    color: #282828;
    transform: translateY(-5px);
}

/* Find Us Section */
#location {
    text-align: center;
    margin: 60px 0;
    padding: 40px 0;
    background-color: #333;
    color: #f9d342;
}

.map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

iframe {
    width: 90%;
    max-width: 600px;
    border: 0;
    border-radius: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    max-width: 400px;
    margin: auto;
    color: #282828;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

#closeModalBtn {
    background: #f9d342;
    color: #282828;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

#closeModalBtn:hover {
    background: #282828;
    color: #f9d342;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    #hero {
        height: 60vh; 
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
        padding: 10px;
        white-space: normal;
    }

    .btn-call, 
    #hero .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    #book-table {
        padding: 20px;
    }

    .events-grid {
        grid-template-columns: 1fr; 
    }

    .event-item img {
        height: 180px;
    }

    iframe {
        width: 100%;
        height: 300px;
    }

    .menu-grid {
        grid-template-columns: 1fr; 
    }

    .menu-item img {
        height: 250px;
    }

    .modal-content {
        width: 90%;
        padding: 10px;
        color: #fff;
    }
}
