/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Kode+Mono:wght@400..700&family=Moterostat:wght@400..700&display=swap");

/* Global Color Variables */
:root {
    --primary-color: #d32f2f;       /* Bold Red */
    --secondary-color: #ffffff;     /* White */
    --text-color: #212121;          /* Almost Black for body text */
    --muted-text-color: #757575;    /* Gray for less prominent text */
    --background-color: #f9f9f9;    /* Light Gray Background */
    --accent-color: #000000;        /* Black for buttons, headings, hover etc */
    --panel-bg: #ffffff;            /* White panels/cards */
    --form-bg: #fdfdfd;             /* Slightly off-white for forms */
    --box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Deeper black shadow */
}


/* Base Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
	scroll-padding-top: 100px; /* Adjust based on navbar height */
}

/* Floating Navbar: Modern Design */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    margin: 10px auto;
    max-width: 95%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Glass effect */
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Brand Styling */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.navbar-brand img:hover {
    opacity: 1;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px 20px;
        margin: 10px;
        width: calc(100% - 20px);
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 12px;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* Slider Container */
.swiper-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Each Slide */
.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slide Image - Responsive and fills container */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill and crop nicely */
    display: block;
}

/* Slide Text Overlay */
.slide-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

/* Heading and Paragraph */
.slide-text h2 {
    font-size: 2.5rem;
    margin: 0 0 10px;
}

.slide-text p {
    font-size: 1.1rem;
    margin: 0;
}

/* Tablets */
@media (max-width: 1024px) {
    .slide-text {
        bottom: 15%;
        width: 85%;
    }

    .slide-text h2 {
        font-size: 2.2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .slide-text {
        bottom: 20%;
        width: 90%;
        padding: 15px;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 0.95rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .slide-text {
        bottom: 15%;
        width: 95%;
        padding: 10px;
    }

    .slide-text h2 {
        font-size: 1.6rem;
    }

    .slide-text p {
        font-size: 0.9rem;
    }
}

/* Footer */
#footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.8rem;
    padding: 10px;
    text-align: center;
}

.footer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    #footer {
        flex-direction: column;
        font-size: 0.7rem;
    }

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

    .footer-credit {
        margin-top: 10px;
    }
}

/* Panels */
.panel {
    background-color: var(--panel-bg);
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.panel-heading {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 18px;
    font-weight: 600;
}

.panel-title {
    margin: 0;
    font-size: 1.1rem;
}

.panel-body {
    background-color: var(--form-bg);
    padding: 20px;
    line-height: 1.6;
}

/* Forms */
.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(43, 48, 135, 0.3);
    outline: none;
}

.help-block {
    color: #d9534f;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Buttons */
.form-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.form-btn:hover {
    background-color: #3ea64c;
}

.btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Breadcrumbs */
.breadcrumb-wrapper {
    width: 100%;
    height: 300px;
    background-color: var(--theme2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.breadcrumb-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-items li {
    display: inline;
    margin-right: 10px;
}

.breadcrumb-items li a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-items li a:hover {
    color: var(--accent-color);
}

/* Utility */
.bg-primary { background-color: var(--primary-color) !important; color: var(--secondary-color); }
.text-primary { color: var(--primary-color) !important; }
.text-muted { color: var(--muted-text-color) !important; }

/* Navigation Text (Two Lines) */
.navbar-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.navbar-subtext {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--muted-text-color);
    margin-top: -2px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.95); }
    to { transform: scale(1); }
}


.slide-logo-zoom {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: zoomInLogo 2s ease-out forwards;
    width: 90vw;
    max-width: 850px;
}

.slide-logo-zoom img {
    width: 100%;
    height: auto;
    opacity: 0;
    animation: fadeInLogo 2s 0.5s forwards;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
}

/* Zoom in animation */
@keyframes zoomInLogo {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Fade in effect */
@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

/* Extra responsiveness for small screens */
@media (max-width: 768px) {
    .slide-logo-zoom {
        top: 25%;
        width: 80vw;
    }
}

@media (max-width: 480px) {
    .slide-logo-zoom {
        top: 20%;
        width: 75vw;
    }
}


    .movie-thumbnails {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .movie-thumbnails img {
        width: 100px;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s;
    }

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

 .book-now {
    margin-top: 30px;
    text-align: center;
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 18px 36px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.book-now-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* Responsive full-width on small screens */
@media (max-width: 600px) {
    .book-now-btn {
        width: 90%;
        font-size: 18px;
        padding: 16px 0;
    }
}


/* Overlay Style */
.overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    z-index: 999; /* Make sure it's on top of other elements */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Active overlay */
.overlay.active {
    display: block;
    opacity: 1;
}

/* Ensure the menu and navbar are visible above the overlay */
.navbar {
    z-index: 1000;
}
