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

:root {
    --primary-color: #351c4a;
    --primary-light: #42245c;
    --accent-color: #cbc7d1;
    --text-color: #1b1b1b;
    --text-muted: #5e5e5e;
    --light-bg: #f9f8fa;
    --white: #fff;
}

body {
    font-family: 'Gentium Book Basic', Georgia, serif;
    line-height: 1.7;
    color: var(--text-color);
}

h1, h2, h3 {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(53, 28, 74, 0.85), rgba(53, 28, 74, 0.85)),
                url('images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    font-family: 'Gentium Book Basic', Georgia, serif;
    font-style: italic;
}

/* Navigation */
nav {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    font-family: 'Gentium Book Basic', Georgia, serif;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

nav a:hover {
    background: var(--primary-light);
}

/* Sections */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* About */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(53, 28, 74, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery */
.gallery {
    background: var(--light-bg);
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(53, 28, 74, 0.15);
    flex: 1;
}

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

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    /* background: var(--primary-color); */
    background: var(--accent-color);
    display: block;
}

.carousel-arrow {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.carousel-arrow:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Thumbnails */
.carousel-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.thumbnail {
    border: 3px solid transparent;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    background: none;
}

.thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Services */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--accent-color);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(53, 28, 74, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    background: var(--light-bg);
}

.price-category {
    max-width: 700px;
    margin: 0 auto 45px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(53, 28, 74, 0.08);
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 4px;
    margin: 0 -10px;
}

.price-list li:hover {
    background-color: rgba(53, 28, 74, 0.08);
}

.price-list li:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--text-color);
    font-size: 1.5rem;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.service-desc {
    flex-basis: 100%;
    font-size: 1.35rem;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.price-disclaimer {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 40px;
    font-size: 1.1rem;
}

.price-list li:hover .service-desc {
    max-height: 400px;
    opacity: 1;
    padding-top: 10px;
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-info {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.contact-info strong {
    color: var(--text-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

footer p {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 2.4rem;
    }

    nav a {
        padding: 12px 20px;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .thumbnail img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 500px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .service-card h3,
    .price-category h3 {
        font-size: 1.6rem;
    }

    .price-list li {
        flex-direction: column;
        gap: 5px;
    }

    .price {
        align-self: flex-start;
    }
}
