

@font-face {
    font-family: 'Netflix Font';
    src: url('./assets/NetflixSans-Regular.otf') format('opentype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Netflix Font', sans-serif;
    overflow-x: hidden;
    
}

nav {
    width: 100%;
    background-color: #222; /* Optional: Netflix-like dark background */
    color: white;
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 10px 80px;
    position: fixed; /* Keeps nav always on top when scrolling */
    top: 0;
    left: 0;
    z-index: 100; /* Ensure it stays on top of other elements */
}

.nav-logo {
    height: 40px;
   
}

ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul li {
    cursor: pointer;
}

.greeting {
    color: whitesmoke;
    font-size: 3rem;
}

.left-text{
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.main-section {
    background-image: url('./assets/IMG_20240407_142554_180--preview.jpg');
    margin-top: 60px; /* Offset for the height of the fixed nav */
    background-color: #222;
    height: 80vh;
    background-size: cover;
    width: 100vw;
    display: flex;
    flex-direction: row;
}

.top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.many-photos {
    height: fit-content;
    background-color: #222;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.many-photos h2{
    padding-left: 100px;
    color: whitesmoke;
    margin-bottom: 50px;
}

.left-section {
    width: 50%;
   align-items: center;
   padding-left: 100px;
    display: flex;
    
}

.left-section h1, p{
  
    color: whitesmoke;
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    background-color: #222;
}

.right-section img {
    width: 35rem;
    align-items: center;
}


.list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding-left: 100px;
    flex-wrap: wrap;
    padding-right: 100px;
}

.list img{
    height: 400px;
}

.list video{
    height: 400px;
}

.scroll-arrow {
    margin: 10px 0; /* Add some space above and below the arrow */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.scroll-arrow:hover {
    transform: translateY(5px); /* Slightly move down on hover */
}

.scroll-arrow svg {
    width: 40px; /* Set width of the arrow */
    height: 40px; /* Set height of the arrow */
    color: #007BFF; /* Set arrow color */
}

.scroll-arrow svg:hover {
    color: #0056b3; /* Change color on hover */
}

.dotlottie-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    position: fixed; /* Fixed position to overlay */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
    bottom: 0; /* Align to the bottom */
    background: #222; /* Optional: background color */
    z-index: 999; /* Ensure it appears above other content */
}

body.no-scroll {
    overflow: hidden; /* Disable scrolling */
}

.fade-in {
    opacity: 0; /* Start with hidden content */
    transition: opacity 0.5s ease-in; /* Transition effect */
}

.fade-in.visible {
    opacity: 1; /* Fully visible content */
}   


.audio{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #222;
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.audio h3{
    color: whitesmoke;
}
audio{
    justify-content: center;
}