/* style/contact.css */

/* Variables for consistent styling */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f0f2f5; /* Body background from shared.css */
    --button-register: #C30808;
    --button-login: #C30808;
    --button-font-color: #FFFF00;
    --border-light: #e0e0e0;
    --padding-section-desktop: 80px 0;
    --padding-section-mobile: 40px 0;
}

/* Base styles for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-light); /* Consistent with body background */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2;
}

.page-contact__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* General Section Styling */
.page-contact__intro-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__team-section,
.page-contact__why-us-support-section {
    padding: var(--padding-section-desktop);
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-contact__methods-section,
.page-contact__cta-section,
.page-contact__responsible-gaming-section {
    padding: var(--padding-section-desktop);
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-contact__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-contact__section-title--white {
    color: var(--text-light);
}