/* style/contact.css */

.page-contact {
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF;
}

.page-contact__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Slightly darken image for text readability, not color change */
}

.page-contact__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 20px;
    color: #FFFFFF; /* Light text on dark hero background */
}

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F0F0F0;
}

.page-contact__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text on bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-contact__hero-button:hover {
    background-color: #e0a53a;
}

.page-contact__channels-section {
    padding: 80px 20px;
    background-color: #F8F8F8;
    text-align: center;
}

.page-contact__channels-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__channels-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #000000;
}

.page-contact__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-contact__channel-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__channel-card:hover {
    transform: translateY(-10px);
}

.page-contact__channel-icon {
    width: 200px; /* Minimum size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact__channel-name {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #000000;
}

.page-contact__channel-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

.page-contact__channel-button {
    display: inline-block;
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-contact__channel-button:hover {
    background-color: #333333;
}

.page-contact__form-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.page-contact__form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-contact__form-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000000;
}

.page-contact__form-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
}

.page-contact__contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.page-contact__form-group {
    margin-bottom: 15px;
}

.page-contact__form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333333;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    font-size: 1em;
    color: #333333;
    background-color: #FDFDFD;
    box-sizing: border-box;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__form-submit-button {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    width: fit-content;
}

.page-contact__form-submit-button:hover {
    background-color: #e0a53a;
}

.page-contact__faq-section {
    padding: 60px 20px;
    background-color: #F8F8F8;
    text-align: center;
}

.page-contact__faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-contact__faq-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #000000;
}

.page-contact__faq-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
}

.page-contact__faq-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-contact__faq-link {
    display: inline-block;
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-contact__faq-link:hover {
    background-color: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-container {
        padding: 40px 15px;
    }

    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__channels-section,
    .page-contact__form-section,
    .page-contact__faq-section {
        padding: 50px 15px;
    }

    .page-contact__channels-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 2em;
    }

    .page-contact__channels-grid {
        grid-template-columns: 1fr;
    }

    .page-contact__channel-icon {
        width: 200px; /* Ensure minimum size */
        height: auto;
    }

    .page-contact__form-submit-button {
        width: 100%;
    }

    .page-contact__faq-links {
        flex-direction: column;
        align-items: center;
    }

    .page-contact__channels-section img,
    .page-contact__form-section img,
    .page-contact__faq-section img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }

    .page-contact__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__channels-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 1.8em;
    }
}