/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFCC00; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px;
    text-align: center;
    background-color: #003366; /* Main brand color */
    color: #ffffff;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Slightly transparent to let text stand out */
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-contact__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

/* Buttons */
.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-contact__btn-primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

.page-contact__btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-contact__btn-secondary {
    background-color: transparent;
    color: #FFCC00; /* Auxiliary color */
    border: 2px solid #FFCC00;
}

.page-contact__btn-secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

/* Channels Section */
.page-contact__channels-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
    color: #f0f0f0;
}

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

.page-contact__channel-card {
    background-color: #003366; /* Main brand color for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-contact__channel-card p {
    font-size: 1em;
    margin-bottom: 15px;
}

.page-contact__channel-info {
    font-weight: bold;
    color: #FFCC00;
}

.page-contact__channel-link,
.page-contact__channel-info a,
.page-contact__social-list a {
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__channel-link:hover,
.page-contact__channel-info a:hover,
.page-contact__social-list a:hover {
    color: #ffffff;
}

.page-contact__social-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-contact__social-list li {
    margin-bottom: 8px;
}

.page-contact__channels-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Why Contact Section */
.page-contact__why-contact-section {
    padding: 60px 0;
    background-color: #003366; /* Main brand color */
    color: #ffffff;
}