body {
    margin: 0;
    background: black;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 18px;
    letter-spacing: 3px;
}

nav {
    display: flex;
    gap: 60px;
    margin-right: 15vw;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
}

nav a:hover {
    opacity: 0.6;
}

/* VIDEO SECTION */

.video-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -120px; /* 🔥 Video lejjebb 100px */
}

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* 🔥 fix cinema arány */
    background: black;
    cursor: pointer;
}


/* Gradient overlay */

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    z-index: 5;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: black;
    transition: opacity 0.4s ease;
}

#afterVideo {
    z-index: 2;
}

/* B/A BUTTON */

.control-btn {
    position: absolute;
    bottom: 250px;          /* fix a videó aljához */
    left: 50%;             /* középre vízszintesen */
    transform: translateX(-50%); /* balra tolás a középre helyezéshez */
    padding: 10px 28px;
    border-radius: 999px;
    border: 2px solid white;
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    display: none;         /* csak pause-nál jelenik meg */
}

.control-btn:hover {
    background: white;
    color: black;
}


/* CONTENT */

.content {
    padding: 140px 80px;
    margin-top: -40px; /* 🔥 Alsó tartalom lejjebb 200px */
    background: black;
    color: white;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.content p {
    max-width: 800px;
    line-height: 1.7;
    opacity: 0.8;
}
#about,
#contact {
    scroll-margin-top: 140px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 18px; /* távolság logo és szöveg között */
}

.brand-logo {
    height: 42px; /* itt tudod állítani a logó méretét */
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 20px;
    font-weight: 420;
    letter-spacing: 2px;
    color: white;
}

.brand-sub {
    font-weight: 200;
    font-size: 8px;
    letter-spacing: 5px;
    margin-top: 4px;
    color: white;
}
/* CONTACT LINKS - cinematic VFX style */

.contact-links {
    margin-top: 0px;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* IMDb logo kisebb, elegáns hover effekt */
.imdb-logo {
    height: 50px;   /* kisebb méret */
    width: auto;
    transition: opacity 0.25s ease;
}

.imdb-logo:hover {
    opacity: 0.6;
}

/* CV gomb stílus - fehér, kör alakú */
.cv-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;           /* kör átmérő */
    width: 40px;            /* kör átmérő */
    border: 2px solid white; 
    border-radius: 50%;     /* kör */
    font-family: 'Helvetica Neue', Arial, sans-serif; /* ugyanaz, mint ABOUT ME */
    font-size: 14px;        /* ABOUT ME menü mérete */
    font-weight: 500;       /* picit bold-osabb */
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cv-link:hover {
    background: white;
    color: black;
}
#contact {
    padding-top: 6px;
}
.contact-line {
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.85;
}

.divider {
    width: 1px;
    height: 16px;
    background: white;
    opacity: 0.4;
}