/* =================================================================== */
/* FINAL, MERGED STYLES FOR CONTACT PAGE                             */
/* Combines your design with a secure and responsive structure.      */
/* =================================================================== */

/* --- 1. Font Definitions (from your file) --- */
@font-face {
    font-family: 'Melody';
    src:url(../fonts/BLMelodyMono-Bold.otf);
}
@font-face {
    font-family: 'MelodyBold';
    src:url(../fonts/BLMelody-Bold.otf);
}
@font-face {
    font-family: 'MelodyRegular';
    src:url(../fonts/BLMelody-Regular.otf);
}
@font-face {
    font-family: 'MelodySemibold';
    src:url(../fonts/BLMelodyMono-SemiBold.otf);
}
@font-face {
    font-family: 'MelodyLight';
    src:url(../fonts/BLMelody-Light.otf);
}
@font-face {
    font-family: 'MelodyMedium';
    src:url(../fonts/BLMelody-Medium.otf);
}

/* --- 2. Main Page Layout --- */
.contact-page {
    padding-top: 6rem; /* Formerly #contact margin-top */
    padding-bottom: 60px;
}

/* --- 3. Page Header --- */
.contact-header h1 {
    color: #000000;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'MelodyBold';
    letter-spacing: 1px;
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-header .sub-header {
    color: #000000;
    font-family: 'MelodyBold';
    font-size: 35px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 2.5rem;
}

/* --- 4. Contact Info Card (Left Column) --- */
.contact-info-card {
    background: #122E7A;
    border-radius: 5px;
    border: none;
    height: 100%;
}
.contact-info-card .card-header,
.contact-info-card .card-footer {
    background-color: transparent;
    border: none;
    color: #FFFFFF;
}
.contact-info-card .card-body {
    background: linear-gradient(#122E7A,#284fbb,#122E7A);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-card .h5 { /* For "Contact Information" and "HOW TO FIND US" */
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'MelodyBold';
    letter-spacing: 1px;
    font-size: 1.75rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.contact-item .icon {
    width: 30px;
    height: 30px;
}
.contact-item p, .contact-item a {
    font-family: 'MelodyMedium';
    letter-spacing: 1px;
    font-size: 20px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-item a:hover {
    transform: translateY(-2px);
    color: white;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.map-container {
    overflow: hidden;
    border-radius: 5px;
}
.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* --- 5. Contact Form Card (Right Column) --- */
.contact-form-card .card-body {
    padding: 2rem;
}
.contact-form-card h2 {
    color: #000000;
	font-family: 'MelodyBold';
	letter-spacing: 1px;
	font-size: 1.75rem;
}
.contact-form-card .btn {
    font-family: 'MelodyBold';
    letter-spacing: 2px;
    font-size: 22px;
    padding: 1rem;
    border: transparent;
    background: #122E7A;
    color: #fff;
    border-radius: 5px;	
    transition: background-color 0.3s ease;
}
.contact-form-card .btn:hover {
	background: #000000;
}

/* --- 6. Responsive Adjustments --- */
@media (max-width: 767px) {
    .contact-page {
        padding-top: 80px; /* Less space on mobile */
    }
    .contact-header h1 {
        font-size: 36px;
    }
    .contact-header .sub-header {
        font-size: 24px;
    }
    .contact-item p, .contact-item a {
        font-size: 16px;
    }
}