.header {
    overflow: hidden;
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 2;
    transition: all 0.3s;
    height: 80px;
    color: white;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.5s ease, height 0.5s ease, color 0.5s ease;
    padding-right: 0px;
    font-weight: 300;
}

.logo {
    position: relative;
    height: 50px;
    width: 400px;
    overflow: hidden;
}

.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    transition: opacity 0.5s ease;
    padding-left: 40px
}

#logoImg1 {
    opacity: 1;
}

#logoImg2 {
    opacity: 0;
}


/* NAV BAR LINKS STYLING*/
.nav-links {
    display: flex; 
}

.nav-links a {
    display: block;
    color: inherit;
    text-align: center;
    padding: 28px 20px;
    text-decoration: none;
}

/* hides burger icon on wider screen widths*/
.nav-links .icon {
  display: none;
}

@media screen and (max-width: 1100px){ 

  /*Only displays the burger icon if responsive class is not on */
  .nav-links:not(.responsive) a:not(.icon){
  display: none;}

  .nav-links a.icon {
    display: flex;
  }

  /* Allows all the links to be visible */
  .header{
    overflow: visible !important;
  }

  /* Styles the entire dropdown format */
  .nav-links.responsive{
    position: absolute;
    top: 80px;
    display: flex;
    right: 0;
    left: 0;
    flex-direction: column;
    z-index: 1000;
    background-color:rgba(166, 166, 166, 0.5) ;
    max-width: 100%;
  }

  /* Styles individual nav-links in dropdown format */
  .nav-links.responsive a {
    position: static;
    display: block;
    width: auto;
    text-align: left;
    padding: 16px 20px;
  }

  .nav-links a.icon{
    text-align: center;
  }
}



/* HERO IMAGE – repeated classes, need to edit */
.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  text-align: center;
  color: white;
  font-family: 'Roboto', sans-serif;
  background-color: rgba(166, 166, 166, 0.5); 
  padding: 10px 20px; 
  border-radius: 0px; 
}

.image-container {
  position: relative;
}

.image-container {
    position: relative;
    z-index: 1;
    margin-top: -80px; 
    width: 100%;  
}

.image-container img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}


.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #000000;
}



/* 'GET IN TOUCH' SECTION */
.contact-section {
  font-family: 'Roboto', sans-serif;
}

.contact-heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px; 
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;  
  grid-gap: 20px;
}

/* Changes to a single column layout on smaller screens */
@media screen and (max-width: 800px) {
  .contact-grid {
      grid-template-columns: 1fr !important; 
  }
}

.contact-item {
  text-align: center;
  align-self: center;
}

.contact-image {
  max-width: 25%;  
  height: auto;
  display: block;  
  margin: auto;  
}

.contact-subtitle {
  font-size: 24px;
  font-weight: 200;
}

.contact-name {
  font-size: 18px;
  font-weight: 200;
  color: grey; 
  font-family: 'Roboto', sans-serif;
}

.email-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background-color: #d7345d;
  border-color: #d7345d;
  color: #ffffff;
}



/* FOOTER */

.footer-container {
    background-color: #d7345d;
    width: 100%;
    margin-top: 40px;
  }
  
  .custom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; 
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
    flex: 1;
    text-align: center;
  }
  
  .footer-logo {
    max-width: 300px; 
    height: auto;
  }