﻿body {
    font-family: "Segoe UI", Arial;
}

/* ================= TOP HEADER ================= */

.top-header {
    background: #f322b0;
    color: white;
    padding: 12px 0;
}

    .top-header a {
        color: white;
        text-decoration: none;
        margin-left: 15px;
        font-size: 14px;
    }

.logo-text {
    font-size: 18px;
    font-weight: 500;
    margin-left: 10px;
}

/* ================= MAIN MENU ================= */

.main-menu {
    background: #f3f3f3;
    border-bottom: 1px solid #ddd;
}

    .main-menu a {
        color: #0b2c4d;
        font-weight: 500;
        margin-right: 25px;
        text-decoration: none;
        font-size: 15px;
    }

/* ================= HERO ================= */

.hero {
    background: url("https://images.unsplash.com/photo-1521587760476-6c12a4b040da") center/cover;
    height: 420px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 40px;
    max-width: 600px;
    margin-left: 40px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
}

.hero p {
    font-size: 22px;
}

/* ================= ACCESS SECTION ================= */

.access-section {
    padding: 70px 0;
}

.access-card {
    max-width: 230px;
}

/* ================= MOBILE ================= */

@media(max-width:768px) {

    .hero {
        height: 520px;
    }

    .hero-overlay {
        margin: 20px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .main-menu {
        display: none;
    }
}

.offcanvas {
    height: 100vh;
}

.offcanvas-body {
    overflow-y: auto;
}

.offcanvas-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.top-header a {
    margin-right: 10px;
}