/* performances.css */

/* Hero Section */
.performances-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/heels-dance-class-manchester.jpg') center/cover no-repeat;
}

.performances-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.performances-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.performances-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    background: transparent;
    border: 2px solid white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF006C;
    transition: transform 0.3s ease;
    z-index: -1;
}

.hero-button:hover {
    color: white;
    border-color: #FF006C;
}

.hero-button:hover::before {
    transform: translateX(100%);
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(4px);
}

/* Common Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #FF006C;
}

/* Overview Section */
.overview-section {
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-item {
    text-align: center;
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-5px);
}

.overview-item i {
    font-size: 2.5rem;
    color: #FF006C;
    margin-bottom: 1.5rem;
}

.overview-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.overview-item p {
    color: #666;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    background: #fafafa;
}

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

.package-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid #FF006C;
}

.best-value {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF006C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF006C;
    margin-bottom: 0.5rem;
}

.duration {
    color: #666;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.package-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '•';
    color: #FF006C;
    position: absolute;
    left: 0;
}

.package-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #FF006C;
    color: white;
    margin: 0 2rem 2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.package-button:hover {
    background-color: #e0005f;
}

/* Requirements Section */
.requirements-section {
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.requirement-card i {
    font-size: 2rem;
    color: #FF006C;
    margin-bottom: 1.5rem;
}

.requirement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.requirement-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.requirement-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.requirement-card li::before {
    content: '•';
    color: #FF006C;
    position: absolute;
    left: 0;
}

/* Booking Section */
.booking-section {
    background: #fafafa;
}

.booking-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #FF006C;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e0005f;
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(4px);
}

/* Booking Info Cards */
.booking-info .info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.info-card li::before {
    content: '•';
    color: #FF006C;
    position: absolute;
    left: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FF006C;
    margin-top: 1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

    .performances-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .booking-form {
        padding: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .package-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    .overview-item,
    .requirement-card,
    .info-card {
        padding: 1.5rem;
    }

    .package-header {
        padding: 1.5rem;
    }

    .package-features {
        padding: 1.5rem;
    }

    .package-button {
        margin: 0 1.5rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}