html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    /* background-color: #1e1e2f; */
    background: linear-gradient(45deg, #031528, #058dff 83%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================== NAVBAR ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333333cc;
    color: white;
    height: 10vh;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 3%;
    border-bottom: 1px solid black;
}
.nav-right {
    position: fixed;
    top: 0;
    right: 0;
    color: white;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 3%;
    justify-content: flex-end;
}

/* ================== MENU ================== */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

ul li {
    float: left;
}

ul li a {
    display: block;
    color: #058fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  color: #6b7280;
}
.navbar a:active {
    background-color: #031528;
}
/* ================== FOOTER ================== */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333333cc;
    color: #058fff;
    height: 10vh;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 5vh;
    border-top: 1px solid black;
}
.footer-text{
    margin: 0;
    flex: 0.8;
    text-align: right;
}

/* ===== TEXT ===== */
.title {
    color: #1085e4;
}

/* ===== Containers ===== */

.container {
    width: 90%;
    max-width: 900px;
    background: linear-gradient(90deg, #031528, #058dff 100%);
    color: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    height: 45vh;
    box-shadow: 0 20px 40px rgba(5, 141, 255, 0.3);
    border: 1px solid #0160ae;
}
.container-contact {
    width: 70%;
    max-width: 75%;
    margin: 60px auto;
    background: linear-gradient(90deg, #031528, #058dff);
    color: white;
    border-radius: 10px;
    padding: 1vh;
    box-shadow: 0 20px 40px rgba(5, 141, 255, 0.3);
    height: 73%;
    max-height: 75%;
    display: flex;
    flex-direction: column;
    border: 1px solid #0160ae;
}
/* ===== logo / img ===== */

.logo {
    border-radius: 50%;
    border: 3px solid #029afc;
    max-width: 579px;
    max-height: 463px;
    width: 25%;
    margin: 50px;
}

.navbar .logo {
    height: 6vh;
    max-height: 60px;
    width: auto;
    display: block;
    border: none;
    margin: 0;
}
/* ===== Buttons ===== */
.btn {
    background-color: #058fff;
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(5, 143, 255, 0.4);
    transition: all 0.3s ease;
    transform: translateY(-2px);
}
.btn:hover {
    background-color: #029afc;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(5, 143, 255, 0.5);
}

/* ==== CONTACT ===== */
.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vh;
}

.container-contact .logo {
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    height: 40vh;
    max-height: 70%;
    color: #0160ae;
    font-size: 14px;
    padding: 1vh;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 1vh;
    padding: 1vh;
    color: #0160ae;
}

.contact-form label {
    display: block;
    margin: 1vh 0;
}

.contact-form textarea {
    min-height: 7vh;
    max-height: 5vh;
    padding: 1vh;
    resize: none;
}

.container-contact .btn {
    margin-top: 15px;
    border: 1px solid #0160ae;
    height: 10vh;
}