@font-face {
    font-family: 'Nasaliza';
    src: url('../fonts/NASALIZA.TTF') format('truetype');
    font-display: swap;
}

/* Background Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensures full screen coverage */
    z-index: -1; /* Places it behind content */
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}


.logo-container {
    position: absolute;
    top: 20px;  /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    z-index: 3;
}

.logo-container img {
    width: 60px; /* Adjust size */
    height: auto;
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px; /* Add some padding for smaller screens */
}

/* Green Blur Effect */
.green-blur {
    position: absolute;
    width: 40%;
    height: 30%;
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
}

/* Text Container */
.text-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Main Heading */
.text {
    font-size: 8rem;
    font-weight: bold;
    font-family: 'Nasaliza', sans-serif;
    color: white;
    text-shadow: 5px 5px 10px #d1e9794d,
                 -5px -5px 10px rgba(255, 255, 255, 0.3),
                 3px 3px 5px rgba(174, 207, 95, 0.7);
    letter-spacing: 1.3rem;
    white-space: nowrap; /* Prevents text from breaking */
}

/* Tagline */
.tagline {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Arial', sans-serif;
    color: white;
    margin-top: 20px;
    text-shadow: 2px 2px 5px rgba(209, 233, 121, 0.4);
    text-align: center;
}

/* 🌐 Responsive Design */
@media screen and (max-width: 1200px) {
    .text {
        font-size: 6rem;
        letter-spacing: 1rem;
    }
    .tagline {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 992px) {
    .text {
        font-size: 5rem;
        letter-spacing: 0.8rem;
    }
    .tagline {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .text {
        font-size: 4rem;
        letter-spacing: 0.6rem;
    }
    .tagline {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 576px) {
    .text {
        font-size: 3rem;
        letter-spacing: 0.4rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 400px) {
    .text {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    .tagline {
        font-size: 1rem;
    }
}
