/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0a0a0a;
    color: white;
}


/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #111;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.btn {
    background: #76b900;
    padding: 8px 14px;
    border-radius: 6px;
}


/* ===== HERO ===== */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: auto;
    opacity: 0.8;
}

.big-btn {
    display: inline-block;
    margin-top: 30px;
    background: #76b900;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}


/* ===== ABOUT ===== */
.about {
    padding: 80px;
    text-align: center;
    background: #151515;
}


/* ===== VIDEO PAGE ===== */
.video-page {
    overflow: hidden;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


/* dark overlay */
.video-page::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}


/* overlay text */
.video-overlay {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
}

.video-overlay h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.video-overlay p {
    font-size: 18px;
    max-width: 600px;
}


/* back button */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    text-decoration: none;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 8px 14px;
    border-radius: 6px;
}
