/* Theme Page Styles for Leeds Dance Centre */

/* Smooth Scroll Animation */
html {
    scroll-behavior: smooth;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f8f8;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-orange);
}

.breadcrumb .active {
    color: var(--color-text);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
}

/* Hero Section with Background Image */
.theme-hero {
    position: relative;
    width: 100%;
    /* Calculate height: 95vh minus nav and info banner heights */
    height: calc(95vh - 60px - 104px); /* nav 60px, info banner 104px */
    min-height: 400px; /* Ensure minimum height */
    background-image: url('../images/80s-dance-class-hen-party.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 90s Theme Hero */
.theme-hero-90s {
    background-image: url('../images/90s-dance-hen-party.jpg');
}

/* Belly Dance Theme Hero */
.theme-hero-belly {
    background-image: url('../images/belly-dance-hen-party.jpg');
}

/* Beyoncé Theme Hero */
.theme-hero-beyonce {
    background-image: url('../images/beyonce-dance-hen-party.jpg');
}

/* Burlesque Theme Hero */
.theme-hero-burlesque {
    background-image: url('../images/burlesque-hen-party-dance-class.jpg');
}

/* Dark overlay for better text readability */
.theme-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Container for the title */
.theme-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 245, 228, 0.9); /* Cream transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 90%;
}

/* Hero Title */
.theme-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-text);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

/* Hero Subtitle for SEO */
.theme-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.85;
    margin: 0 auto 2rem;
    max-width: 600px;
    font-weight: 300;
}

/* Button Container */
.theme-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Discrete Buttons */
.theme-hero-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-hero-btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background: rgba(247, 122, 54, 0.05);
}

/* Subtle hover effect */
.theme-hero-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-orange);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.theme-hero-btn:hover::before {
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-hero {
        /* On mobile, info banner is hidden, only nav remains */
        height: calc(85vh - 60px); /* 85vh total on mobile */
        min-height: 400px;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .theme-hero-overlay {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .theme-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .theme-hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .theme-hero-buttons {
        gap: 1rem;
    }

    .theme-hero-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .theme-hero {
        height: calc(80vh - 60px); /* 80vh total on smaller mobile */
        min-height: 350px;
    }

    .theme-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
}

/* Main content wrapper */
.theme-page-content {
    min-height: 60vh;
    background-color: #FAFAFA;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0 2rem;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.price-divider {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-footer {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Content and Form Section */
.content-form-section {
    padding: 2rem 0 4rem;
}

.content-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Left Content */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.package-card-detail {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-title,
.package-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.info-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 1.5rem 0 1rem;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.package-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.package-list .check {
    color: var(--color-orange);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Right Form */
.enquiry-form-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 2rem;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-cream);
    background: var(--color-orange);
    padding: 0.2rem 0.8rem;
    margin: 0 auto 2rem auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    display: inline-block;
    width: fit-content;
}

.form-description {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: -1rem 0 2rem 0;
    padding: 0 1rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 2px rgba(247, 122, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 1rem 2rem;
    background: var(--color-text);
    color: white;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: var(--color-orange);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-form-container {
        grid-template-columns: 1fr;
    }

    .enquiry-form-card {
        position: static;
    }

    .package-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-divider {
        width: 60px;
        height: 1px;
    }

    .pricing-card,
    .info-card,
    .package-card-detail,
    .enquiry-form-card {
        padding: 1.5rem;
    }

    .pricing-title,
    .info-title,
    .package-title {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
        padding: 0.15rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .pricing-section,
    .content-form-section {
        padding: 2rem 0;
    }

    .pricing-container,
    .content-form-container {
        padding: 0 1rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}

/* Party Ideas Section */
.party-ideas-section {
    background: linear-gradient(135deg, #FFE5D9 0%, #FFDAB9 50%, #FFE5D9 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.party-ideas-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.party-ideas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.party-ideas-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: none;
    letter-spacing: 0.02em;
    background: var(--color-cream);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.idea-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.idea-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    width: 1px;
    height: 50%;
    background: var(--color-orange);
}

.idea-number {
    font-size: 4rem;
    font-weight: 100;
    color: var(--color-cream);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Josefin Sans', sans-serif;
}

.idea-heading {
    font-family: sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.idea-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive Party Ideas */
@media (max-width: 968px) {
    .ideas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .idea-card {
        padding: 1.5rem;
    }

    .idea-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .party-ideas-section {
        padding: 3rem 0;
    }

    .party-ideas-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .ideas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .idea-card {
        padding: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .idea-card:not(:last-child)::after {
        right: auto;
        top: auto;
        bottom: -1rem;
        left: 25%;
        width: 50%;
        height: 1px;
    }

    .idea-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .party-ideas-container {
        padding: 0 1rem;
    }

    .party-ideas-title {
        font-size: 1.5rem;
    }

    .idea-number {
        font-size: 2.5rem;
    }

    .idea-heading {
        font-size: 0.85rem;
    }

    .idea-text {
        font-size: 0.9rem;
    }
}

/* Venue Section */
.venue-section {
    background: linear-gradient(to bottom, #FFF5E4, #FAFAFA);
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.venue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.venue-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.venue-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.venue-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.venue-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.venue-details {
    display: grid;
    gap: 1rem;
}

.venue-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.venue-feature i {
    color: var(--color-orange);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.venue-footer {
    text-align: center;
    margin-top: 3rem;
}

.venue-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Design for Venue Section */
@media (max-width: 768px) {
    .venue-section {
        padding: 3rem 0;
    }

    .venue-title {
        font-size: 2rem;
    }

    .venue-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .venue-card {
        padding: 1.5rem;
    }

    .venue-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .venue-container {
        padding: 0 1rem;
    }

    .venue-title {
        font-size: 1.75rem;
    }

    .venue-feature {
        font-size: 0.9rem;
    }
}

/* Venue CTA Button */
.venue-cta {
    text-align: center;
    margin-top: 3rem;
}

.venue-enquiry-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.venue-enquiry-btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background: rgba(247, 122, 54, 0.05);
}

/* Subtle hover effect - same as hero button */
.venue-enquiry-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-orange);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.venue-enquiry-btn:hover::before {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .venue-enquiry-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #FDC331;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative wave pattern */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 50px;
    width: 200px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M0 40 Q 25 20, 50 40 T 100 40 T 150 40 T 200 40' stroke='%23FF6B6B' stroke-width='3' fill='none' opacity='0.5'/%3E%3Cpath d='M0 50 Q 25 30, 50 50 T 100 50 T 150 50 T 200 50' stroke='%23FF6B6B' stroke-width='3' fill='none' opacity='0.5'/%3E%3Cpath d='M0 60 Q 25 40, 50 60 T 100 60 T 150 60 T 200 60' stroke='%23FF6B6B' stroke-width='3' fill='none' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: flex-start;
    position: relative;
}

.testimonial-left {
    padding-right: 0;
    padding-top: 2rem;
    z-index: 2;
    position: relative;
}

.testimonials-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.2;
    background: var(--color-cream);
    padding: 5px 10px;
    display: inline-block;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin-right: -3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-details {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating {
    color: #FDC331;
    font-size: 1.1rem;
}

.testimonial-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
    position: relative;
}

.testimonial-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-rating i {
    margin-right: 0.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-left {
        padding-right: 0;
        padding-top: 0;
    }

    .testimonial-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .testimonial-images {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-image img {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonials-section::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-images {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Call to Action Section */
.cta-section {
    background: var(--color-light-cream);
    padding: 5rem 0;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 100;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--color-text);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-heading {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .cta-heading br {
        display: none;
    }

    .cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .cta-container {
        padding: 0 1rem;
    }
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 4rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e5e5;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-checkbox {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-orange);
}

.faq-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* When checkbox is checked */
.faq-checkbox:checked ~ .faq-question {
    color: var(--color-orange);
    background: #fafafa;
}

.faq-checkbox:checked ~ .faq-question .faq-arrow::before {
    transform: translate(-50%, -30%) rotate(-135deg);
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 300px;
    padding: 0 0 1.5rem 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* Map and Service Areas Section */
.map-section {
    background: #f8f8f8;
    padding: 4rem 0;
    border-top: 1px solid #e5e5e5;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content wrapper for side-by-side layout */
.map-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

/* Service Areas */
.service-areas {
    background: white;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.service-areas-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: left;
}

.service-areas-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: left;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Map Embed */
.map-embed {
    width: 100%;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.area-item {
    text-align: center;
    padding: 1.5rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: var(--color-light-cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.area-item span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    display: block;
}

.service-areas-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 1.25rem;
    background: #fafafa;
    border-left: 3px solid var(--color-orange);
    margin: 0;
    text-align: left;
}

/* Responsive Map Section */
@media (max-width: 968px) {
    .map-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-areas-title {
        text-align: center;
    }

    .service-areas-intro {
        text-align: center;
    }

    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .map-embed {
        min-height: 400px;
    }

    .service-areas-note {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }

    .map-title {
        font-size: 2rem;
    }

    .service-areas {
        padding: 2rem;
    }

    .service-areas-title {
        font-size: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .map-embed {
        min-height: 350px;
    }

    .area-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        padding: 0 1rem;
    }

    .service-areas {
        padding: 1.5rem;
    }

    .service-areas-intro {
        font-size: 0.95rem;
    }

    .area-item span {
        font-size: 1rem;
    }

    .service-areas-note {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .map-embed {
        min-height: 300px;
    }
}

/* ABBA Theme Background */
.theme-hero-abba {
    background-image: url('../images/abba-hen-dance-do.jpg');
}

/* Barbie Theme Background */
.theme-hero-barbie {
    background-image: url('../images/barbie-hen-party-dance.jpg');
}

/* Charleston Theme Hero */
.theme-hero-charleston {
    background-image: url('../images/charleston-dance-hen-party.jpg');
}

/* Dirty Dancing Theme Hero */
.theme-hero-dirty-dancing {
    background-image: url('../images/dirty-dancing-hen-party.jpg');
}

/* Grease Theme Hero */
.theme-hero-grease {
    background-image: url('../images/grease-hen-party.jpg');
}

/* Line Dancing Theme Hero */
.theme-hero-line-dancing {
    background-image: url('../images/line-dancing-hen-party.jpg');
}

/* Mamma Mia Theme Hero */
.theme-hero-mamma-mia {
    background-image: url('../images/mamma-mia-hen-party.jpg');
}

/* Chicago Theme Hero */
.theme-hero-chicago {
    background-image: url('../images/chicago-hen-party.jpg');
}

/* 2000s Theme Hero */
.theme-hero-2000s {
    background-image: url('../images/2000s-hen-party.jpg');
}
