﻿:root {
    --bg: #0f1724;
    --accent: #dca100;
    --muted: #e3e8ef;
    --glass: rgba(255,255,255,0.03);
    --radius: 16px;
    --max-width: 1400px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter,Lexend,system-ui,-apple-system,"Segoe UI",Roboto,'Helvetica Neue',Arial;
    color: #e6eef6;
    background: linear-gradient(180deg,var(--bg),#071025);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

span.orange {
    color: #dca100;
    line-height: 3;
    font-weight: bold;
}

p.orange-contact {
    color: #dca100;
}

.site-header {
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 4px 30px rgba(2,6,23,0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.hero-image img {
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(2,6,23,0.6);
}

.hero-image img {
    max-width: 600px;
    width: 100%;
}

img.logo-small {
    max-width: 300px;
    margin-bottom: 40px;
    margin-top: 10px;
    border-radius: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.main-nav a {
    color: #0a1324;
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
}

.brand-left img {
    width: 350px;
}

.brand-right img {
    width: 200px;
}

.main-nav a:hover, .main-nav a:focus {
    color: #dca100;
    background: var(--glass);
}

.hamburger {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        height: 2px;
        background: #fff;
        margin: 5px 0;
        border-radius: 2px;
    }

.hero {
    padding: 2rem 0 4rem;
    display: grid;
    gap: 1.6rem;
}

.video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(2,6,23,0.6);
}

    .video-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.unmute-overlay-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 10px 14px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
    background: #111;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    opacity: 0.95;
}

.copy {
    text-align: center;
    padding-top: 2rem;
}

    .copy h1 {
        font-family: Lexend,Inter,sans-serif;
        font-weight: 600;
        margin-bottom: .6rem;
        color: var(--accent);
        font-size: clamp(1.4rem, 2.5vw, 2rem);
    }

    .copy h2 {
        font-family: Lexend,Inter,sans-serif;
        font-weight: 600;
        margin-bottom: .6rem;
        color: #dca100;
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        text-align: center;
    }

.check::before {
    content: "✔ ";
    color: #dca100;
    font-weight: bold;
}

.hero-image h1 {
    color: #dca100;
    text-align: center;
    padding-bottom: 30px;
    font-size: 34px;
    line-height: 1.2;
}

.copy p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

p.title {
    color: #dca100;
    text-align: center;
    padding-bottom: 30px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: bold;
}

p.yellow {
    color: var(--accent);
    font-weight: bold;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 2rem 0;
    background: #060b19;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-nav {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
}

    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav a {
        color: #dca100;
        text-decoration: none;
        font-weight: 600;
        text-align: justify;
        padding: 15px;
    }

    .footer-nav li {
        list-style: none;
    }

.credentials p {
    margin-top: 1rem;
}

.contact-section {
    padding: 50px 0;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

    .contact-inner h2 {
        text-align: center;
        margin-bottom: 30px;
        font-family: 'Inter', sans-serif;
    }

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-family: 'Inter', sans-serif;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

button[type="submit"] {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #dca100;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button[type="submit"]:hover {
        background-color: #b78602;
    }

.contact-info {
    margin-top: 30px;
    padding: 50px;
    background: var(--glass);
    border-radius: 10px;
    text-align: center;
    line-height: 1.6;
}

    .contact-info a {
        color: var(--accent);
        font-weight: 600;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

    .contact-info p {
        font-size: 18px;
    }

li.footer-contact.center {
    flex-basis: 100%;
    text-align: center;
}
.footer-nav p {
    font-weight: bold;
}

@media (max-width: 600px) {
    .contact-inner {
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .footer-nav a {
        font-size: 14px;
    }
    li.footer-contact {
        flex-basis: 100%;
        text-align: center;
    }
        .footer-nav a {
            padding-right:0px;
        }
        .main-nav {
            position: fixed;
            inset: 0;
            left: 100%;
            width: 80%;
            max-width: 320px;
            padding: 2rem;
            transition: left .25s ease;
        }

    nav#main-nav ul {
        background: #f0f0f0;
        margin-top: 15%;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-direction: column;
    }

    .main-nav.open {
        left: 20%;
    }

    .main-nav a {
        padding: 0 10px 0 10px;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 55%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 60;
        background: none;
        border: none;
        width: auto;
        height: auto;
        padding: 0;
        cursor: pointer;
    }

        .hamburger img {
            display: block;
            width: 30px !important;
            height: 30px !important;
        }

    .brand-left {
        margin-right: auto;
    }

    .brand-right {
        margin-left: auto;
        display: block;
    }

    .brand-left img {
        border: 0px solid #fff;
    }

    .container {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .brand-left img {
        width: 100px;
    }

    .brand-right img {
        width: 40px !important;
        height: 40px !important;
    }
}
