@font-face {
    font-family: "Sloop Script Pro";
    src: url("SloopScriptPro-Bold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

/* Základný štýl stránky */
body {
    background-color: #f7f5f3;
    margin: 0;
    text-align: center;
    font-family: "Playfair Display", serif; /* ostatný text */
    color: #2f4f2f;
}


/* Stránka - dva stĺpce */
.page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Kontajner s obsahom */
.container {
    max-width: 520px;
    padding: 20px;
    text-align: left;
}

.container .title-small,
.container .names,
.container .date,
.container .divider {
    text-align: center;
}

/* Karusel s fotkami */
.carousel {
    position: relative;
    width: 480px;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Malý nadpis */
.title-small {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Zlatý nápis Frodo a Lula */
.names {
    font-family: "Sloop Script Pro", cursive;
    font-size: 72px;
    color: #b08d2f; /* zlatá farba */
    margin: 10px 0;
}

/* Dátum svadby */
.date {
    font-size: 22px;
    margin: 20px 0;
}

/* Ornament / divider */
.divider {
    margin: 30px 0 40px 0;
}

.divider img {
    width: 140px;
}

/* Ostatný text */
.text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bottom {
    margin-top: 40px;
}

/* Sekcia Obrad */
.section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
}

.info {
    display: inline-grid;
    grid-template-columns: auto auto;
    column-gap: 20px;
    row-gap: 6px;
    text-align: left;
    font-size: 20px;
    margin-bottom: 40px;
}

.obrad-images {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.obrad-images > * {
    flex: 1 1 440px;
    max-width: 480px;
    height: 340px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Keď je v riadku iba jedna mapa/fotka, nech zaberie celú šírku */
.obrad-images > *:only-child {
    flex: 1 1 110%;
    max-width: 900px;
}

.obrad-images img {
    width: 100%;
    object-fit: cover;
}