/* General Styles */
:root {
    --primary-color: #f8c8dc; /* Soft pink */
    --secondary-color: #fff0f5; /* Lavender blush */
    --accent-color: #daa520; /* Gold */
    --text-color: #4a4a4a;
    --heading-color: #333333;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #777;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-book {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(248, 200, 220, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(248, 200, 220, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--heading-color);
    transform: translateY(-3px);
}

.btn-book {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--white);
}

.btn-book:hover {
    background-color: #c78e4d; /* Darker gold */
    color: var(--white);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex; /* Enables flexbox layout */
    align-items: center; /* Vertically aligns items */
    justify-content: space-between; /* Ensures proper spacing between logo, nav, and button */
}

.logo img {
    height: 50px;
}

.nav-links {
    position: absolute; /* Allows the nav-links to be positioned independently */
    left: 50%; /* Moves the nav-links to the center horizontally */
    transform: translateX(-50%); /* Adjusts for perfect centering */
    display: flex; /* Ensures the links are displayed inline */
    justify-content: center; /* Centers the links within the nav */
    align-items: center; /* Vertically aligns the links */
    flex: 1; /* Allows the nav to take up available space */
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.book-button {
    margin-left: auto; /* Pushes the button to the far right */
    display: flex; /* Ensures proper alignment */
    align-items: center; /* Vertically aligns the button */
    justify-content: flex-end; /* Ensures the content inside aligns to the right */
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section Styles */
.hero {
    background-image: url('https://i.pinimg.com/474x/23/3f/2c/233f2c6f9848d790b82bd2fc4ea22542.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 200px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Services Section Styles */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-img img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 15px;
}

.price {
    font-weight: 600;
    color: var(--accent-color);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Section Styles */
.gallery {
    background-color: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin: 0 10px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section Styles */
.testimonials {
    background-color: var(--light-gray);
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-top: 50px;
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-author h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.stars i {
    color: var(--accent-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

.dot:hover {
    background-color: var(--primary-color);
}

/* Book Now Section Styles */
.book-now {
    background-image: url('https://i.pinimg.com/474x/1b/18/6e/1b186ef30d558fbd1710b6c92f10d7cc.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 150px 0;
}

.book-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.book-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section Styles */
.contact {
    background-color: var(--light-gray);
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.contact-info {
    width: 45%;
}

.info-item {
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 15px;
}

.info-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-form {
    width: 45%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-social a {
    margin: 0 10px;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--white);
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: 2px solid var(--white);
    border-radius: 5px 0 0 5px;
    color: var(--white);
    background-color: transparent;
}

.footer-newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: var(--accent-color);
    color: var(--white);
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        background-color: var(--text-color);
    }

    .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);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        text-align: center;
        width: 100%;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
