/* General Styling */
body {
    font-family: 'Lora', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff5f5;
    color: #2c1a3b;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #6b2d5c;
    color: #f5e6e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav span {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.nav-links li a {
    text-decoration: none;
    color: #f5e6e8;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e6b800;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #f5e6e8;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.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(7px, -7px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(rgba(107, 45, 92, 0.8), rgba(44, 26, 59, 0.8)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #f5e6e8;
    padding: 40px;
}

.hero-img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-right: 30px;
}

.hero-content {
    max-width: 50%;
    text-align: left;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero button {
    background: #e6b800;
    color: #2c1a3b;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero button:hover {
    background: #b38f00;
}

/* Services Section */
#services {
    padding: 60px 20px;
    text-align: center;
}

#services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 30px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.service {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #6b2d5c;
}

.service p {
    font-size: 1rem;
    color: #5a5a5a;
}

/* Portfolio Section */
#works {
    padding: 60px 20px;
    text-align: center;
    background: #f5e6e8;
}

#works h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 30px;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

video {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
#reviews {
    padding: 60px 20px;
    text-align: center;
    background: #fff5f5;
}

#reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 30px;
}

.review-container {
    display: flex;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review {
    flex: 0 0 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.review.active {
    display: block;
}

.review p {
    font-style: italic;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.review h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #6b2d5c;
}

.review-nav {
    margin-top: 20px;
}

.review-nav button {
    background: #e6b800;
    color: #2c1a3b;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.review-nav button:hover {
    background: #b38f00;
}

/* Pricing Section */
#pricing {
    padding: 60px 20px;
    text-align: center;
    background: #f5e6e8;
}

#pricing h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 30px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.pricing-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #6b2d5c;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 1.5rem;
    color: #e6b800;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 1rem;
    color: #5a5a5a;
    margin: 10px 0;
}

.pricing-card button {
    background: #e6b800;
    color: #2c1a3b;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.pricing-card button:hover {
    background: #b38f00;
}

/* Team Section */
#team {
    padding: 60px 20px;
    text-align: center;
}

#team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 30px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.team-member {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #6b2d5c;
}

.team-member p {
    font-size: 1rem;
    color: #5a5a5a;
}

/* About Section */
#about {
    padding: 60px 20px;
    text-align: center;
    background: #fff5f5;
}

#about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 20px;
}

#about p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #5a5a5a;
}

#about img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #ffdde1);
}

#contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b2d5c;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
}

.contact-details p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin: 10px 0;
}

.contact-details strong {
    color: #6b2d5c;
}

#booking-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
}

#booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #6b2d5c;
    margin-bottom: 20px;
}

#booking-form input,
#booking-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#booking-form button {
    background: #e6b800;
    color: #2c1a3b;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#booking-form button:hover {
    background: #b38f00;
}

/* Custom Alert Modal */
.alert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.alert-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

.alert-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #6b2d5c;
}

.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #6b2d5c;
}

/* Footer */
footer {
    text-align: center;
    background: #6b2d5c;
    color: #f5e6e8;
    padding: 20px;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    padding: 10px;
}

.social-icons a {
    background-color: #f5e6e8;
    text-decoration-color: linear-gradient(135deg, #ff9a9e);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #f38e8e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #6b2d5c;
        padding: 20px;
        z-index: 99;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .nav-links.active {
        max-height: 500px; /* Adjusted for eight nav items */
        opacity: 1;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
}