*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
}

.navbar {
    background: #fff1f9;
    height: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
    overflow: hidden;
}


.navbar__container {
    display: flex;
    justify-content: space-around;
    height: 100px;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo{
    background-color: #0062A3;
    #background-image: linear-gradient(to top, #9BBF9E 0%, #0062A3 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex; 
    align-items: center;
    cursor:pointer;
    text-decoration: none;
    font-size: 1.7cqw;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: px
}

.navbar__links {
    color: #0062A3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 0.7rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content:baseline;
    align-items: center;
    padding: 0 auto;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 1rem;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 7px;
    background: transparent;
    color: #0062A3; 
}

.button:hover {
    background: #F8F7ED;
    transition: all 0.2s ease;
}

.navbar__links:hover {
    background-image: linear-gradient(to top, #9BBF9E 0%, #4e774d 100%);
    transition: all 0.2s ease;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

mobile-menu{
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
}

.navbar__btn {
    padding-bottom: 2 rem;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin:0;
}

.navbar__toggle .bar {
    display: block;
    cursor: pointer;
}

#mobile-menu.is-action .bar:nth-child(2) {
    opacity: 0;
}

#mobile-menu.is-action .bar:nth-child(1) {
    transform: traslateY(8px) rotate (45deg);
}

#mobile-menu.is-action .bar:nth-child(3) {
    transform: traslateY(-8px) rotate (-45deg);
}

/* Hero Section CSS */
.main {
    justify-content: center;
    align-items: flex-start;
    background: fffbe2;
    display: flex;
    margin: 0 auto;
    padding: 0 auto;
    width: 75%;
    min-height: 90vh;
    color: #0062A3;
    text-align: left
}


html, body {
  height: 90%; /* Ensures html and body span the full viewport height */
  margin: 0 auto;
  padding: 0;
  background: #fffbe2;
  justify-content: center;
  align-items: center;
}

.drive-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically within the container */
    padding: 10vh 0;    
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.drive-container iframe {
    display: block;      /* Change from inline to block */
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    height: 95%;
}


/* Gallery Items CSS*/
.image-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 100vh;  
  flex-wrap: wrap; 
}

.image-container img {
  width: auto;
  height: 350px;
}
