/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Avenir", sans-serif;
    line-height: 1.6;
    color: #333;
  }
 
  /* 1st Row: Full Bleed Image with Logo */
  .full-bleed-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .full-bleed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  
  /* Logo Overlay Centered */
  .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .logo-img {
    height: 80px; /* Default logo height */
    width: auto;  /* Maintain aspect ratio */
  }
  
 
/* Style for the .row-two section */
.row-two {
    width: 100%; /* Full width of its parent container */
    margin: 0 auto; /* Center it horizontally */
    border:0px solid blue;
    background-color: white;    
}
  /* Ensure that the header is styled nicely */
  .section-header {
    border:0px solid orange;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 6px;
    /*text-shadow: 1px 1px 2px grey;*/
    line-height:1.5em;
    margin-bottom: 20px;
    text-align: center;
    background-color: #43536e;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sub-section-header {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    /*text-shadow: 1px 1px 2px grey;*/
    line-height:1.5em;
    margin-bottom: 20px;
    text-align: center;
  }

  .sub-section-text {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height:1.5em;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Flexbox layout for two-column layout */
  .two-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0px solid black;
    gap: 20px; /* Add space between the columns */
    background: linear-gradient(0deg, rgb(231, 231, 231), rgb(255, 255, 255) 9%) no-repeat;  
    width: 50%;
    margin: 0 auto;
    padding-bottom: 70px;
    margin-bottom:20px;
    min-width:900px;
  }
  
  /* Image column style with right alignment */
  .image-col {
    display: flex;
    justify-content: flex-end; /* Aligns image to the right */
    width: 45%; /* Adjust the width of the image column */
    margin-left: 50px;
    border: 0px solid red;
  }
  
  .image-col img {
    max-width: 400px; /* Ensures the image doesn't overflow */
    height: auto; /* Maintain aspect ratio */
  }
  
  /* Text column style */
  .text-col {
    flex: 1; /* Allows text column to take available space */
    max-width: 50%; /* Adjusts the width of the text column */
    border: 0px solid green;
    margin-right: 10px;
    text-align:left;

 }
 

  /* 3rd Row: Gallery and Learn More */
  .row-three {
    width: 100%; /* Full width of its parent container */
    margin: 0 auto; /* Center it horizontally */
    text-align: center;

}

.row-three h2{
    border:0px solid orange;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    /*text-shadow: 1px 1px 2px grey;*/
    line-height:1.5em;
    margin-bottom: 20px;
    text-align: center;    


  }
.row-three h3{
    border:0px solid orange;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 4px;
    /*text-shadow: 1px 1px 2px grey;*/
    line-height:1.5em;
    margin-bottom: 0px;
    text-align: center;    
    font-style: italic;

}
.row-three div p{
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height:1.5em;
    text-align: center;
  }

  .section-description {
    margin: 0px;
  }
  
  .three-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;

    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
    line-height:1.5em;
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto;
    width: 50%;
    padding-bottom: 20px;
    background: linear-gradient(0deg, rgb(231, 231, 231), rgb(255, 255, 255) 9%) no-repeat;  
    min-width:900px;

  }
  
  .three-column > div {
    /*flex: 1 1 30%;*/
    width: 272px;
  }
  
  .three-column img {
    width: 272px;
    height: auto;
    display: inline;
  }
  

  .learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 3px solid #00bfff;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    
  }
  
  .btn-text {
    padding: 10px 20px;
    padding-top: -10px;
    color: #00bfff;
    letter-spacing: 1px;
    background-color: white;
  }
  
  .btn-circle {
    margin-left: -10px;
    letter-spacing: -4px;
    font-size: 1.5em;
    font-weight: 1000;
    background-color: #00bfff;
    color: white;
    padding: 10px 10px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .two-column {
      flex-direction: column; /* Stack the columns vertically */
      align-items: center;     /* Center content horizontally */
      min-width:440px;

    }
    .three-column {
      flex-direction: column; /* Stack the columns vertically */
      align-items: center;     /* Center content horizontally */
      min-width:440px;

    }

    .image-col,
    .text-col {
      width: 100%;
      max-width: 100%;
      margin: 0; /* Reset margins for smaller screens */
    }
  
    .image-col img {
      max-width: 100%;
      height: auto;
      min-width:440px;

    }
  
    .sub-section-text {
      padding-left: 15px;
      padding-right: 15px;
      font-size: 1rem;
    }
  
    .section-header,
    .sub-section-header {
      font-size: 1.5rem;
      letter-spacing: 2px;
    }
  }

  #footer {
    padding: 2em 0 2em 0 ;
    background-color: #1d242a;
    text-align: center;
}

#footer .icons {
    font-size: 1.25em;
}

#footer .icons a {
color: rgba(255, 255, 255, 0.5);
}

#footer .icons a:hover {
    color: #fff;
}

#footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    letter-spacing: 0.225em;
    list-style: none;
    padding: 0;
    text-transform: uppercase;
}

#footer .copyright li {
    border-left: solid 1px rgba(255, 255, 255, 0.5);
    display: inline-block;
    line-height: 1em;
    margin-left: 1em;
    padding-left: 1em;
}

#footer .copyright li:first-child {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
}

#footer .copyright li a {
    color: inherit;
}

    #footer .copyright li a:hover {
        color: #fff;
    }

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

    #footer .copyright li {
        border: 0;
        display: block;
        line-height: 1.65em;
        margin: 0;
        padding: 0.5em 0;
    }

}

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

    #footer {
        padding: 4em 3em 2em 3em ;
    }

}

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

    #footer {
        padding: 3em 2em 1em 2em ;
    }

}

ul.icons {
    cursor: default;
    list-style: none;
    padding-left: 0;
    padding-bottom: 20px;
}

ul.icons li {
display: inline-block;
padding: 0 1em 0 0;
}

ul li a{
    text-decoration: none;

}
ul.icons li:last-child {
    padding-right: 0 !important;
}

ul.icons.major {
padding: 1em 0;
}

ul.icons.major li {
    padding-right: 3.5em;
}

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

        ul.icons.major li {
            padding: 0 1em !important;
        }

    }