/* style/contact.css */

/* General styling for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    color: #ffffff; /* Default text color for dark backgrounds */
    background-color: #1a1a1a; /* Dark background to highlight gold/red */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
    position: relative;
    overflow: hidden;
}

.page-contact__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-contact__hero-title {
    font-size: 3em;
    color: #ffffff; /* White text on gradient */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1; /* Subtle background image */
    z-index: 0;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Titles & Subtitles */
.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-contact__section-subtitle {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
}

/* Contact Form Section */
.page-contact__form-section {
    background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
    padding: 60px 0;
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #3a3a3a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
    display: block;
    font-size: 1.1em;
    color: #FFD700; /* Gold for labels */
    margin-bottom: 8px;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #4a4a4a;
    color: #ffffff;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #bbb;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700; /* Gold border on focus */
    outline: none;
}

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text for contrast */
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__submit-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #6a0000;
}

/* Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-contact__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-contact__info-card {
    background-color: #3a3a3a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
}

.page-contact__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-contact__info-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-contact__info-text {
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-contact__info-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__info-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.page-contact__social-icon-link {
    color: #FFD700;
    font-size: 1.1em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__social-icon-link:hover {
    color: #e6c200;
}

.page-contact__location {
    text-align: center;
    margin-top: 50px;
}

.page-contact__map-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__location-text {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-top: 20px;
}

/* Call to Action Section */
.page-contact__additional-cta {
    background-color: #8B0000; /* Dark red background for strong CTA */
    padding: 60px 20px;
    text-align: center;
}

.page-contact__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title on red background */
    margin-bottom: 20px;
}

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

.page-contact__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text for contrast */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #6a0000;
    transform: translateY(-3px);
}

.page-contact__cta-button--large {
    font-size: 1.4em;
    padding: 18px 35px;
}

.page-contact__cta-button--secondary {
    background-color: #ffffff; /* White button for secondary CTA */
    color: #8B0000;
    border: 2px solid #FFD700; /* Gold border */
}

.page-contact__cta-button--secondary:hover {
    background-color: #f0f0f0;
    color: #6a0000;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }

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

    .page-contact__section-title {
        font-size: 2em;
    }

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__cta-title {
        font-size: 2em;
    }

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

    .page-contact__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

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

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__cta-button {
        display: block;
        margin: 10px auto;
    }
}