/* styles.css */

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #E0E0E0;
    background-color: #121212;
    line-height: 1.6;
}

a {
    color: #BB86FC;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #D1A4FF;
}

h1, h2, h3, h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Menu */
header {
    background-color: #1E1E1E;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

nav .logo h1 {
    margin: 0;
    font-size: 24px;
    color: #BB86FC;
}

nav .menu-toggle {
    display: none;
    font-size: 28px;
    color: #E0E0E0;
    cursor: pointer;
}

nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

nav .nav-links li {
    margin-left: 30px;
}

nav .nav-links li a {
    color: #E0E0E0;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav .nav-links li a:hover,
nav .nav-links li a.active {
    color: #BB86FC;
}

/* Hero Section */
.hero-section {
    background-image: url('images/hero-image-dark.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #E0E0E0;
    text-align: center;
    padding: 200px 20px 150px;
    margin-top: 70px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7);
    z-index: -1;
}

.hero-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    background-color: #1E3A5F;
    color: #FFFFFF;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #274B7A;
    transform: translateY(-3px);
}

/* Content Sections */
.content-section {
    padding: 100px 20px;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.content-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #BB86FC;
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.content-section h3 {
    font-size: 28px;
    margin-top: 50px;
    color: #BB86FC;
}

.content-section ul {
    list-style-type: none;
    margin-left: 0;
}

.content-section ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.content-section ul li::before {
    content: '\2022';
    color: #BB86FC;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

/* Services */
.service {
    background-color: #1E1E1E;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}

.service h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.service p {
    font-size: 16px;
    color: #CCCCCC;
}

.service ul li::before {
    color: #1E3A5F;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item p {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #FFFFFF;
    font-size: 18px;
    margin: 0;
}

/* Testimonials */
.testimonial {
    background-color: #1E1E1E;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    color: #CCCCCC;
}

.testimonial::before {
    content: '“';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: #1E3A5F;
    opacity: 0.2;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
}

.testimonial h4 {
    text-align: right;
    margin-top: 20px;
    color: #BB86FC;
}

/* Forms */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1E1E1E;
    padding: 40px;
    border-radius: 10px;
}

form label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: #E0E0E0;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="time"],
form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 10px;
    border: 1px solid #272727;
    border-radius: 5px;
    background-color: #121212;
    color: #E0E0E0;
}

form textarea {
    resize: vertical;
}

form button {
    margin-top: 30px;
    width: 100%;
    padding: 15px;
    background-color: #1E3A5F;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #274B7A;
}

/* FAQs */
.faq {
    margin-bottom: 30px;
    border-bottom: 1px solid #272727;
    padding-bottom: 20px;
}

.faq h3 {
    font-size: 22px;
    color: #BB86FC;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq h3::after {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq.open h3::after {
    transform: rotate(180deg);
}

.faq p {
    margin-top: 10px;
    display: none;
}

.faq.open p {
    display: block;
}

/* Footer */
footer {
    background-color: #1E1E1E;
    color: #CCCCCC;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

footer a {
    color: #BB86FC;
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1E3A5F;
    color: #FFFFFF;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.3s ease;
}

#scrollToTop:hover {
    background-color: #274B7A;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section h2 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 32px;
    }

    .content-section h3 {
        font-size: 24px;
    }

    .testimonial p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    nav .menu-toggle {
        display: block;
    }

    nav .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #1E1E1E;
        flex-direction: column;
        align-items: center;
        transition: left 0.3s ease;
        padding-bottom: 20px;
    }

    nav .nav-links.active {
        left: 0;
    }

    nav .nav-links li {
        margin: 10px 0;
    }

    .hero-section {
        padding: 150px 20px 100px;
        margin-top: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 30px;
    }

    .testimonial p {
        font-size: 14px;
    }
    /* Booking Page Specific Styles */

/* Form Group */
.form-group {
    margin-top: 30px;
}

.form-group label {
    font-weight: normal;
    color: #E0E0E0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea {
    background-color: #1E1E1E;
    border: 1px solid #272727;
    color: #E0E0E0;
    padding: 12px 15px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

.services-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.services-group label {
    background-color: #1E1E1E;
    border: 1px solid #272727;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1 1 calc(50% - 15px);
    display: flex;
    align-items: center;
}

.services-group input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #BB86FC;
}

.services-group label:hover {
    background-color: #1E3A5F;
}

@media (max-width: 768px) {
    .services-group label {
        flex: 1 1 100%;
    }
}


}
