/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Fallback background color */
    background-color: #2c2c2c;
}

.contact-hero-overlay {
    /* Overlay is now inline in HTML */
}

.contact-hero-bg {
    /* Not used anymore - background set inline */
    display: none;
}

.contact-hero-image {
    /* Not used anymore - background set inline */
    display: none;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--spacing-md);
    width: 100%;
    max-width: 1200px;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.75);
    padding: calc(var(--spacing-xl) + 20px) var(--spacing-lg) calc(var(--spacing-xl) + 20px) var(--spacing-lg);
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

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

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }
}

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

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

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

/* Contact Section */
.contact-section {
    padding: var(--spacing-4xl) 0;
    background-color: #f9f9f9;
}

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

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

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-card h3 i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.contact-item {
    margin-bottom: var(--spacing-lg);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    margin: var(--spacing-sm) 0;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: var(--spacing-xs);
}

.contact-item p i {
    color: var(--accent-color);
    width: 24px;
    margin-right: var(--spacing-sm);
}

.coming-soon {
    color: var(--text-muted);
    font-style: italic;
}

/* Contact Form */
.contact-form-container {
    width: 100%;
}

.contact-form-card {
    background: white;
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    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: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-cards {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-xl) 0;
    }
    
    .contact-card,
    .contact-form-card {
        padding: var(--spacing-md);
    }
    
    .contact-card h3,
    .contact-form-card h3 {
        font-size: 1.25rem;
    }
}

/* Studio Location Section - Similar to Performer Section Style */
.studio-location-section {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
}

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

.studio-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Studio Info Side */
.studio-info {
    position: relative;
    padding: 40px 40px 40px 0;
    z-index: 2;
}

.studio-info::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: 60px;
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, rgba(179, 0, 94, 0.1), rgba(179, 0, 94, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
}

.studio-accent-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.studio-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 15px;
}

.studio-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.2;
}

.studio-location-detail {
    margin-bottom: 35px;
}

.location-detail-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.location-detail-title i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.studio-address {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
    padding-left: 32px;
}

.transport-options {
    padding-left: 32px;
}

.transport-option {
    margin: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
}

.transport-option i {
    color: var(--primary-color);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    opacity: 0.85;
}

.transport-option strong {
    color: #2c2c2c;
    font-weight: 600;
}

.studio-parking-info {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    padding-left: 32px;
}

/* Studio Image Box */
.studio-image-box {
    width: 100%;
    max-width: 550px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.studio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-image-box:hover .studio-image {
    transform: scale(1.05);
}

/* Responsive Design for Studio Location */
@media (max-width: 968px) {
    .studio-location-section {
        padding: 60px 20px;
    }
    
    .studio-location-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .studio-info {
        padding: 0;
        text-align: center;
    }
    
    .studio-info::after {
        display: none;
    }
    
    .studio-accent-line {
        margin: 0 auto 20px;
    }
    
    .studio-title {
        font-size: 2.5rem;
    }
    
    .studio-address,
    .transport-options,
    .studio-parking-info {
        padding-left: 0;
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .studio-image-box {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .studio-location-section {
        padding: 50px 15px;
    }
    
    .studio-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .location-detail-title {
        font-size: 1.15rem;
    }
    
    .studio-address,
    .transport-option,
    .studio-parking-info {
        font-size: 1rem;
    }
    
    .studio-image-box {
        height: 300px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .studio-title {
        font-size: 1.75rem;
    }
    
    .studio-image-box {
        height: 250px;
    }
}