/* Reset základních stylů */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    text-align: center;
    color: white;
}

.header-image {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 400px;
}

nav {
    background: #333;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
}

main h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

main p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Slideshow */
.slideshow-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    overflow: hidden; /* Skryje obrázky mimo zobrazenou oblast */
    position: relative;
    width: 100%; /* Ujistí se, že slideshow nezpůsobí horizontální posouvání */
}

.slideshow-container img {
    width: 33.33%; /* Zobrazí 3 obrázky vedle sebe */
    max-width: 33.33%;
    border-radius: 8px;
    transition: transform 0.5s ease-in-out;
    flex-shrink: 0; /* Zajistí, že obrázky nebudou zmenšovány */
}

/* Responsivita pro mobilní zařízení */
@media (max-width: 768px) {
    .slideshow-container {
        width: 100%; /* Ujistí se, že slideshow nebude způsobovat horizontální posouvání */
    }
    .slideshow-container img {
        width: 100%; /* Na mobilu bude každý obrázek na celé šířce */
    }
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 20px 10px;
    text-align: center;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.footer-section p, .footer-section a {
    color: #555;
    font-size: 14px;
}

.footer-section a img {
    width: 24px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.footer-section a img:hover {
    transform: scale(1.2);
}

footer p {
    color: #888;
}

/* Kontaktní stránka */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap; /* Umožní, aby se sloupce přizpůsobily */
}

.contact-column {
    flex: 1;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    min-width: 300px; /* Zajistí, že sloupce nebudou příliš úzké */
}

.contact-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-column p {
    font-size: 16px;
    margin-bottom: 10px;
}

#map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/* Responsivita pro mobilní zařízení */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Na mobilu se sloupce změní na jeden */
        align-items: center; /* Sloupce budou centrovány */
    }

    .contact-column {
        width: 100%; /* Každý sloupec zabere celou šířku */
        margin-bottom: 20px; /* Vytvoří prostor mezi sloupci */
    }

    #map {
        height: 200px; /* Zmenšíme výšku mapy pro mobilní zařízení */
    }
}


/* Profilová stránka */
#user-profile {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.profile-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.user-info h3 {
    font-size: 24px;
    color: #333;
}

.profile-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.profile-details li {
    margin-bottom: 10px;
}

.profile-actions button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

.profile-actions button:hover {
    background-color: #cc5200;
}

.profile-history {
    margin-top: 20px;
    text-align: left;
}

/* Reset základních stylů */
body, h1, h2, h3, h4, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top center;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    color: white;
    width: 100%;
}

.header-image {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 200px;
}

nav {
    background: #333;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

/* Main Content */
main {
    padding: 20px;
    width: 100%;
}

/* Tiny House Section */
#tiny-house {
    text-align: center;
}

.tiny-house-image {
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
}

.maps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.map-container {
    width: 48%;
}

.google-map {
    width: 48%;
}

.reservation-calendar {
    margin-top: 30px;
}

.pricing {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.pricing-column {
    width: 48%;
    padding: 20px;
    border-radius: 8px;
}

.green {
    background-color: #e0f7e0;
}

.red {
    background-color: #f7e0e0;
}

.activities {
    margin-top: 30px;
    text-align: center;
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 20px 10px;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 10px;
    width: 100%;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.footer-section p, .footer-section a {
    color: #555;
    font-size: 14px;
}

.footer-section a img {
    width: 24px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.footer-section a img:hover {
    transform: scale(1.2);
}

footer p {
    color: #888;
}

/* Responsivita pro mobilní zařízení */
@media (max-width: 768px) {
    .maps {
        flex-direction: column;
        align-items: center;
    }

    .map-container, .google-map {
        width: 100%;
        margin-bottom: 20px;
    }

    .pricing {
        flex-direction: column;
        align-items: center;
    }

    .pricing-column {
        width: 80%;
        margin-bottom: 20px;
    }

    .reservation-calendar img {
        width: 100%;
    }
}

