@font-face {
    font-family: 'Amsterdam Four';
    src: url('fonts/AmsterdamFour.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #a4133c;
    --text-color: #333;
    --bg-color: #f9eae1;
    --max-width: 800px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.font-amsterdam {
    font-family: 'Amsterdam Four', cursive;
    font-weight: normal;
}

.hero {
    text-align: center;
    padding: 60px 0px 20px 0px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.hero-date {
    font-size: 1.3rem;
    margin-top: 20px;
    font-weight: bold;
}

/* Obecné sekce */
.wedding-section {
    margin-bottom: 80px;
    text-align: center;
}

.wedding-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-content .text {
    font-size: 1.1rem;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background-color: var(--bg-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 25px;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.map-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 10px;
}

.hero-layout {
    position: relative;
    width: 100%;
}

.image-wrapper {
    width: 100%;
}

.image-wrapper img {
    width: 100%;     /* Roztáhne obrázek na celou šířku containeru */
    height: auto;
    display: block;
}

.responsive-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Pokud používáš zaoblení */
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Mezera mezi textem a ikonou */
}

.icon-link {
    color: var(--primary-color);
    font-size: 1.5rem; /* Velikost ikony */
    text-decoration: none;
    transition: opacity 0.3s;
}

.icon-link:hover {
    opacity: 0.7;
}

footer {
    padding: 20px;
    text-align: center;
    background: var(--bg-color);
    margin-top: 20px;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .section-content {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
    }
    
    .section-content img {
        width: 45%;
        margin-bottom: 0;
    }

    .section-content .text {
        text-align: justify;
    }

    .wedding-section:nth-of-type(even) .section-content {
        flex-direction: row-reverse;
    }
}

@media (max-width: 767px) {
    .mt-mobile {
        margin-top: 30px !important; /* Uprav si velikost (20px) podle potřeby */
    }
}

.img-centered {
    display: block;
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .img-centered {
        width: 80%;
    }
}

.list-clean {
    list-style-type: none; /* Odstraní tečky */
    padding: 0;            /* Odstraní odsazení zleva */
    margin: 20px 0;        /* Mezera nad a pod celým seznamem */
}

.list-clean li {
    margin-bottom: 10px;   /* Mezera mezi jednotlivými řádky */
    display: block;        /* Jistota, že každý bod bude na novém řádku */
}