/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  font-family: "Epilogue", sans-serif;
}

/* VIDEO */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
        user-select: none;      /* prevents selection */
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.65);*/
    z-index: -1;
}

/* CONTENT CENTER */
.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #fff;
    padding: 20px;
}

/* TEXT STYLING */
.subtitle {
    color: #f9ed03;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;

}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.desc {
max-width: 600px;
    margin-bottom: 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 140%;
}

/* BUTTONS */
.hero-buttons {
display: flex;
    gap: 15px;
    z-index: 0;
    position: relative;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary {
    background: #fff200;
    color: #000;
}

.btn.primary:hover {
    background: #cac005;
}

.btn.secondary {
    background: #fff;
    color: #000;
}
