*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'tahoma';
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    background-image: url('../images/falls.gif'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    color: #fff; 
}

* { cursor: default !important; }

header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #333;
    padding: 20px;
}

h2 {
    text-decoration: underline;
}

p {
    white-space: pre-line;
}

nav {
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 100%;
    max-width: 800px; 
    padding: 0;
    margin: 0 auto;
}

nav ul li {
    flex-grow: 1;
    text-align: center;
}

nav ul li a {
    display: block;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active {
    color: #0e633891;
}

nav ul li a:hover {
    color: #0e633891;
    transform: scale(1.2);
    
}

main {
    margin-top: 60px;
    padding: 40px;
}

section {
    background: rgba(0, 0, 0, 0.623);
    padding: 20px;
    margin: 20px 20px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

button {
    background-color: #0e633891;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}


button:hover {
    background-color: #0e633891;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 25px;
    background-color: #0e633891;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #0a4a2f;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

#image-upload, button {
    margin-top: 10px;
    display: block;
}

.whisay-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.application-box {
    width: 300px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.application-box input,
.application-box button {
    margin: 10px 0;
    display: block;
    width: 100%;
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.button-container,
.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}


.text-container p {
    margin: 0;
    white-space: pre-wrap;
}

#image-upload {
    flex-grow: 1;
    max-width: 250px; 
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-container iframe {
    max-width: 100%;
    height: 500px;
}

.w3-display-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

a {
    all: unset;
    display: block;
    text-align: center;
    margin: auto;
    float: none;
    width: fit-content;
    text-decoration: none;
    color: inherit;
}


@media (max-width: 768px) {
    
    html, body {
        height: 100%; 
        overflow: auto;
        overflow: hidden;
    }

    body {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        padding-bottom: env(safe-area-inset-bottom);
    }

    main {
        height: 100%;
        overflow: auto;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 10px;
    }


    h1 {
        font-size: 1.8em;
    }

    main {
        padding: 20px;
    }

    section {
        padding: 15px;
        overflow-y: scroll;
        scroll-behavior: smooth;
    }
    .input-container {
        flex-direction: column;
        align-items: center;
    }

    #image-upload, button {
        width: 100%;
        max-width: 250px;
    }

    text-container {
        flex-direction: column;
        align-items: center;
    }

    .text-container p {
        text-align: center;
        width: 100%;
    }

}
