*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a2030;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:link,
a:visited {
    color: #d4892a;
}

a:hover {
    color: #e8a84c;
}

h1,
h2 {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

p {
    margin: 0 0 1em;
    overflow-wrap: break-word;
}

p:last-child {
    margin-bottom: 0;
}

/* ── Header ── */

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    animation: fadeIn 0.6s ease-out;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.site-brand:link,
.site-brand:visited {
    color: #fff;
}

.site-brand:hover {
    color: #fff;
}

.site-brand img {
    opacity: 0.9;
}

.site-header nav {
    display: flex;
    gap: 1.5rem;
}

.site-header nav a:link,
.site-header nav a:visited {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

.site-header nav a:hover {
    color: #fff;
}

.site-header nav a[aria-current="page"] {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* ── Layout ── */

.container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

/* ── Content Cards (glassmorphism) ── */

.content-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    animation: fadeSlideIn 0.8s ease-out;
}

.content-card-overlay {
    position: fixed;
    top: max(70px, 8%);
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: min(800px, 96%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    overflow: auto;
    animation: fadeSlideIn 0.8s ease-out;
}

/* ── Typography ── */

h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6em;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    margin-bottom: 0.6em;
}

/* ── Social Links ── */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.social-link:link,
.social-link:visited {
    display: flex;
    align-items: center;
    gap: 0.75em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.4em 0;
    min-height: 44px;
}

.social-link:hover {
    color: #fff;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── Media Rows ── */

.media-links {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    margin-bottom: 1.5em;
}

.media-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.media-row span {
    min-width: 3.5em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.media-icon {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
}

.media-icon svg {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.6);
    transition: fill 0.2s ease;
    vertical-align: middle;
}

.media-icon:hover svg {
    fill: #fff;
}

/* ── Blockquote ── */

.indent {
    display: block;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    margin: 1.5em 0;
}

/* ── Background Video ── */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    animation: videoFadeIn 2s ease-in 0.5s forwards;
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* ── Video / Background Overlay ── */

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.05) 25%,
        rgba(0, 0, 0, 0.05) 75%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

/* ── OCVA Background ── */

.ocva-background-image {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/ocva-no-text.jpg) no-repeat center center;
    background-size: cover;
    pointer-events: none;
}

/* ── Contact Form ── */

.contact-card {
    margin-top: 1.5rem;
}

.contact-card h2 {
    margin-bottom: 1.25rem;
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.35rem;
}

.field .required {
    color: #d4892a;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(255, 255, 255, 0.35);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.hp {
    display: none;
    position: absolute;
    left: -9999px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 980px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-submit:disabled {
    opacity: 0.4;
    cursor: default;
}

.msg {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
    display: none;
}

.msg.success {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}

.msg.error {
    background: rgba(255, 107, 107, 0.12);
    color: #ff6b6b;
}

/* ── Animations ── */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes videoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ── Responsive ── */

@media (max-width: 767px) {
    .site-header {
        padding: 1rem 1.25rem;
    }

    .site-brand {
        font-size: 1.1rem;
    }

    .site-header nav {
        gap: 1rem;
    }

    .site-header nav a:link,
    .site-header nav a:visited {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 1.25rem 1.5rem;
    }

    .content-card {
        padding: 1.25rem;
    }

    .content-card-overlay {
        top: 55px;
        padding: 1.25rem;
    }

    .indent {
        padding-left: 1rem;
    }

    body {
        font-size: 1rem;
    }
}

@media (max-width: 374px) {
    .site-brand span {
        display: none;
    }

    .site-header nav {
        gap: 0.75rem;
    }
}
