* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #062c1d;
    color: #f6f6f6;
}

header {
    margin-top: 1%;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: transparent;
    z-index: 10;
}

nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #a0a0a0;
}

.hero {
    height: 100vh;
    background: url("images/pexels-nuzhet-flores-1032307-2000015.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #062c1d 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
}

section {
    padding: 80px 10%;
}

.about {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    padding: 3% 3%;
    flex: 1 1 50%;
}

.about-img {
    display: flex;
    justify-content: center;
    flex: 1 1 40%;
}

.about-img img {
    width: 80%;
    border-radius: 10px;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section video {
    width: 50%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
}

.contact {
    text-align: center;
}

.contact form {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input,
.contact textarea {
    padding: 15px;
    color: white;
    background-color: rgba(255, 222, 173, 0);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid rgb(254, 254, 254);
}

.contact button {
    margin-top: 5%;
    padding: 15px;
    background-color: #8dd98f;
    color: rgb(10, 63, 27);
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 1s;
}

.contact button:hover {
    background-color: #45a049;
}

/* ----------------- Responsive Design ----------------- */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .video-section video {
        width: 80%;
        height: auto;
    }

    .about {
        flex-direction: column;
    }

    .about-img img {
        width: 90%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 60px 5%;
    }

    .about-text {
        padding: 0;
    }

    .video-section video {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    nav {
        gap: 30px;
    }

    .contact input,
    .contact textarea {
        font-size: 0.9rem;
    }
}