@import url('https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&family=Cinzel+Decorative:wght@400;700;900&display=swap');

.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}



/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: #f8f5f2;
}

.container {
    width: 100%;
    background: url(pokus.png);
    background-size: cover;
    background-repeat: no-repeat;
   
}

/* Wrapper pro centrovaný obsah */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

/* Hero sekce */
.hero {
    background:url(zahlavi.png);
    background-size: cover;
    color: #ffffff;
    width: 100%;

}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 1px;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}


.subtitle {
    font-size: 2rem;
    opacity: 0.9;
    color: rgb(253, 177, 69);
    font-style: italic;
     font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;

}

/* Main content */
main {
    padding: 0;
}

/* Profile sekce */
.profile-section {
    width: 100%;
    min-height: 500px
}

.profile-section.alt-bg {
    background: url(flame.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.profile-section.centered .content-wrapper {
    grid-template-columns: 1fr;
    padding: 4rem 3rem;
}

.content-wrapper h1 {

top: 5rem;


}

.text-content {
    padding: 3rem;
    color: #e6e6e6;
}

.text-content.wide {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h1 {

font-size: 5rem;
font-family: "Cinzel Decorative", serif;
font-weight: 700;
font-style: normal;
color: #fec853;

}



.text-content h2 {
    font-size: 4rem;
    font-family: "Cinzel Decorative", serif;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #e6e6e6;
 
}

h3 {
    font-size: 2.5rem;
    font-family: "Cinzel Decorative", serif;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #ffffff;

 
}


.text-content p {
    margin-bottom: 0;
    font-size: 1.05rem;
    text-align: justify;
}

/* Obrázky */
.image-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
    
}



.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

    


.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 173, 65, 0.984);
    color: #590f2e;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    font-style:italic;
    font-weight: 400; 
}



/* Řada obrázků pro layout-center */
.images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.images-row .image-container {
    min-height: 400px;
}

/* Citát */

.quote-section {
    width: 100%;
    padding: 4rem 3rem;
    
}

.quote-section .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}


/* Footer */
footer {
    background: #590f2e;
    color: #fec853;
    width: 100%;
}


.footer-content {
    max-width: 1200px;
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    padding-top: 5rem;
    font-size: 1.2rem;
}

.footer-content:hover {
    color: #e6e6e6;
    font-size: 1.9rem;
    transition: ease-in-out 0.8s;
    cursor: pointer;
}

/* Responzivní design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .content-wrapper,
    .images-row {
        grid-template-columns: 1fr !important;
    }

    .content-wrapper.reverse {
        direction: ltr;
    }

    .text-content {
        padding-right: 5rem;
    }

    .image-container {
        min-height: 300px;
    }

    blockquote {
        font-size: 1.3rem;
    }

    blockquote::before {
        left: -20px;
        font-size: 3rem;
    }
}