body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #f2d17a;
    font-family: "Inter", sans-serif;
    text-align: center;
}

/* HERO – výrazně menší výška */
.hero {
    padding: 30px 20px;
}

.magic-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
}

.magic-title span {
    color: #d4af37;
}

/* Větší kruhy + větší mezera, ale menší vertikální prostor */
.people {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 20px;
}

.person .circle {
    width: 110px;
    height: 110px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.person .name {
    margin-top: 6px;
    font-size: 22px;
}

.person .age {
    font-size: 20px;
    opacity: 0.8;
}

/* SECTIONS – minimální padding */
section {
    padding: 25px 20px;
}

h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* INFO – zvětšený Grill Bar Kabina */
.info p strong {
    font-size: 30px;
}

/* PROGRAM – menší mezery */
.program ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
}

/* RSVP – kompaktní */
.rsvp form {
    max-width: 350px;
    margin: 0 auto;
}

.rsvp input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #111;
    border: 1px solid #d4af37;
    color: #f2d17a;
}

.options label {
    display: block;
    margin: 6px 0;
}

button {
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

button:hover {
    background: #f2d17a;
}
/* Intro video overlay */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    transition: opacity 1s ease-out;
}

#intro-overlay video {
    width: auto;
    height: 100%;
    object-fit: contain;
}

#intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}
/* Skrytí intro videa na mobilech */
@media (max-width: 768px) {
    #intro-overlay {
        display: none !important;
    }
}
/* Mobilní fix – žádný horizontální posun */
@media (max-width: 768px) {

    /* Zmenšíme kruhy */
    .person .circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    /* Zmenšíme mezeru mezi M a M */
    .people {
        gap: 60px;
    }

    /* Zabráníme přetékání */
    body, html {
        overflow-x: hidden;
    }
}
/* Centrované video na desktopu */
#intro-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about {
    padding: 20px 20px;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #f2d17a;
}

/* ===========================
   MAGIC 8 – FOTKY POD KOLY
   =========================== */

.magic8-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.magic8-photos img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.photo-left,
.photo-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-label {
    margin-top: 12px;
    font-size: 22px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobilní verze */
@media (max-width: 768px) {
    .magic8-photos {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }

    .magic8-photos img {
        width: 160px;
        height: 160px;
    }
}
