/* ============================
   GLOBAL STYLES
============================ */
html, body {
    background: transparent !important;
    font-family: "Finlandica", sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fff;
    gap: 20px;
}

h1, h2, h3, h4, h5, h6,
label, p {
    color: #fff;
}


/*============================
   TOP NAVBAR
============================*/
.top-navbar {
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the left side email + phone vertically */
.top-navbar .col-md-6 {
    display: flex;
    align-items: center;
}

.top-navbar .list-group {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

/* Contact list (email + phone) */
.top-contact {
    display: flex;
    align-items: center;
    gap: 40px;
}

.top-contact li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

/* Social Icons Right Side */
.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-social li {
    display: flex;
    align-items: center;
    color: #fff;
}

/* Move the "Follow Us" block slightly closer to the right edge
     - Target the right column which has `text-md-end` and make its
         flex children justify to the end.
     - Reduce gap between social icons for a more compact look. */
.top-navbar .col-md-6.text-md-end { justify-content: flex-end; }
.top-social { gap: 10px; }

.top-nav-link {
    color: #fff !important;
    font-size: 14px;
}


/* ============================
   MAIN NAVBAR
============================ */
.main-navbar {
    background: transparent !important;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

/* Logo */
.brand-logo {
    height: 42px;
    width: auto;
    margin-right: 10px;
}

.brand-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Navigation Links */
.navbar .nav-link {
    padding: 15px 12px !important;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff !important;
}

.navbar .nav-link:hover {
    color: #dc2126 !important;
}

/* Login / Register Button */
.nav-btn {
    background-color: #dc2126;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
}

.nav-btn:hover {
    background-color: #b51a1f;
}


/* ============================
   VIDEO HEADER (FULLSCREEN)
============================ */
.video-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Centered Text */
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.video-content h1 {
    font-size: 60px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.video-content p {
    font-size: 22px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}


/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {

    .video-content h1 { 
        font-size: 36px; 
    }

    .video-content p { 
        font-size: 16px; 
    }

    .navbar .nav-link {
        padding: 12px !important;
    }

    .top-contact {
        gap: 20px;
        font-size: 13px;
    }
}
