/* Performers Page Styles */

/* Hero Section */
.performers-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.performers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.performers-hero-overlay {
    display: none; /* Remove full-screen overlay */
}

.performers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.performers-hero-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.performers-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Button inherits from base.css .btn and .btn-primary styles */

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* Performer Sections - Similar to Shows Section */
.performer-section {
    padding: 80px 20px;
    position: relative;
}

/* Alternating background colors */
.performer-1 {
    background-color: #f5f5f5;
}

.performer-2 {
    background-color: #ffffff;
}

.performer-3 {
    background-color: #faf5f7;
}

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

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

.performer-image-box {
    width: 100%;
    max-width: 450px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.performer-info::after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 60px;
    width: 200px;
    height: 120px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    z-index: 0;
}

.performer-accent-line {
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 100;
    display: block;
}

.performer-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;
}

.performer-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;
}

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

.btn-book-performer {
    display: inline-block;
    background: var(--primary-color);
    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-book-performer:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* More Performers Section */
.more-performers-section {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
}

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

.more-performers-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.more-performers-content {
    margin-bottom: 60px;
}

.performers-coming-soon {
    background: #faf5f7;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.performers-coming-soon h3,
.service-areas h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.performers-coming-soon p,
.service-areas p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.area-column h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-column li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.area-column li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.booking-info {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.booking-info p {
    margin-bottom: 15px;
}

.booking-info strong {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.cta-booking {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 8px;
}

.cta-booking h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-booking p {
    color: #666;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking Section */
.booking-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

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

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Pricing Side */
.pricing-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.pricing-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.price-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

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

.price-label {
    font-weight: 500;
    color: #333;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.price-detail {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

.pricing-note {
    background: #faf5f7;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.pricing-note p {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.pricing-note ul {
    list-style: none;
    padding: 0;
}

.pricing-note li {
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-note li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Booking Form Side */
.booking-form-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.booking-form .form-group {
    margin-bottom: 20px;
}

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

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit-booking {
    width: 100%;
    padding: 14px 30px;
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-booking:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .performers-hero {
        height: 50vh;
        min-height: 350px;
    }

    .performers-hero-container {
        padding: var(--spacing-lg) var(--spacing-md);
        margin: 0 var(--spacing-sm);
    }

    .performers-hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }

    .performer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .performer-info {
        padding: 20px 0;
    }

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

    .performer-image-box {
        height: 300px;
    }

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

    .more-performers-title {
        font-size: 2rem;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .price-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .price-amount {
        text-align: left;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .performers-hero {
        height: 45vh;
        min-height: 300px;
    }

    .performers-hero-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .performers-hero-title {
        font-size: 1.75rem;
    }
}