/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation Bar */
nav {
    background: #007bff;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffdd57;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(50%);
}

.hero h1, .hero p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0 1rem;
    z-index: 1;
}

.hero h1 {
    top: 30%;
    font-size: 3vw; /* Adjust based on your preferred ratio */
    line-height: 1.2;
    white-space: nowrap; /* Prevents text from wrapping */
    padding: 0 1rem; /* Optional padding to add some spacing */
}


.hero p {
    top: 70%;
    font-size: 1.5vw;
}

@media (max-width: 768px) {
    .hero img {
        height: 40vh;
    }
    .hero p {
        font-size: 2vw;
    }
}

/* Services Section */
#services {
    padding: 2rem 1rem;
    text-align: center;
    background: #fff;
    border-bottom: 80px solid #007bff;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#services p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

#services ul {
    list-style: none;
}

#services ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    #services {
        padding: 1rem;
    }

    #services h2 {
        font-size: 2rem;
    }

    #services p {
        font-size: 1rem;
    }
}

/* About Section */
#about {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #about {
        padding: 1rem;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 1rem;
    }
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 35%;
    margin: auto;
}

.slide {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4} 
    to {opacity: 1}
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    background-color: rgba(128, 128, 128, 0.518);
    font-weight: bold;
    font-size: 50px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.589);
}

@media (max-width: 768px) {
    .slideshow-container {
        max-width: 90%;
    }

    .prev, .next {
        font-size: 30px;
        padding: 12px;
    }
}

/* Emphasis Elements */
.standard-bounce, .deluxe-bounce, .contact-us, .discount {
    background: #f8f9fa;
    border-left: 5px solid #007bff;
    padding: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.standard-bounce {
    background: #e0f7fa;
    color: #00796b;
}

.deluxe-bounce {
    background: #ffe0b2;
    color: #e8663e;
}

.contact-us {
    background: #fce4ee;
    color: #c21845;
    font-style: italic;
}
.discount {
    background: #f4e4fc;
    color: #b118c2;
    font-style: italic;
}

.standard-bounce:hover, .deluxe-bounce:hover, .contact-us:hover, .discount:hover {
    background: #dbe2e8;
    cursor: pointer;
}

/* Contact Section */
#contact {
    padding: 2rem 1rem;
    background: #e9ecef;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    width: 100%;
    padding: 0.75rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    form {
        padding: 1rem;
    }

    form label {
        font-size: 1rem;
    }

    form input, form textarea, form button {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    footer {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}


/* Style for Date, Start Time, and End Time in a Row */
.datetime-container {
    display: flex;
    gap: 1rem; /* Space between elements */
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.datetime-container label,
.datetime-container input {
    flex: 1; /* Equal width for each item */
    min-width: 120px; /* Prevents inputs from shrinking too much */
}

.inline-fields {
    display: flex;
    gap: 1rem; /* Space between the fields */
    margin-bottom: 1rem;
}

.inline-fields > div {
    flex: 1;
    min-width: 0; /* Prevents fields from stretching too much on smaller screens */
}

.inline-fields label,
.inline-fields input {
    display: block;
    width: 100%; /* Ensures label and input fill their container */
}
