 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: #333;
}


.text-center { text-align: center !important; }
.text-white { color: #fff !important; }
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;           
}

.col {
    padding: 0 8px;
    width: 100%;
    box-sizing: border-box;

}


@media (min-width: 601px) {
    .col.m4 {
        flex: 0 0 33.3333%;    
        max-width: 33.3333%;
    }
    .col.m6 {
        flex: 0 0 50%;          
        max-width: 50%;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


#header {
    height: 60px;                
    width: 100%;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);

    display: flex;                
    align-items: center;          
}

#nav { display: inline-block; }
#nav > li { display: inline-block; }
#nav li { position: relative; }
#nav > li > a { color: #fff; text-transform: uppercase; }

#nav li a {
    text-decoration: none;
    line-height: 46px;
    padding: 0 24px;
    display: block;
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s;
}
#header.w3-bar,
#nav.w3-bar {
    overflow: visible;
}
#nav > li:hover > a,
#nav .subnav li:hover a {
    color: #000;
    background-color: #ccc;
}


#nav .subnav {
    display: none;
    position: absolute;
    top: 100%;          
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    min-width: 160px;
    list-style-type: none;
    z-index: 9999;      
}

#nav .subnav li a {
    display: block;
    background-color: #fff;
}
#nav .subnav a {
    color: #000;
    line-height: 38px;
    padding: 0 12px;
}
#nav li:hover .subnav { display: block; }


.mobile-menu-btn {
    float: right;
    padding: 0 21px;
    cursor: pointer;
    color: #fff;
    line-height: 46px;
    display: none;
}
.mobile-menu-btn:hover {
    background-color: #ccc;
    color: #000;
}


#slider {
    position: relative;
    margin-top: 60px;
}

.slider-img {
    width: 100%;
    height: 50vh; 
    object-fit: cover;
    display: block;
}

#slider .text-content {
    position: absolute;
    bottom: 47px;
    color: #fff;
    width: 100%;
    text-align: center;
    text-shadow: 0 0 10px #000;
}
#slider .text-heading {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
}
#slider .text-description {
    font-size: 15px;
    font-weight: 500;
}

.content-section {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 16px;
}
.section-heading {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    margin: 10px auto;
}

.section-sub-heading {
    font-size: 15px;
    text-align: center;
    margin: 15px 0;
    font-style: italic;
    opacity: 0.8;
}
.about-text {
    font-size: 15px;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 30px;
}


#north { background-color: #e3c6b0; color: #853525; }
#north .section-heading {
    color: #963f2e;
    border-bottom: 2px solid #963f2e;
}

.card-north {
    background-color: #fff;
    border: 1px solid #e78559;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.card-north:hover { transform: translateY(-5px); }
.btn-north {
    background-color: #963f2e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 15px;
}
.btn-north:hover { background-color: #853525; }


#central { background-color: #e5d4e4; color: #041f3c; }
#central .section-heading {
    color: #4d417c;
    border-bottom: 2px solid #4d417c;
}
.card-central {
    background-color: #fff;
    border: 1px solid #dbbda0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.card-central:hover { transform: translateY(-5px); }
.btn-central {
    background-color: #4d417c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 15px;
}
.btn-central:hover { background-color: #2c244d; }


#south { background-color: #ece491; color: #5a4b43; }
#south .section-heading {
    color: #5a4b43;
    border-bottom: 2px solid #5a4b43;
}
.card-south {
    background-color: #fff;
    border: 1px solid #cc9b59;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.card-south:hover { transform: translateY(-5px); }
.btn-south {
    background-color: #cc9b59;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 15px;
}
.btn-south:hover { background-color: #a87b3e; }


.food-img { width: 100%; height: 250px; object-fit: cover; }
.food-desc { padding: 15px; }
.food-desc h3 { margin-bottom: 10px; font-weight: bold; }



#contact { background-color: #fff; color: #000; }
.contact-content { margin-top: 48px; }
.contact-info { font-size: 18px; line-height: 1.6; }
.contact-info i { width: 30px; margin-bottom: 10px; }
.contact-form .form-control {
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 8px;
}
.btn-submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    float: right;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-submit:hover { background-color: #ccc; color: #000; }

#footer {
    padding: 64px 16px;
    text-align: center;
    background-color: #f1f1f1;
}
#footer .socials-list { font-size: 24px; }
#footer .socials-list a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    margin: 0 5px;
}
#footer .socials-list a:hover { color: rgba(0, 0, 0, 0.4); }
#footer .copyright { margin-top: 15px; color: rgba(0, 0, 0, 0.6); }


.modal {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal.open { display: flex; }
.modal-container {
    background: #fff;
    width: 900px;
    max-width: calc(100% - 32px);
    min-height: 200px;
    position: relative;
    animation: modalFadeIn ease 0.5s;
}
.modal-header {
    background: #009688;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    letter-spacing: 4px;
}
.modal-close {
    position: absolute;
    right: 0; top: 0;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    font-size: 20px;
}
.modal-close:hover { background: #ccc; color: #000; }
.modal-body { padding: 16px; }
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-140px); }
    to { opacity: 1; transform: translateY(0); }
}



.ticket-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #ddd;
}

.ticket-list li {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    position: relative;
    font-size: 16px;
}

.ticket-list li:last-child {
    border-bottom: none;
}

.ticket-list .sold-out {
    background-color: #f44336;  
    color: #fff;
    padding: 4px 8px;
    margin-left: 16px;
    font-size: 12px;
    text-transform: uppercase;
}

.ticket-list .badge {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    padding: 4px 10px;
    font-size: 14px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

#north .section-heading,
#central .section-heading,
#south .section-heading {
    display: block !important;
    text-align: center !important;
    width: fit-content;
    margin: 10px auto !important;
}


@media (max-width: 600px) {
    #nav { display: block; }
    #nav > li { display: block; }
    #nav > li:first-child { display: inline-block; }
    #nav .subnav { position: relative; width: 100%; }
    #nav .subnav a { padding-left: 40px; }
    #nav > li:not(:first-child) { display: none; }
    #nav.open > li { display: block; }
    .mobile-menu-btn { display: block; }
    .col { width: 100% !important; margin-top: 16px; }
    .contact-form { margin-top: 16px; }
}
