
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

/*Features for the navigation bar the actual styling and position of the bar*/
.navbar{
    background: #03045e ;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

/*Navigation bar container, so what the style of everything in it will be like*/
.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/*ID of the logo (Gulfcoast vet) the style of that label*/
#navbar__logo{
    background-color: #475492;
    background-image: linear-gradient(to top,#475492  0%, #caf0f6 100% );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.5rem;
    font-style: italic;
    white-space: nowrap;
}

/*Used in JS for functionality*/
.fa-gem{
    margin-right: 0.5rem;
}

/*Used for the basic style of all the menu links(About us, Services, etc...)*/
.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    text-decoration: none;
}

/*Used for the basic style of the menu button(Contact Us)*/
.navbar__item{
    height:80px;
}

/*Properties of the navigation bar links(About us, services, etc...)*/
.navbar__links{
    color: #caf0f6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%; /*Changes where in line */
    white-space: nowrap;
}

/*Properties of the navigation bar BUTTON(Contact Us)*/
.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    height: 50%;
    margin-top: 30px;
    white-space: nowrap;
}

/*Style of the button*/
.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 10px;
    height: 50px !important;
    width: 150px !important;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #caf0f6;
    color: #03045e;

}

/*Style to change cover when hovered*/
.button:hover{
    background: #677bab;
    transition: all 0.3s ease;
}

/*Style to change cover when hovered*/
.navbar__links:hover{
    color:#677bab;
    transition: all 0.3s ease;
}

/*WHAT IF IT IS MOBILE? OR SMALL COMPUTER?*/
/*Then it will default to all these settings instead */
@media screen and (max-width: 960px){
    /*What changes in the nav bar the actual box the blue part*/
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 65px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    /*What changes about the menu(diff links) part of the nav bar*/
    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 20vh;
        z-index: -1;
        background: #262d79;
    }
    
    /*What hapeens hwen a button or link is clicked, it is active*/
    .navbar__menu.active{
        background: #262d79;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 70vh;
        font-size: 1.6rem;
    }
    /*The ID of the logo(Gulfcoast..) gets moved over to the left*/
    #navbar__logo{
        padding-left: 0px;
    }

    /*How the toggle bar looks*/
    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #caf0f6;
    }
    
    /*The items in the nav bar width*/
    .navbar__item{
        width: 100%;
    }

    /*How the links from the nav bar will be layout out*/
    .navbar__links{
        text-align: center;
        width: 100%;
        display: table;
    }

    
    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%,20%);

    }

    /*How the button, contact us is placed*/
    .navbar__btn {
        padding-bottom: 10rem;
        margin-top: -25px;
        width: 100%;
    }

    /*More for the button*/
    .button {
        display: flex;
        justify-content: center;
        
    }

}

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    /*These transform the lines from the toggle bar into an x*/
    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0; /*This one becomes invisible*/
    }
    /*The next two rotate*/
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg); 
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg); 
    }

/*First part of the page*/
.main {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url(images/ad.jpg) no-repeat center center fixed;
    background-size: cover;
}

.main_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main__content {
    text-align: center;
    color: white; 
    z-index: 1; /* Ensures the text is on top of the image */
}

h1 {
    font-size: 3rem;
    font-family: SemiBold;
    margin-bottom: 0px;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-family: Regular;
    margin-bottom: 0px;
    font-weight: 400;
}

/*Second part with information*/


.row {
    /* Center the columns horizontally */
    background-color: #caf0f6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border: 15px solid #475492;
    padding: 20px;
  }
  
  /* Information straight with button */
  .column {
    width: 50%;
    padding: 10px;
    text-align: left;
    font-size: 1.5rem;
    margin-top: 2px;
    display: flex; /* Use flexbox for better alignment */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align content to the top */
    max-width: 500px;
    transition: transform 0.3 ease, box-shadow 0.3s ease;
    border-radius: 10px;
  }
  .column:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
    text-align: left;
    font-size: 1.5rem;
  }


/*Footer Section*/
/*Start of the footer*/
.footer{
    background-color: #262d79;
    display: block;
    justify-content: center;
    align-items: center;
    height: 10vh;
}
/* container */
.three-columns-grid {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

/* columns */
.three-columns-grid > * {
    padding:1rem;
    text-align: center;
    font-size: 2rem;
    font-family: 'Reggular', sans-serif;
    background-image: linear-gradient(to top,#475492  0%, #caf0f6 100% );
    background-size: 10%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-style: italic;
}

/*NOW THE INFORMATION*/
.footer_container2{
    margin-top: -20px;
}
/* container */
.three-columns-grid2 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

/* columns */
.three-columns-grid2 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}

.footer_container3{
    margin-top: -35px;
}
/* container */
.three-columns-grid3 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

/* columns */
.three-columns-grid3 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}

.footer_container4{
    margin-top: -35px;
}
/* container */
.three-columns-grid4 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}
/* columns */
.three-columns-grid4 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}

.footer_container5{
    margin-top: -35px;
}
/* container */
.three-columns-grid5  {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;

}

/* columns */
.three-columns-grid5 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}

.footer_container6{
    margin-top: -35px;
}
/* container */
.three-columns-grid6 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

/* columns */
.three-columns-grid6 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}


.footer_container7{
    margin-top: -35px;
}
/* container */
.three-columns-grid7 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

/* columns */
.three-columns-grid7 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}

.footer_container8{
    margin-top: -35px;
}
/* container */
.three-columns-grid8 {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

/* columns */
.three-columns-grid8 > * {
    padding:1rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-image: black;
}
/* Copyright */
.copyright {
    grid-column: 1 / -1; /* Spans all columns */
    text-align: center;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background-color: #262d79; /* Background color */
    color: #caf0f6; /* Text color */
    padding: 1rem;
}

/*what if SMaller FOOTER*/
@media screen and (max-width: 1138px) {
    .footer{
        background-color: #262d79;
        display: block;
        justify-content: center;
        align-items: center;
        height: 7vh;
    }
        /* columns */
    .three-columns-grid > * {
        padding:1rem;
        text-align: center;
        font-size: .8rem;
        font-family: 'Poetsen One', sans-serif;
        background-image: linear-gradient(to top,#475492  0%, #caf0f6 100% );
        background-size: 10%;
        -webkit-background-clip: text;
        -moz-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-text-fill-color: transparent;
    }
    .footer_container2{
        margin-top: -15px;
    }
    /* columns */
    .three-columns-grid2 > * {
        font-size: .80rem;
    }
    .three-columns-grid3 > * {
        font-size: .8rem;
    }
    .three-columns-grid4 > * {
        font-size: .75rem;
    }
    .three-columns-grid5 > * {
        font-size: .8rem;
    }
    .three-columns-grid6 > * {
        font-size: .8rem;
    }
    .three-columns-grid7 > * {
        font-size: .8rem;
    }
    .three-columns-grid8 > * {
        font-size: .8rem;
    }
}
