/* ======================================================
   1. RESET & BASE
====================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}


/* ======================================================
   2. TYPOGRAPHY
====================================================== */

.section-title {
    text-align: center;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 8px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    line-height: 1.8;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.9;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}


/* ======================================================
   3. HERO
====================================================== */

.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 60%);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #0b0b0b);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-inner h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-inner p {
    margin-top: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}


/* ======================================================
   4. VIDEO GRID
====================================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
}

.video-grid video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
    cursor: pointer;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.video-grid video:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}


/* ======================================================
   5. RESPONSIVE
====================================================== */

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
.grid-note {
    text-align: center;
    margin: 20px auto 60px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}


/* ======================================================
   ABOUT / CONTACT SECTION
====================================================== */

.about-section {
    padding: 80px 40px;
    background: #0b0b0b;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.about-image img {
    width: 120px;   /* 👈 MEGET MINDRE */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

.about-text h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.about-description {
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 0.8rem;
    line-height: 1.9;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
}

.about-contact p {
    margin: 6px 0;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
