/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Container for page sections to control width */
.page-contact__hero-container,
.page-contact__info-container,
.page-contact__form-container,
.page-contact__faq-container,
.page-contact__social-container,
.page-contact__location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section common styles */
.page-contact__hero-section,
.page-contact__info-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__social-section,
.page-contact__location-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Specific background colors for sections to provide visual separation and contrast */
.page-contact__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('[GALLERY:bg:1920x1080:hit_club,abstract_background,dark_gradient]') no-repeat center center / cover;
    color: #ffffff;
}

.page-contact__info-section,
.page-contact__faq-section {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background for contrast */
    color: #ffffff;
}

.page-contact__form-section,
.page-contact__social-section,
.page-contact__location-section {
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background for variety */
    color: #ffffff;
}

/* Titles and descriptions */
.page-contact__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold primary color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}}