/* Wedding Dance Page Styles */

html {
    scroll-behavior: smooth;
}

/* Theme Hero Section */
.theme-hero {
    background: #000000;
    background-image: url('../images/wedding-dance-liverpool.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
}

.theme-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.theme-hero .hero-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.theme-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    background: transparent;
    border: none;
    color: #EFB11D;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.btn-hero-primary::after,
.btn-hero-secondary::after {
    content: "→";
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    color: white;
}

.btn-hero-primary:hover::after,
.btn-hero-secondary:hover::after {
    transform: translateX(5px);
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    background-color: #f9f9f9;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

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

.breadcrumb-item::after {
    content: "→";
    margin: 0 0.75rem;
    color: #999;
}

.breadcrumb-item:last-child::after {
    display: none;
}

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

.breadcrumb-item a:hover {
    color: #EFB11D;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

/* Info and Booking Section */
.hen-party-info-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Info Content */
.info-content {
    padding-right: 2rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.info-image {
    margin-bottom: 2rem;
}

.info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: white;
    color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EFB11D;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 2rem;
}

.price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.price-item {
    text-align: center;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #EFB11D;
}

.duration {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.price-divider {
    color: #ddd;
    font-size: 2rem;
}

/* Features Lists */
.features-section,
.why-choose-section {
    margin-bottom: 2rem;
}

.features-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li,
.benefits-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list i {
    color: #4CAF50;
    margin-top: 0.2rem;
}

.benefits-list i {
    color: #EFB11D;
    margin-top: 0.2rem;
}

/* Dance Styles Section */
.dance-styles-section {
    margin-top: 2rem;
}

.style-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.style-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.style-card h4 {
    color: #EFB11D;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.style-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Right Column - Booking Form */
.right-column {
    position: sticky;
    top: 100px;
}

.booking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.booking-form-subtitle {
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Form Styles */
.booking-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EFB11D;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #EFB11D;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d49d0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 177, 29, 0.3);
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.contact-text {
    color: #777;
    margin-bottom: 0.5rem;
}

.contact-phone {
    display: inline-block;
    color: #EFB11D;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #d49d0a;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-content {
        padding-right: 0;
    }
    
    .right-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .theme-hero {
        height: auto;
        min-height: 500px;
        padding: 100px 20px 60px;
    }

    .theme-hero .hero-title {
        font-size: 2rem;
    }

    .theme-hero .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .style-cards {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .theme-hero .hero-title {
        font-size: 1.8rem;
    }
}