/* Základní styly */
body {
    font-family: 'Charm', cursive; /* Nyní Charm pro základní text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #E6E6FA; /* Světle levandulové pozadí */
    color: #333; /* Tmavý text */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aby se obsah nepřilepil ke spodnímu okraji při malém obsahu */
    min-height: 100vh; /* Minimální výška zabírá celou obrazovku */
    overflow-x: hidden; /* Zabrání horizontálnímu scrollování */
}

/* Levandule v pravém horním rohu .container */
.container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background-image: url('levandule.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    transform: rotate(0deg);
}

/* Levandule v levém spodním rohu .container */
.container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background-image: url('levandule.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    transform: rotate(270deg) scaleX(-1);
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hlavička */
header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

h1 {
    font-family: 'Lovers Quarrel', cursive; /* Lovers Quarrel pro hlavní nadpis */
    font-size: 8em;
    color: #B57EDC;
    margin-bottom: 1px;
}

/* Sekce s detaily svatby */
.wedding-details {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.wedding-details h2 {
    font-family: 'Charm', cursive; /* Charm pro nadpisy sekcí */
    color: #B57EDC;
    font-size: 2em;
    margin-bottom: 20px;
}

.detail-item {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.detail-item .label {
    font-weight: bold;
    color: #B57EDC;
}

.detail-item .value {
    color: #444;
}

/* Sekce "Stránky se tvoří" */
.under-construction {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    color: #666;
    font-style: italic;
}

.under-construction h2 {
    font-family: 'Charm', cursive; /* Charm pro nadpis "Stránky se tvoří" */
    color: #B57EDC;
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Patička */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #aaa;
}

/* Responzivní design (pro všechny prvky, včetně levandulí) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .wedding-details h2 {
        font-size: 1.8em;
    }
    .container {
        margin: 20px auto;
        padding: 20px;
    }
    /* Menší obrázky levandulí na menších obrazovkách */
    .container::before, .container::after {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    .wedding-details h2 {
        font-size: 1.5em;
    }
    .detail-item {
        font-size: 1em;
    }
    /* Ještě menší obrázky levandulí na velmi malých obrazovkách */
    .container::before, .container::after {
        width: 60px;
        height: 60px;
    }
}