/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* OUTFIT FONT */
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* HERO BACKGROUND */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/img/wien.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(20 17 65 / 83%), #000000), url(assets/img/wien.jpg);
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* TEXT */
.headline {
    font-size: 34px;
    margin-bottom: 10px;
    font-family: Outfit, sans-serif;
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.subheadline {
    font-size: 28px;
    color: #ccc;
    margin-bottom: 40px;
    font-family: Outfit, sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* VIDEO FIXED SIZE */
.video-wrapper {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 1140 / 641;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    background: #000;
}

/* VIDEO WRAPPER */
.video-wrapper {
    position: relative;
    width: 1140px;
    max-width: 100%;
    margin: 0 auto 40px;
}

/* VIDEO */
.video-wrapper video {
    width: 100%;
    aspect-ratio: 1140 / 641;
    border-radius: 6px;
    background: #000;
    display: block;
}

/* OVERLAY DARK */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
}

/* PLAY BUTTON */
.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.5);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.7);
}

/* TRIANGLE */
.play-button::after {
    content: "";
    position: absolute;
    left: 38%;
    top: 30%;
    border-left: 24px solid white;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

/* CTA SAME WIDTH */
.container-medium-637px {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(0,0,0,0.9);
    padding: 40px 20px;
    border-radius: 6px;
}

/* CTA TEXT */
.subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: Outfit, sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.subtitle span {
    color: #e40739;
}

.image-center img {
    max-width: 100%;
    margin: 20px 0;
}

.paragraph {
    margin-bottom: 25px;
    font-family: Outfit, sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-size: 18px;
}

/* BUTTON */
.button-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #e40739;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-family: Outfit, sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.button-primary:hover {
    background: #b3052d;
}

/* FOOTER (NO BLUR) */
.footer {
    background: #000;
    text-align: center;
    padding: 40px 20px;
}

.footer .logo {
    color: #c9a96e;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.footer-links a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer .copyright {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }

    .subtitle {
        font-size: 14px;
    }
    .subheadline{
        font-size: 20px;
    }
    .paragraph{
        font-size:16px;
    }
}