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

body {
    line-height: 1.6;
    background-color: #e6e2d6;
    height: 100%;
}

header {
    background-color: #b5a490;
    color: black;
    padding: 10px 0;
    text-align: center;
    position: fixed; /* Fixed header */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
}
.nav-menu a:hover {
    background-color: #004d40; /* Darker background on hover */
    color: #e0f7fa; /* Lighter text color on hover */
    padding: 10px; /* Optional: add padding for better visual */
    border-radius: 5px; /* Optional: rounded corners on hover */
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

.hero-section {
    padding-top: 100px; /* Add this to make space for the fixed header */
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
}
#about{
    margin: 100px;
    text-align: center;
}
#contact{
    margin-top: 100px;
    text-align: center;
}
#map {
    text-align: center;
    margin: 20px 0;
}


#services{
    text-align: center;
}

/* Basic carousel styling */
.carousel {
    position: relative;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100vh;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
    font-size: 18px;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots/indicators */
.carousel-indicators {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active-dot {
    background-color: #00796b;
}

.service {
    background-color: #b5a490;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
}




/* Health & Massage Page Styles */
#health-intro {
    background-color: #e6e2d6; /* Matches the existing color scheme */
    padding: 60px 20px;
    color: black;
    margin-top: 120px;
}

#health-services, #massage-services {
    padding: 50px 20px;
    background-color: #e6e2d6; /* Matches the body background */
    text-align: center;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #b5a490;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card h3 {
    margin-top: 15px;
    color: black;
}

.service-card p {
    color: #333;
}


/* Media Queries */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
}
/*additional css ends here*/






footer {
    background-color: #b5a490;
    color: black;
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
    flex-shrink: 0 ;
}
/* Ensure other sections take remaining space and not push the footer up */
main {
    flex-grow: 1; /* This forces the main content to take up any extra space */
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-right: 20px;
    }
}
/* Coming Soon Page Styles */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e6e2d6;
    text-align: center;
    padding: 0 20px;
}

.coming-soon-container {
    background-color: #b5a490;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.coming-soon h2 {
    font-size: 36px;
    color: black;
}

.coming-soon p {
    font-size: 18px;
    color: black;
    margin: 20px 0;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.time {
    font-size: 24px;
    color: #fff;
    background-color: #004d40;
    padding: 10px;
    border-radius: 5px;
}

#days, #hours, #minutes, #seconds {
    font-size: 36px;
}

/* Email Subscription */
.email-subscription {
    margin: 20px 0;
}

.email-subscription form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.email-subscription input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.email-subscription button {
    padding: 10px 20px;
    background-color: #004d40;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.email-subscription button:hover {
    background-color: #003d33;
}

/* Footer */
footer {
    background-color: #b5a490;
    color: black;
    padding: 20px;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 20px;
    }

    .countdown {
        flex-direction: column;
    }

    .time {
        margin-bottom: 10px;
    }
    /* Styling the Request Quote Button */
.quote-button {
    display: inline-block;
    background-color: #004d40;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #003d33;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-card {
    width: 30%;
    background-color: #b5a490;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
}

.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

h2 {
    color: #004d40; /* Header color */
}

iframe {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}


}
