@charset "UTF-8";
/* CSS Document */

/* CONTACT SECTION MAIN */
#contact {
    text-align: center;
  
 
    background: #ffffff; /* White background */
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    position: relative;
    color: #000000;
}

/* CONTACT HEADER & SUBHEADER */
#contactHeader {
    font-family: 'Gradzy', sans-serif;
    color: #004080;
}

#contactSubheader {
    color: #004080;
    font-family: 'Morning Rainbow', sans-serif;
}

/* LOGO SECTION */
#contactLogoContainer {
    margin: 0 auto 30px auto;
    text-align: center;
    animation: fadeInSlide 1s ease-in-out;
}

#contactLogo {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    filter: drop-shadow(0 4px 6px rgba(0, 64, 128, 0.2));
    border: 3px solid #004080;
    border-radius: 12px;
    padding: 10px;
    background: #f0f8ff;
}

#contactLogo:hover {
    transform: scale(1.05);
}

/* CONTACT INFO BLOCK */
#contactInfo {
    color: #000000;
    font-family: 'Morning Rainbow', sans-serif;
}

#contactInfo p,
#contactAddress, 
#contactPhone, 
#contactHours,
#contactPhone a,
#contactPhone a:hover {
    font-family: 'Morning Rainbow', sans-serif;
    color: #000000;
    margin-bottom: 10px;
}

#contactPhone a {
    color: #004080;
    text-decoration: none;
}

#contactPhone a:hover {
    text-decoration: underline;
}

/* SOCIAL MEDIA */
#socialMedia {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#socialMedia a {
    color: #000000;
}

#facebookIcon, 
#instagramIcon {
    width: 40px;
    height: 40px;
}

/* EMAIL CONTACT */
#contactMessagePrompt {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Morning Rainbow', sans-serif;
}

#contactEmailLink {
    text-decoration: none;
}

#contactSubmitButton {
    background: #004080;
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    font-family: 'Morning Rainbow', sans-serif;
}

#contactSubmitButton:hover {
    background: #002f66;
}

/* OPTIONAL DIVIDER */
.contactDivider {
    width: 60%;
    margin: 20px auto;
    border: 1px solid #004080;
    opacity: 0.3;
}

/* SUCCESS/ERROR MESSAGE */
#form-message {
    font-size: 16px;
    margin-top: 10px;
}

/* ANIMATION */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   MEDIA QUERIES FOR FLUIDITY
=========================== */

@media (max-width: 1200px) {
	
	/* CONTACT SECTION MAIN */
#contact {
    text-align: center;
    width: 100%;
    height: 100vh;
	margin-bottom: 0px;
	padding: 40px 10px;
   
   
}
    #contactHeader {
        font-size: 32px;
    }
    #contactSubheader,
    #contactMessagePrompt,
    #contactInfo {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
	
		/* CONTACT SECTION MAIN */
#contact {
    text-align: center;
    width: 100%;
    height: 100vh;
	margin-bottom: 80px;
	padding: 100px 10px 40px 10px;
   
   
}
    #contactHeader {
        font-size: 35px;
    }
    #contactSubheader,
    #contactMessagePrompt,
    #contactInfo {
        font-size: 24px;
    }
    #contactSubmitButton {
        font-size: 25px;
        padding: 10px 20px;
    }
    #contactLogo {
        width: 300px;
    }
}

@media (max-width: 480px) {
	
		/* CONTACT SECTION MAIN */
#contact {
    text-align: center;
    width: 100%;
    height: 100vh;
	margin-bottom: 80px;
	  padding: 40px 5px 40px 5px;
   
   
}
    #contactHeader {
        font-size: 35px;
    }
    #facebookIcon, 
    #instagramIcon {
        width: 50px;
        height: 50px;
    }
    #contact {
        padding: 20px 4%;
    }
    #contactLogo {
        width: 250px;
    }
}

@media (max-width: 300px) {
	
	/* CONTACT SECTION MAIN */
#contact {
    text-align: center;
    width: 100%;
    height: 100vh;
	padding: 40px 5px 60px 5px;
   
   
}
	#contactSubheader {
    font-size: 18px;
    margin-bottom: 20px;
}
	
	/* CONTACT INFO BLOCK */
#contactInfo {
    font-size: 16px;
    margin-bottom: 30px;
}


	
    #contactHeader {
        font-size: 26px;
		
    }
    #contactSubmitButton {
        font-size: 14px;
        padding: 10px;
    }
    #contactLogo {
        width: 250px;
    }
}
