/* 
SUMMARY: 

Global CSS properties. This file will be referenced in all HTML files.

DEV INFO:

For developer information, see 'nanoens-web/documentation/dev.txt' file.

NOTES:

Home CSS file, this code will be applied the home/index page.

Last Updated: 06/30/2025

*/

/* CODE */

.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.brand-content {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
}

main, .brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 48px;
    font-weight: bold;
}

.main-container {
    width: 75%;
    padding: 2%;
    margin: 4%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.branding {
    width: 50vw;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(23, 35, 46);
    width: 100vw;
}

.contact {
    background-image: url("../resources/bg/contactbg.jpg");
    background-size: cover; /* Ensures the image covers the entire page */
    background-repeat: no-repeat;
    background-position: center;
}

.main-container, .contact .main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.contact .main-container {
    padding: 6%;
}

.icon-span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80%;
}

.icon-span i {
    font-size: 64px;
}

/* Contact section & form */

.inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left, .right {
    width: 35vw;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10vh;
}

.inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

input, select {
    width: 15vw;
    padding: 4px;
    font-size: 24px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px;
}

select {
    cursor: pointer;
}

option {
    color: black;
}

@media (max-width: 575.98px) {
    /* Styles for extra small devices (portrait phones) */
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /* Styles for small phones */
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Styles for tablets */
}