/* ===================== Reset základních stylů ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================== Tělo stránky ===================== */
body {
    font-family: 'Merriweather', serif;
    background-color: #fff8f0;
    color: #333;
    line-height: 1.6;
}

/* ===================== Hlavicka ===================== */
/* .hlavicka {
    background-image: url("pozadiGPT.png");
    background: lightblue;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid pink;
}

.hlavicka h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #ffffff;
} */
 .hlavicka {
    position: relative;
    height: 300px;
    background: url("pozadiGPT.png") center / cover no-repeat;
    text-align: center;
    padding: 140px 20px;
    border-bottom: 2px solid pink;
    overflow: hidden;

    --overlay-opacity: 0;
}

.hlavicka::after {
    content: "";
    position: absolute;
    inset: 0;
    background: lightblue;
    opacity: var(--overlay-opacity);
    transition: opacity 0.1s linear;
    z-index: 1;
}

.hlavicka * {
    position: relative;
    z-index: 2;
}

.hlavicka h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #000000;
}



/* ===================== Menu ===================== */
.menu {
    background-color: #f08a99;
    text-align: center;
    padding: 15px 0;
}

.menu a {
    font-family: 'Great Vibes', cursive;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.8rem; /* větší než předtím */
    transition: all 0.3s;
}

.menu a:hover {
    color: #ffe4c4;
    transform: translateY(-2px);
}

.menu a.active {
    text-decoration: underline;
}

/* ===================== Tělo stránky ===================== */
.telo {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.telo h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: black;
    margin-bottom: 20px;
}

.telo h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: black;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ===================== Štítek obřadu ===================== */
.obrad-info {
    display: flex;
    flex-direction: column;
    gap: 15px; /* mezera mezi řádky */
    max-width: 400px;
    margin: 20px 0;
    background-color: #f0f8f5; /* jemně zelený podklad */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    background-color: #f08a99;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-circle i {
    line-height: 1;          /* odstraní vertikální odsazení */
    vertical-align: middle;  /* centrování */
    transform: translateY(0); /* jemné doladění, pokud je potřeba */
}

.hostina-info {
    display: flex;
    flex-direction: column;
    gap: 15px; /* mezera mezi řádky */
    max-width: 400px;
    margin: 20px 0;
    background-color: #f0f8f5; /* jemně zelený podklad */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===================== Footer ===================== */
.paticka {
    text-align: center;
    padding: 20px;
    background-color: #ec9ca8;
    border-top: 2px solid rgb(245, 171, 133);
    color: #ffffff;
    margin-top: 40px;
}

/* ===================== Responzivita ===================== */
@media (max-width: 600px) {
    .menu a {
        display: block;
        margin: 10px 0;
    }
    .hlavicka h1 {
        font-size: 2rem;
    }
    .telo h2 {
        font-size: 1.8rem;
    }
    .telo h3 {
        font-size: 1.5rem;
    }
    .obrad-info {
        max-width: 100%;
    }
}

div.obrad-info a{
    color: #ffffff;
}

div.obrad-info a:hover{
    text-decoration: underline;
}

div.hostina-info a{
    color: #ffffff;
}
div.hostina-info a:hover{
    text-decoration: underline;
}
/* ===================== Program svatebního dne ===================== */
.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.program-list li {
    background-color: #f0f8f5;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.program-list li .time {
    font-weight: bold;
    color: #ecb9c0;
    font-size: 1.1rem;
}
.program-list li .event {
    font-size: 1.1rem;
    color: #333;
}
.program-list li .event:hover {
    text-decoration: underline;
}
.program-list li:last-child {
    margin-bottom: 0;
}

/* ===================== Konec stylů ===================== */