/* Studio Hire Page Specific Styles */

/* Main Content */
main {
    min-height: 60vh;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background-color: #000;
    background-image: url('../images/Dance-classes-liverpool.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px; /* Pull hero up to compensate for body padding */
    padding-top: 80px; /* Add padding back for content */
}

.hero-overlay {
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #EBE9E1;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.btn {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background-color: #EFB11D;
    color: #000;
    border: 2px solid #EFB11D;
}

.btn-primary:hover {
    background-color: transparent;
    color: #EFB11D;
    transform: translateY(-2px);
}

/* Studio Info Section */
.studio-info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

.studio-details {
    padding-right: 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: bold;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.studio-features,
.studio-uses {
    margin-bottom: 2rem;
}

.studio-features h3,
.studio-uses h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #EFB11D;
    margin-right: 10px;
}

.uses-list {
    list-style: none;
    padding-left: 20px;
}

.uses-list li {
    position: relative;
    padding: 0.3rem 0;
    color: #555;
}

.uses-list li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: #EFB11D;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.booking-subtitle {
    color: #777;
    margin-bottom: 2rem;
}

.price-info {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.price-label {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    margin: 0.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #EFB11D;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

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

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

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

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

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

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

.contact-alternative {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

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

.phone-link {
    color: #EFB11D;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #d49d0a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .studio-details {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
}