/* ================================================
   INDEX PAGE - Specific Styles
   ================================================ */

/* ================================================
   Hero Section
   ================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-0);
    overflow: hidden;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-xl);
}

.hero-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: var(--spacing-xl);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   Article Section
   ================================================ */

.article-section {
    padding: 80px 120px;
    background: #faf8f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    padding: 0 60px;
}

.article-left {
    padding-right: 20px;
}

.article-header {
    margin-bottom: 40px;
}

.accent-line {
    width: 100%;
    height: 3px;
    background: #B3005E;
    margin-bottom: 25px;
}

.article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
}

.highlight-secondary {
    color: #B3005E;
    display: inline;
}

.article-date {
    font-size: 2.2rem;
    font-weight: 400;
    display: inline;
    font-style: normal;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.article-content {
    font-family: 'Crimson Text', Georgia, serif;
    color: #333;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.article-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.article-content .highlight {
    color: #B3005E;
    font-weight: 500;
}

.article-right {
    position: sticky;
    top: 100px;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ================================================
   Class Information Section
   ================================================ */

.class-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

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

.class-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    font-weight: 500;
}

.class-title-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.class-subtitle {
    font-size: var(--text-xl);
    color: var(--accent-color);
    font-weight: 500;
}

.class-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.class-info-minimal {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.class-details-header {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.class-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.class-meta {
    display: flex;
    gap: var(--spacing-lg);
    color: var(--gray-medium);
    font-size: var(--text-sm);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.class-schedule {
    margin-bottom: var(--spacing-lg);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-icon {
    color: var(--accent-color);
    font-size: var(--text-lg);
    width: 24px;
    text-align: center;
}

.schedule-text strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.25rem;
}

.schedule-text span {
    color: var(--gray-medium);
    font-size: var(--text-sm);
}

.class-description {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.class-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
}

.detail-item i {
    color: #B3005E;
    width: 20px;
    text-align: center;
}

.detail-text {
    color: #666;
}

.class-pricing {
    margin: 30px 0;
}

.class-pricing h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.price-box {
    background: #B3005E;
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.95rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.course-dates {
    margin-top: 30px;
}

.course-dates h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.dates-list {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #666;
}

.class-action {
    margin-top: 25px;
}

.class-action .btn-dark {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.class-action .btn-dark:hover {
    background-color: white;
    border-color: #B3005E;
    color: #B3005E;
    transform: translateY(-2px);
}

.date-item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.course-label {
    color: #B3005E;
    font-weight: 500;
}

.course-date {
    color: #333;
}

.booking-form-minimal {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-title-minimal {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.5;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row input,
.form-row select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #B3005E;
}

.btn-submit-minimal {
    background: #B3005E;
    color: white;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
    width: 100%;
}

.btn-submit-minimal:hover {
    background: #000000;
    border: 2px solid #ffffff;
    color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 0, 94, 0.3);
}

/* ================================================
   Performers Section
   ================================================ */

.performers-section {
    padding: 80px 20px;
    background-color: white;
}

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

.performers-header {
    text-align: center;
    margin-bottom: 60px;
}

.performers-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 0 auto;
    max-width: 1000px;
}

.performer-card {
    text-align: center;
    padding: 20px;
}

.performer-image {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performer-card:hover .performer-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.performer-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.performer-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 80px;
}

.performer-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.performer-link:hover {
    color: #B3005E;
}

/* ================================================
   Shows Section
   ================================================ */

.shows-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
    position: relative;
}

.shows-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: visible;
}

.shows-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.shows-image-box {
    width: 100%;
    max-width: 450px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background: #B3005E;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.shows-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shows-info {
    position: relative;
    padding: 40px 40px 40px 0;
    z-index: 2;
}

.shows-info::after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 60px;
    width: 200px;
    height: 120px;
    background: rgba(179, 0, 94, 0.15);
    border-radius: 8px;
    z-index: 0;
}

.shows-accent-line {
    width: 100%;
    height: 3px;
    background: #B3005E;
    margin-bottom: 25px;
    position: relative;
    z-index: 100;
    display: block;
}

.shows-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 500;
}

.shows-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.shows-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 600px;
}

/* Abstract decorative element added via ::before pseudo-element on .shows-info */

.btn-discover {
    display: inline-block;
    background: #B3005E;
    color: white;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.btn-discover:hover {
    background: #000000;
    border: 2px solid #ffffff;
    color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 0, 94, 0.3);
}

/* Shows section styles cleaned up */

/* ================================================
   Testimonials Section
   ================================================ */

.testimonials-section {
    padding: 80px 20px;
    background-color: white;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonials-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #f5c6d6;
    line-height: 0.5;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 120px;
}

.testimonial-footer {
    margin-top: auto;
}

.author-name {
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.author-location {
    color: #999;
    font-size: 0.85rem;
    margin: 0 0 15px 0;
}

.testimonial-stars {
    color: #B3005E;
    font-size: 0.9rem;
}

.testimonial-stars i {
    margin-right: 2px;
}

/* ================================================
   CTA Section
   ================================================ */

.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/Burlesque-dance-Classes-in-manchester\ \(1\)\ \(1\).jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-header h2,
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    color: var(--light);
    margin-bottom: var(--spacing-lg);
}

.cta-header p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: var(--text-2xl);
    color: var(--accent-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.cta-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--text-lg);
    color: var(--light);
}

.cta-feature i {
    color: var(--accent-color);
    font-size: var(--text-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   Location Section
   ================================================ */

.location-section {
    padding: var(--spacing-4xl) 0;
    background-color: var(--gray-light);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.location-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.location-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.location-header p {
    font-size: var(--text-xl);
    color: var(--gray-medium);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.location-info {
    background: var(--light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.location-card {
    background: var(--light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.location-info h3,
.location-card h2 {
    font-size: var(--text-2xl);
    color: var(--dark);
    margin-bottom: var(--spacing-lg);
}

.location-subtitle {
    font-size: var(--text-lg);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
}

.location-details,
.studio-details {
    color: var(--gray-medium);
    line-height: 1.8;
}

.location-item,
.detail-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.location-icon,
.detail-item i {
    color: var(--accent-color);
    font-size: var(--text-xl);
    margin-top: 3px;
}

.location-text strong,
.detail-label {
    display: block;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.location-text p,
.detail-text {
    margin: 0;
    font-size: var(--text-base);
    color: var(--gray-medium);
}

.location-map {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .article-right {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .article-left {
        padding-right: 0;
    }
}

@media (max-width: 968px) {
    .article-container,
    .class-content-grid,
    .location-content,
    .performers-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .shows-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shows-image-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .shows-accent-box {
        display: none;
    }
    
    .article-left {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .article-section {
        padding: 40px 20px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-date {
        font-size: 1.8rem;
    }
    
    .article-lead {
        font-size: 1.1rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .performers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-date {
        font-size: 1.5rem;
    }
    
    /* Fix location map overflow on mobile */
    .location-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .location-container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .location-content {
        width: 100%;
        overflow-x: hidden;
    }
    
    .location-map {
        width: 100vw;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        height: 350px;
    }
    
    .location-card {
        padding: var(--spacing-lg);
    }
}

/* ================================================
   Footer Section
   ================================================ */

