/* Base styles */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

:root {
    --red-color: #FF0000;
    --yellow-color: #FFFF00;
    --blue-color: #0000FF;
    --red-color-dark: #CC0000;
    --yellow-color-dark: #CCCC00;
    --blue-color-dark: #0000CC;
    --dark-color: #36393F;
    --black-color: #161716;
    --black-color-light: #141816;
    --white-color: #fffafa;
    --white-color2: #f4f4f4;
    --gray-color: #d0d0d0;
    --gray-color2: #969696;
    --dark-shadow: 1px 1px 2px var(--dark-color);
    --light-shadow: text-shadow: 0px 1px 1px rgba(22, 23, 22, 0.20);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white-color);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black-color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--red-color);
    border-radius: 2px;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 7rem;
    width: 100%;
    z-index: 999;
}

.header-scroll {
    height: 4rem;
    background-color: var(--black-color-light);
    box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.835);
    transition: .5s ease;
}

#nav-logo {
    height: 5rem;
    transition: .5s ease;
}

.menu-text {
    display: flex;
    font-size: 1rem;
    gap: 1.5rem;
    margin-left: 10rem;
}

.header-nav ul a {
    color: var(--white-color);
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: var(--dark-shadow);
    transition: .5s ease;
}

.header-nav ul a:hover {
    color: var(--red-color);
}

.header-nav ul .menu-item {
    color: var(--white-color);
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: var(--dark-shadow);
    transition: .5s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    /* Ensures the same font as the rest of the menu */
    font-size: inherit;
    /* Ensures the same font size as the rest of the menu */
    line-height: inherit;
    /* Ensures the same line height as the rest of the menu */
}

.header-nav ul .menu-item:hover {
    color: var(--yellow-color);
}

/* Add this CSS to specifically remove default button styles */
.language-switch-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: white;
    cursor: pointer;
    text-shadow: inherit;
    text-transform: inherit;
    font-weight: inherit;
    text-align: left;
    /* Align text to the left to match other menu items */
}

#hero {
    position: relative;
    width: 100%;
    height: 50vh;
    /* Set the height to half the viewport height */
    overflow: hidden;
}

#hero img {
    width: 100%;
    height: 50vh;
    /* Ensure the image takes half the viewport height */
    object-fit: cover;
}

.overlay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    /* Match the height of the overlay to the image */
    background-color: rgba(23, 23, 22, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: var(--white-color);
    font-size: 1.8rem;
    text-shadow: var(--dark-shadow);
    text-align: center;
    padding: 1.2rem;
    max-width: 100%;
}

.hero-button {
    margin-top: 2rem;
    /* Adjusted margin for better spacing */
    padding: 1rem;
    border-radius: .7rem;
    font-size: 1rem;
    text-shadow: 1px 1px 1px #17171649;
    border: none;
    font-weight: 500;
    background-color: var(--red-color);
    color: var(--white-color);
    transition: .3s ease-in-out;
}

.hero-button:hover {
    background-color: transparent;
    border: 1px solid var(--gray-color);
    transform: scale(1.1);
}

.hero-button i {
    margin-right: .5rem;
}

.menu-btn {
    display: none;
    cursor: pointer;
}

.menu-btn i {
    color: var(--red-color);
    text-shadow: var(--dark-shadow);
    font-size: 2.3rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    background-image: url(../images/menu-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white-color);
    box-sizing: border-box;
    animation: none;
}

@keyframes showMenu {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes hideMenu {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.mobile-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 1.5rem;
    gap: 2rem;
    margin: 5rem 0;
}

.mobile-menu ul a {
    transition: .3 ease;
}

.mobile-menu ul a:hover {
    color: var(--red-color);
}

.close-btn {
    cursor: pointer;
    position: absolute;
    top: 5%;
    left: 85%;
    font-size: 1.5rem;
    color: var(--red-color);
}

.nav-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.8rem;
    padding-top: 2rem;
}

.nav-social-links a:nth-child(1),
.nav-social-links a:nth-child(2),
.nav-social-links a:nth-child(3) {
    color: var(--red-color);
}


/* About us */
#about-us {
    margin: 5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 2000px;
    padding: 0 3rem;
}

#about-us img {
    width: 50%;
    height: 30vh;
    object-fit: cover;
    border-radius: 1rem;
    margin-right: 2rem;
}

.about-content {
    width: 50%;
    margin-left: 2rem;
}

.about-content p {
    font-size: 1.25rem;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content li {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.about-content li i {
    color: green;
    margin-right: 0.5rem;
}

/* Additional info */
#additional-info {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 2000px;
    padding: 0 3rem;
}

.additional-content {
    width: 100%;
}

.additional-content p {
    font-size: 1.2rem;
}

/* Form */
#form {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 1rem;
    background-color: #fff;
}

#form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 3;
}

.form-group.captcha {
    display: flex;
    align-items: center;
}

.form-group.captcha label span {
    font-weight: bold;
    margin-left: 0.5rem;
}

.form-group.captcha input {
    flex: 1;
    margin-left: 1rem;
    margin-right: 0.5rem;
}

.form-group.captcha button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

button[type="submit"] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #007BFF;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }

    .menu-text {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    #hero img,
    .overlay-video,
    #hero {
        height: 30vh;
    }

    .hero-text {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .hero-button {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    #about-us,
    #additional-info {
        flex-direction: column;
        padding: 0 1rem;
    }

    #about-us img,
    .about-content {
        width: 100%;
        margin: 0;
    }

    .about-content p,
    .about-content ul,
    .about-content li {
        font-size: 1rem;
    }

    .additional-content p {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    color: white;
    background: var(--black-color-light);
    padding-top: 1rem;
    font-size: 1rem;
}

.footer-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.footer-content p {
    width: 190px;
    margin: auto;
    padding: 7px;
}

.footer-content ul {
    text-align: center;
}

.social-icons {
    text-align: center;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    text-align: center;
    padding: 5px;
}

.social-icons i {
    color: white;
    font-size: 25px;
}

.social-icons i:hover {
    color: var(--red-color);
}

.bottom-bar {
    background: var(--red-color-dark);
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
    font-weight: bold;
}

.bottom-bar p {
    color: var(--white-color2);
    text-shadow: var(--light-shadow);
    margin: 0;
    font-size: 1rem;
    padding: 7px;
}

p.credits {
    font-size: .8rem;
}

.credits a {
    color: #0f3846;
}

.waves {
    width: 100%;
    max-height: 100px;
    position: relative;
    top: 5px;
}

#contact-us {
    padding: 2rem 3rem;
    background-color: var(--black-color-light);
    color: var(--white-color);
    text-align: center;
}

#contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background-image: linear-gradient(to right, #CC0000, #FF0000);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.awesome-font {
    font-family: 'Awesome Font', sans-serif;
}

.contact-map {
    flex: 1;
    max-width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}