.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f; /* Navy Blue */
  padding: 20px 10%;
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
   transition: color 0.3s ease;
}
.logo:hover {
  color: gold;
}
/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: goldenrod; /* Highlight color on hover or active */
}

.menu-toggle {
  display: none;
}

.burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
}

.burger .line {
    width: 25px;
    height: 3px;
    background: white;
}
/* END OF NAV BAR */

body{
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    color: #001F3F;
}

a{
    text-decoration: none;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f; /* Navy Blue */
  padding: 20px 10%;
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: goldenrod; /* Highlight color on hover or active */
}
.contact-illustration{
    width: 30%;
    margin-right: 5%;
    overflow: hidden;
}
.contact-heading{
    margin-top: 2.5%;
    text-align: center;
    font-weight: bold;
    font-size: 90%;
    color: #001F3F;
    letter-spacing: 3px;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-icon{
    width: 30%;
    margin-left: 5%;
}

.contact-section{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.contact-info{
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    justify-content:flex-start;
}

.contact-title{
    font-family: DMSans, sans-serif;
    color: #001F3F;
    font-weight: bold;
    font-size: 500%;
    margin-top: 9%;
    margin-bottom: 5%;
}

.main-email,.contact-phone-number{
    color: #001F3F;
}

.contact-email, .contact-phone,.contact-phone-number{
    font-family: DMSans, sans-serif;
    margin-bottom: 5%;
    margin-left: 40%;
    justify-content: space-evenly;
    font-size: 130%;
}

.contact-phone,.contact-phone-number{
    display: flex;
    flex-direction: column;
    margin-right: 30%;
    margin-top: -1%;
    font-size: 120%;
}

.address-block{
    margin-top: -5%;
    display:flex;
}

.address-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10%;
    font-size: 130%;

}

/* FOOTER */

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001F3F;
    color: white;
}

.footer-links-section{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-left: 5%;
    font-size: 90%;
    gap: 15%;
}

.link-texts, .phone,.contact-info{
    white-space: nowrap; 
    font-weight: lighter;
    font-size: 1.2vw;
}

.footer-links{
    color: white;
    text-decoration: none;
}

#footer-logo{
    font-size: 2vw;
    margin-left: 100%;
}

.contact-info{
    margin-right: 10%;
}

.footer-email{
    color: white;
}

.phone-numbers{
    display: flex;
    flex-direction: column;
    margin-top: -5%;
}

.phone{
    margin-left: 10%;
    color: white;
}

@media (max-width: 800px) {
    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        flex-direction: column;
        background-color:navy;
        padding: 1rem;
        border-radius: 8px;
        z-index: 999;
    }

    .menu-toggle:checked ~ .nav-links {
        display: flex;
    } 
    
    .contact-heading{
        display: none;
    }
    .contact-illustration, .map-icon {
        width: 60%;
        margin: 0;
    }
    
    .contact-section {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-title {
        font-size: 8vw;
        text-align: center;
    }
    
    .contact-email, .contact-phone {
        margin-left: 0;
        text-align: center;
    }
    
    .address-block {
        flex-direction: column;
        align-items: center;
    }

    .address-text {
        margin: auto 10%;
        text-align: justify;
        display: flex;
        font-size: 4vw;   
    }

    footer{
        padding: 5%;
    }

    #footer-logo{
        align-items: start;
        order: 1;
        font-size: 4vw;
        margin-left: 0%;
    }

    .footer-links-section{
        flex-direction: column;
        align-items: center;
        order: 2;
        font-size: 10vw;
    }

    .link-texts,.contact-info,.phone{
        font-size: 2vw;
    }

    .contact-info,.phone{
        order: 3;
        font-size: 2.5vw;
        margin-right: 0;
    }
}

/* ANIMATION */

.footer-email:hover,.phone:hover,#footer-logo:hover,.footer-links:hover,.contact-phone-number:hover,.main-email:hover{
    color: gold;
    transition: color 0.3s ease;
}