html{
    scroll-behavior:smooth;
    overflow: auto;
}

body{
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: #f1f0ee;
    margin: 0px;
    padding: 0px;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

h1{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    transition: 0.5s;
}

h1:hover{
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

h2{
    font-size: 50px;
    display: flex;
    justify-content: center;
    color: white;
    padding: 10px;
}

a.hero-subtext{
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s, text-shadow 0.3s;
}

a.hero-subtext:hover{
    background-color: #ffffff;
    color: #000000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

a.foot-icons{
    text-decoration: none;
    padding: 14px 7px;
}

p{
    font-size: 35px;
}

.hero{
    display: flex;  
    height: 100vh; 
}

/* .hero-image{
    background-image: linear-gradient(rgba(0, 0, 0, 0.204), rgba(0, 0, 0, 0.5));
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
} */

.hero-text{
    color: #fff;
    text-align: center;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.image-container{
    display: flex;
    justify-content: space-around;
}

.image-card{
    height: 480px;
    width: 300px;
    margin: 20px;
    transition: transform 250ms;
}

.image{
    height: 480px;
}

#videosList{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0px 50px 50px 50px;
    flex-wrap: wrap;
}

.vid{
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 25px;
}

.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100%;
    }
}

/* Additional mobile-specific styles */
@media (max-width: 767px) {
    .back-video {
        object-fit: cover;
    }
}

#gallery {
    line-height:0;
    -webkit-column-count:5; /* split it into 5 columns */
    -webkit-column-gap:5px; /* give it a 5px gap between columns */
    -moz-column-count:5;
    -moz-column-gap:5px;
    column-count:5;
    column-gap:5px;
}

#gallery img {
   width: 100% !important;
   height: auto !important;
   margin-bottom:5px; /* to match column gap */
   filter: grayscale(100%);
}

@media (max-width: 1200px) {
   #gallery {
    -moz-column-count:    4;
    -webkit-column-count: 4;
    column-count:         4;
   }
}

@media (max-width: 1000px) {
    #gallery {
     -moz-column-count:    3;
     -webkit-column-count: 3;
     column-count:         3;
    }
}

#gallery img:hover {
    filter:none;
    transition: 0.25s;
}

footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin-top: 35px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-menu {
    order: 2; 
}

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}
