* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background-color: #F5F5DC; /* Soft Cream */
    color: #4A4A4A; /* Dark Gray */
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #808000;
    color: #F5F5DC;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #F5F5DC;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Cinzel', serif;
}

.nav-links a:hover {
    color: #D4AF37;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #F5F5DC;
    margin: 2px 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile View */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show hamburger icon on mobile */
    }

    .nav-links {
        display: none; /* Hide menu items by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        background-color: #808000;
        padding: 20px 0;
        z-index: 1000; /* Ensure menu appears above other content */
    }

    .nav-links.active {
        display: flex !important; /* Show menu items when toggled */
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
        font-size: 18px; /* Slightly larger for mobile readability */
    }

    .service-img {
        width: 150px;
        height: 100px;
    }

    .package-img {
        width: 250px;
        height: 150px;
    }
}

/* Navbar */
.navbar {
    background-color: #808000; /* Olive Green */
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-img {
    height: 70px;
}

.nav-links a {
    color: #F5F5DC; /* Soft Cream */
    text-decoration: none;
    margin: 0 20px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37; /* Gold */
}

/* Hero Section */
.hero {
    background: url('images/spa-hero.jpg') no-repeat center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F5F5DC;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero h1, .hero h2, .hero .btn {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #D4AF37; /* Gold */
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.btn {
    background-color: #808000; /* Olive Green */
    color: #F5F5DC; /* Soft Cream */
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #D4AF37; /* Gold */
}

/* About Snippet */
.about-snippet {
    background-color: #F5F5DC;
    padding: 50px 20px;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.about-snippet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('https://via.placeholder.com/1920x20?text=Olive+Wave') no-repeat center/cover;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #fff;
}

.services h1, .packages h1, .contact h1, .about h1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: #808000;
    text-align: center;
    margin-bottom: 40px;
}

.service-category h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #4A4A4A;
    margin: 20px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #F5F5DC;
    border: 2px solid #808000;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #808000;
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 15px; /* Increased spacing between the text and button */
}

.service-card .btn {
    display: inline-block; /* Ensure the button behaves as a block element */
    margin-top: 8px; /* Shift the button downwards by ~2mm (8px) */
}
.service-img {
    width: 200px;
    height: 150px;
    object-fit: cover; /* Ensures the image scales properly without distortion */
    border-radius: 10px; /* Matches the card's border-radius */
    margin-bottom: 15px; /* Adds spacing between the image and the text below */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Packages Section */
.packages {
    padding: 50px 20px;
    background-color: #F5F5DC;
}

.package-card {
    background-color: #fff;
    border: 2px solid #808000;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
}

.package-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #808000;
    margin-bottom: 10px;
}

.package-card p {
    margin-bottom: 15px; /* Increased spacing between the text and button */
}

.package-card .btn {
    display: inline-block; /* Ensure the button behaves as a block element */
    margin-top: 8px; /* Shift the button downwards by ~2mm (8px) */
}
.package-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.service-img:hover, .package-img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .service-img {
        width: 150px;
        height: 100px;
    }
    .package-img {
        width: 250px;
        height: 150px;
    }
}
/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #808000;
    border-radius: 5px;
    font-family: 'Lora', serif;
}

.contact-form textarea {
    height: 100px;
}

.contact-details {
    margin-top: 30px;
    font-size: 16px;
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: #F5F5DC;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #808000;
    padding: 20px;
    text-align: center;
    color: #F5F5DC;
}

.footer-links a, .footer-social a {
    color: #F5F5DC;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Cinzel', serif;
}

.footer-links a:hover, .footer-social a:hover {
    color: #D4AF37;
}

.footer p {
    margin-top: 10px;
    font-size: 14px;
}
