* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

body {
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
    font-display: swap;
}

/* Navigace */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 155px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 23px;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.underline-hover {
    position: relative;
    cursor: pointer;
}

.underline-hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0;
    background-color: #bd9e89;
    transition: width 0.3s ease;
}

.underline-hover:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(107, 99, 77, 0.25), rgba(107, 99, 77, 0.25)),url("img/pozadi.png");

}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 6.5rem;
    font-weight: 800;
    color: #f4f1eb;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    color: #f4f1eb;
    margin-bottom: 4rem;
    margin-top: -1rem;
    animation: slideUp 1s ease-out 0.6s both;
    opacity: 0.9;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out 0.9s both;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: #bd9e89;
}

/* Sekce kdo jsme */
.kdo-jsme {
    background: #ffdec8;
    padding: 70px 100px;
}

.kdo-jsme-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.kdo-jsme-text {
    flex: 1;
    min-width: 300px;
    color: #333;
    padding-top: 50px;
}

.kdo-jsme-text h1 {
    flex: 1;
    color: #000;
    font-size: 50px;
    min-width: 300px;
    padding-bottom: 15px;
    font-weight: 600;
}

.kdo-jsme-text h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 400;
}

.kdo-jsme-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: right;
}

.kdo-jsme-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Sekce interiér */
.interier {
    background: #e5c2ab;
    padding: 10px 70px 100px;
}

.interier-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.interier-text{
    flex: 1;
    min-width: 300px;
    color: #333;
    padding-top: 50px;
    text-align: center;
}

.interier-text h1 {
    flex: 1;
    color: #000000;
    font-size: 50px;
    min-width: 300px;
    padding-bottom: 15px;
    font-weight: 600;
}

.interier-text h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 400;
}

.interier-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto 0 auto;
    max-width: 1200px;
    margin-top: 30px;
}

.interier-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Sekce otevírací doba */
.oteviraci-doba {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.oteviraci-doba h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #000;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.day-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    transition: transform 0.3s;
}

.day-box.special {
    color: #d10f0f !important;
    font-weight: 600;
    text-align: center;
    grid-column: 1 / -1;
    margin: 1rem auto;
    max-width: 500px;
    font-size: 1.4rem;
}

.day-box span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

.day-box:hover {
    transform: translateY(-5px);
}

.special-box {
    background: #ffffff;
    color: #333;
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.special-box:hover {
    transform: translateY(-5px);
}

.special-box span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

/* Instagram sekce */
.instagram {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    padding: 60px 100px 100px;
    text-align: center;
}

.instagram-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.instagram-media {
    width: 100% !important;
    max-width: 900px !important;
    min-width: auto !important;
    margin-bottom: 40px !important;
}

.instagram video {
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
    height: 650px;
    object-fit: cover;
    border: solid 10px #ffffffb6;
    box-shadow: 0 0 15px 15px #00000065;
}

/* Kontakt */
.contact {
    background: #bd9e89;
    color: #fff;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 80px;
}

.contact h2 {
    color: #ffffff;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
    font-size: 2.8rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    gap: 1rem;
    font-size: 1rem;
}

.fa-solid,.fas {
    font-weight: 900;
    font-size: 22px;
    color: #ffffff
}

.contact-item div {
    color: #ded9d9;
    line-height: 1.6;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.iframe-map {
    display: flex;
    justify-content: end;
}

.iframe-map iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #b0927d;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
}

.footer p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.booking-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
    border-radius: 50%;
    align-items: center;
    transition: opacity 0.3s ease;
}

.booking-icon:hover {
    opacity: 0.8;
}

.instagram-icon {
    width: 37px;
    height: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}

.instagram-icon:hover {
    opacity: 0.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #977a66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #222;
    transform: translateY(-5px);
}

/* RESPONZIVNÍ STYLY */

/* Opravené styly pro mobilní menu */
@media (max-width: 768px) {
    .nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo img {
        width: 120px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000; /* Přidáno pro správné zobrazení nad ostatním obsahem */
        overflow-y: auto; /* Přidáno pro případ dlouhého menu */
    }
    
    .nav-links.active {
        right: 0;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important; /* Přidáno */
    }
    
    /* Zajistí, že skryté menu není viditelné */
    .nav-links:not(.active) {
        visibility: hidden;
        opacity: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001; /* Vyšší než menu */
    }
    
    /* Přidané styly pro hamburger menu */
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #333;
        transition: all 0.3s ease;
    }
    
    .nav-links a {
        font-size: 24px;
        text-decoration: none;
        color: #333;
        padding: 10px 20px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Přidáno pro zamezení scrollování stránky když je menu otevřené */
    body.menu-open {
        overflow: hidden;
    }
}

/* Tablet (1024px a méně) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .kdo-jsme {
        padding: 50px 60px;
    }
    
    .kdo-jsme-text h1 {
        font-size: 40px;
    }
    
    .kdo-jsme-text h2 {
        font-size: 24px;
    }
    
    .interier {
        padding: 10px 50px 80px;
    }
    
    .interier-text h1 {
        font-size: 40px;
    }
    
    .interier-text h2 {
        font-size: 24px;
    }
    
    .interier-img {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .instagram {
        padding: 40px 60px 80px;
    }
    
    .contact {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .contact h2 {
        font-size: 2.4rem;
    }
    
    .oteviraci-doba h2 {
        font-size: 2.4rem;
    }
}

/* Mobile (768px a méně) */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .kdo-jsme {
        padding: 40px 20px;
    }
    
    .kdo-jsme-wrapper {
        flex-direction: column;
    }
    
    .kdo-jsme-text {
        padding-top: 20px;
    }
    
    .kdo-jsme-text h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .kdo-jsme-text h2 {
        font-size: 20px;
        text-align: left;
    }
    
    .kdo-jsme-img {
        text-align: center;
        margin-top: 2rem;
    }
    
    .interier {
        padding: 10px 20px 60px;
    }
    
    .interier-text h1 {
        font-size: 32px;
    }
    
    .interier-text h2 {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .interier-img {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .interier-img img {
        height: 400px;
    }
    
    .oteviraci-doba {
        padding: 60px 15px;
    }
    
    .oteviraci-doba h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .day-box, .special-box {
        padding: 20px 15px;
        font-size: 1.1rem;
    }
    
    .instagram {
        padding: 40px 20px 60px;
    }
    
    .instagram video {
        width: 100%;
        height: 500px;
    }
    
    .contact {
        padding: 20px;
    }
    
    .contact h2 {
        font-size: 2rem;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .iframe-map {
        justify-content: center;
    }
    
    .iframe-map iframe {
        height: 300px;
    }
    
    .footer p {
        font-size: 0.95rem;
    }
}

/* Mobile malý (480px a méně) */
@media (max-width: 480px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .kdo-jsme-text h1 {
        font-size: 28px;
    }
    
    .kdo-jsme-text h2 {
        font-size: 18px;
    }
    
    .interier-text h1 {
        font-size: 28px;
    }
    
    .interier-text h2 {
        font-size: 18px;
    }
    
    .oteviraci-doba h2 {
        font-size: 1.8rem;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .day-box, .special-box {
        font-size: 1rem;
    }
    
    .interier-img img {
        height: 350px;
    }
    
    .instagram video {
        height: 400px;
    }
    
    .fa-solid, .fas {
        font-size: 18px;
    }
    
    .footer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Landscape orientace na mobilu */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

