/* ============================================
   BRIDAL SHOWS PAGE - Premium Editorial Style
   ============================================ */

/* Hero Section */
.shows-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shows-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.shows-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.shows-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.shows-hero-overlay--dark {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.shows-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.shows-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.shows-hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.shows-hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    margin: 0;
}

/* Introduction Section */
.shows-intro {
    padding: 80px 0;
    background: var(--color-bg);
}

.shows-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shows-intro-heading {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 30px;
    color: var(--color-primary);
}

.shows-intro-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 20px;
    font-weight: 300;
}

.shows-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

/* Events Grid */
.shows-events {
    padding: 60px 0 100px;
    background: var(--color-bg-light);
}

.show-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.show-event:last-child {
    margin-bottom: 0;
}

.show-event--reverse {
    direction: rtl;
}

.show-event--reverse > * {
    direction: ltr;
}

.show-event-image {
    position: relative;
    overflow: hidden;
}

.show-event-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.show-event:hover .show-event-image img {
    transform: scale(1.03);
}

.show-event-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.show-event--reverse .show-event-date {
    left: auto;
    right: 20px;
}

.show-event-content {
    padding: 20px 0;
}

.show-event-location {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.show-event-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 15px;
    color: var(--color-primary);
}

.show-event-tagline {
    font-size: 16px;
    font-style: italic;
    color: var(--color-text);
    margin: 0 0 20px;
}

.show-event-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0 0 25px;
}

.show-event-gallery-link {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.show-event-gallery-link:hover {
    letter-spacing: 2px;
}

/* Featured Event */
.show-event--featured .show-event-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--color-primary);
    opacity: 0.3;
    z-index: -1;
}

/* Pillars Section - Why Choose MS Moda */
.shows-pillars {
    padding: 100px 0;
    background: white;
}

.shows-pillars-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 60px;
    color: var(--color-primary);
}

.shows-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.shows-pillar {
    text-align: center;
    padding: 40px 30px;
}

.shows-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    color: var(--color-primary);
}

.shows-pillar-icon svg {
    width: 64px;
    height: 64px;
    display: block;
}

.shows-pillar-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 15px;
    color: var(--color-primary);
}

.shows-pillar-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

/* Heritage Section */
.shows-heritage {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.shows-heritage-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 10px;
    color: var(--color-primary);
}

.shows-heritage-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-light);
    margin: 0 0 50px;
}

.shows-heritage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shows-heritage-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.shows-heritage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shows-heritage-item--highlight {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.shows-heritage-item--highlight .shows-heritage-year,
.shows-heritage-item--highlight h4,
.shows-heritage-item--highlight p {
    color: white;
}

.shows-heritage-item--highlight p {
    opacity: 0.9;
}

.shows-heritage-year {
    display: block;
    font-size: 32px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.shows-heritage-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--color-primary);
}

.shows-heritage-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* Vertical Timeline */
.shows-timeline-vertical {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 0 100px;
}

.shows-timeline-line-v {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-border) 0%, var(--color-primary) 50%, var(--color-border) 100%);
}

.shows-timeline-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-left: 30px;
}

.shows-timeline-row:last-child {
    margin-bottom: 0;
}

.shows-timeline-year {
    position: absolute;
    left: -100px;
    width: 70px;
    text-align: right;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text-light);
    padding-top: 2px;
}

.shows-timeline-dot {
    position: absolute;
    left: -9px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--color-border);
    border-radius: 50%;
    z-index: 1;
}

.shows-timeline-row--current .shows-timeline-dot {
    width: 18px;
    height: 18px;
    left: -11px;
    top: 4px;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.shows-timeline-row--current .shows-timeline-year {
    color: var(--color-primary);
    font-weight: 600;
}

.shows-timeline-text {
    flex: 1;
}

.shows-timeline-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-primary);
}

.shows-timeline-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-light);
    margin: 0;
}

/* Poland Section */
.shows-poland {
    padding: 80px 0;
    background: var(--color-primary);
    color: white;
}

.shows-poland-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shows-poland-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 25px;
}

.shows-poland-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0 0 35px;
}

.shows-poland-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.shows-poland-cities span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.shows-poland-cities span:hover {
    opacity: 1;
}

/* CTA Section */
.shows-cta {
    padding: 100px 0;
    background: white;
}

.shows-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.shows-cta-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 20px;
    color: var(--color-primary);
}

.shows-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 0 35px;
}

.shows-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ============================================
   B2B SPECIFIC STYLES
   ============================================ */

/* Stats Bar */
.b2b-stats-bar {
    background: var(--color-primary);
    padding: 40px 0;
}

.b2b-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.b2b-stat {
    color: white;
}

.b2b-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.b2b-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* B2B Intro Features */
.b2b-intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 40px auto 0;
}

.b2b-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.b2b-check {
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

/* B2B Schedule */
.b2b-schedule {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.b2b-schedule-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 10px;
    color: var(--color-primary);
}

.b2b-schedule-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    margin: 0 0 50px;
}

.b2b-schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.b2b-show-card {
    background: white;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.b2b-show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.b2b-show-card--featured {
    border-color: var(--color-primary);
}

.b2b-show-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    z-index: 2;
}

.b2b-show-card-header {
    height: 160px;
    overflow: hidden;
}

.b2b-show-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.b2b-show-card:hover .b2b-show-card-header img {
    transform: scale(1.05);
}

.b2b-show-card-body {
    padding: 20px;
    display: flex;
    gap: 20px;
}

.b2b-show-card-date {
    text-align: center;
    flex-shrink: 0;
}

.b2b-show-card-month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.b2b-show-card-days {
    display: block;
    font-size: 28px;
    font-weight: 300;
    color: var(--color-primary);
}

.b2b-show-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--color-primary);
}

.b2b-show-card-location {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0 0 8px;
}

.b2b-show-card-booth {
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}

.b2b-show-card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--color-border);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 11px;
}

/* B2B Benefits */
.b2b-why-partner {
    padding: 80px 0;
    background: white;
}

.b2b-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 50px;
    color: var(--color-primary);
}

.b2b-section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    margin: -40px 0 50px;
}

.b2b-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.b2b-benefit {
    text-align: center;
    padding: 30px;
}

.b2b-benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.b2b-benefit-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.b2b-benefit h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--color-primary);
}

.b2b-benefit p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

/* B2B Testimonials */
.b2b-testimonials {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.b2b-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.b2b-testimonial {
    background: white;
    padding: 40px;
    border-left: 3px solid var(--color-primary);
    margin: 0;
}

.b2b-testimonial p {
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    color: var(--color-text);
    margin: 0 0 20px;
}

.b2b-testimonial footer {
    font-size: 13px;
    color: var(--color-text-light);
}

.b2b-testimonial cite {
    font-style: normal;
}

/* B2B Downloads */
.b2b-downloads {
    padding: 80px 0;
    background: white;
}

.b2b-downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.b2b-download-card {
    display: block;
    background: var(--color-bg-light);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.b2b-download-card:hover {
    background: white;
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.b2b-download-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.b2b-download-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.b2b-download-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--color-primary);
}

.b2b-download-card p {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0 0 15px;
}

.b2b-download-size {
    font-size: 11px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* B2B CTA */
.b2b-cta {
    padding: 80px 0;
    background: var(--color-primary);
    color: white;
}

.b2b-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.b2b-cta-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 20px;
}

.b2b-cta-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 30px;
}

.b2b-cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.b2b-cta-contact-item {
    font-size: 14px;
}

.b2b-cta-contact-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.b2b-cta-contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.b2b-cta-contact-item a:hover {
    opacity: 0.8;
}

.b2b-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.b2b-cta .btn-primary {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.b2b-cta .btn-primary:hover {
    background: transparent;
    color: white;
}

.b2b-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.b2b-cta .btn-outline:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

/* Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .shows-pillars-grid {
        gap: 30px;
    }

    .b2b-schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .b2b-downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shows-heritage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shows-hero {
        height: 60vh;
        min-height: 400px;
    }

    .shows-hero-title {
        letter-spacing: 2px;
    }

    .shows-intro {
        padding: 60px 0;
    }

    .shows-intro-lead {
        font-size: 18px;
    }

    .show-event {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .show-event--reverse {
        direction: ltr;
    }

    .show-event-date {
        left: 15px;
    }

    .show-event--reverse .show-event-date {
        left: 15px;
        right: auto;
    }

    .shows-pillars-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shows-heritage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shows-heritage-year {
        font-size: 24px;
    }

    .shows-timeline-vertical {
        padding: 0 0 0 70px;
    }

    .shows-timeline-line-v {
        left: 50px;
    }

    .shows-timeline-year {
        left: -70px;
        width: 50px;
        font-size: 14px;
    }

    .shows-timeline-dot {
        left: -29px;
    }

    .shows-timeline-row--current .shows-timeline-dot {
        left: -31px;
    }

    .shows-timeline-wrapper {
        padding: 0 20px 0 40px;
    }

    .shows-timeline-line {
        left: 20px;
    }

    .shows-timeline-item,
    .shows-timeline-item:nth-child(odd),
    .shows-timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .shows-timeline-marker {
        left: 20px;
    }

    .shows-timeline-content {
        max-width: none;
    }

    .shows-cta {
        padding: 60px 0;
    }

    /* B2B Mobile */
    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .b2b-stat-number {
        font-size: 36px;
    }

    .b2b-intro-features {
        grid-template-columns: 1fr;
    }

    .b2b-schedule-grid {
        grid-template-columns: 1fr;
    }

    .b2b-benefits-grid {
        grid-template-columns: 1fr;
    }

    .b2b-downloads-grid {
        grid-template-columns: 1fr;
    }

    .b2b-cta-contact {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .shows-hero {
        height: 50vh;
    }

    .shows-hero-badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .shows-intro-lead {
        font-size: 16px;
    }

    .show-event-title {
        font-size: 22px;
    }

    .shows-pillars-title,
    .shows-timeline-title,
    .shows-poland-title,
    .shows-cta-title,
    .b2b-section-title {
        font-size: 22px;
    }

    .b2b-stat-number {
        font-size: 28px;
    }

    .b2b-stat-label {
        font-size: 10px;
    }

    .b2b-show-card-days {
        font-size: 22px;
    }

    .b2b-testimonial {
        padding: 25px;
    }

    .b2b-download-card {
        padding: 20px;
    }
}
