/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #d8dec3;
    font-family: "Roboto";
    margin: 0;
    padding: 0;
    overflow-x: hidden;  /* Prevents horizontal scrolling */
    /* font-family: 'Lato', sans-serif; */
    color: #333;
    line-height: 1.6;
    overflow-anchor: none;
}

.container {
    width: 100%;  /* Ensure content stays within boundaries */
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

imgDisplay {
height: 50%;
}
/* Navbar Styles */
nav {
    font-family: 'Lato', sans-serif;
    background-color: rgba(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav a.logo {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px, 5vw, 24px);  /* Dynamic scaling */
    color: #7BBF6A;
    text-decoration: none; 
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 15px;
}

nav ul li:hover {
    margin-left: 15px;
    background-color: #d8dec3;
  transition: 0.3s;
}


nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);  /* Responsive font */
}

@media (max-width: 1200px) {
    .responsive-logo {
        width: 20%; /* Adjust width for medium screens */
        max-width: 120px;
    }
}

/* Better mobile responsiveness */
@media (max-width: 768px) {
    nav {
        padding: 5px 5px; /* Reduce padding on mobile */
    }

    nav ul {
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: center; /* Center items if wrapped */
    }

    nav ul li {
        margin-left: 5px; /* Less margin between items */
    }
    header {
        padding-top: 100px; /* Add more space for mobile screens if needed */
    }

    .responsive-logo {
        width: 30%; /* Adjust width for small screens */
        max-width: 100px;
    }
}

@media (max-height: 600px) {
    header {
        padding-top: 60px; /* Less padding for smaller heights */
    }

    header .header-content {
        font-size: 75%; /* Reduce font size on small heights */
    }
}

/* Optional: Handle very small screens */
@media (max-width: 480px) {
    nav a.logo {
        font-size: 16px; /* Slightly smaller logo */
    }

    nav ul {
        gap: 5px; /* Compact spacing */
    }

    nav ul li {
        margin-left: 3px;
    }

    nav ul li a {
        font-size: 12px; /* Even smaller font for ultra-small screens */
        padding: 2px; /* Minimal padding */
    }
    header {
        padding-top: 50px; /* Even less padding for very short screens */
    }

    header .header-content {
        font-size: 65%; /* Further reduce font size */
    }
}

/* Header Section */



/* Header Adjustments */
header {
    position: relative;
    min-height: 100vh; /* Ensure header takes full view height */
    padding-top: 80px; /* Leave space for the fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

/* Overlay Styling */
header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 191, 106, 0.6);
    pointer-events: none;
        background-image: url("LogoFinalFinalFinal.png");
}

header .header-content {
    position: relative;
    color: white;
    z-index: 1;
    padding: 20px;
    font-size: clamp(16px, 4vw, 32px); /* Responsive font */
}

header h1 {
    font-family: 'Roboto', serif;
    font-size: clamp(32px, 6vw, 48px);  /* Responsive scaling */
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    margin-bottom: 20px;
}

header .btn {
    background: #F5C342;
    background-color: #0c3b7c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
#bookBtn {
color: white;
}
header .btn:hover {
    background-color: #00bafc;
}

/* Section Styling */
section {
    padding: 60px 0px;
}

section#about {
    background: #F7F7F7;
    text-align: center;
}

section#about img {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 10px;
}


/* Services Section */
section#services {
    text-align: center;
}

section#services .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

section#services .service-item {
    width: 45%;
    margin-bottom: 30px;
    text-align: center;
}

section#services .service-item img {
    max-width: 80px;
    margin-bottom: 10px;
}

/* Gallery Section
section#gallery {
    text-align: center;
}

section#gallery h2 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
}
*/

section#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 0 auto;  /* Center the grid */
    max-width: 100%;
}

section#gallery img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

/* Contact Section */
section#contact {
    text-align: center;
    background: #FFFFFF;
}

section#contact .contact-info p {
    margin-bottom: 10px;
}

section#contact .map iframe {
    width: 100%;  /* Prevent overflow */
    max-width: 600px;
    height: 450px;
    border: none;
    border-radius: 10px;
    margin: 20px 0;
}

section#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#contact input, section#contact textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);  /* Responsive font size */
}

section#contact button.btn {
    background: #F5C342;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

section#more {

    text-align: center;

}

section#more img {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 10px;
}

section#rate {
    text-align: center;
    background-color: white;
    
}

/* Footer */
footer {
    background: rgba(123, 191, 106, 0.6);;
    color: white;
    padding: 20px 15px;
    text-align: center;
}

footer .social-media {
    margin-bottom: 15px;
}

footer .social-media a {
    margin: 0 10px;
}

footer ul.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
    padding: 0;
}






#gallery h2 {
font-family: 'Roboto', serif;
margin-bottom: 20px;
}

.carousel-item {
    height: 25%;
}

.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(128, 128, 128, 1);  /* Grey circle with 50% opacity */
    border-radius: 50%;  /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
    border: none;  /* Remove any border */
    opacity: 0.9;  /* Make the control visible */
    transition: opacity 0.2s ease;
}

.carousel-control-prev-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(128, 128, 128, 1);  /* Grey circle with 50% opacity */
    border-radius: 50%;  /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
    border: none;  /* Remove any border */
    opacity: 0.9;  /* Make the control visible */
    transition: opacity 0.2s ease;

}

#navbarBookBtn {
background-color: #0c3b7c;
font-family: 'Roboto', serif;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
color: #ffffff;
}

#navbarBookBtn:hover {
background-color: #00bafc;
}

.anchor {
    display: block;
    position: relative;
    top: -200px;
    visibility: hidden;
}

#langchange {
    margin-top: 20px;

}

#langCZ {

    color: blue;
    float: right;

}

#langEN {
    color: blue;
    float: right;
}

.logo-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px; /* Optional padding */
}

/* Style the logo to make it responsive */
.responsive-logo {
    width: 15%; /* Default width for large screens */
    max-width: 150px; /* Prevent the logo from getting too large */
    height: auto; /* Maintain aspect ratio */
}

section#booking {

    text-align: center;

}

/* Booking Button */
.booking-button {
    background-color: #0c3b7c; /* Dark blue */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
    margin: 10px 5px; /* Spacing around buttons */
    display: inline-block; /* Ensures buttons are inline */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

.booking-button:hover {
    background-color: #0056a8; /* Slightly darker blue */
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: #25d366; /* WhatsApp green */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
    margin: 10px 5px; /* Spacing around buttons */
    display: inline-block; /* Ensures buttons are inline */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

.whatsapp-button:hover {
    background-color: #20c257; /* Slightly darker green */
}

/* Telegram Button */
.telegram-button {
    background-color: #0088cc; /* Telegram blue */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
    margin: 10px 5px; /* Spacing around buttons */
    display: inline-block; /* Ensures buttons are inline */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

.telegram-button:hover {
    background-color: #0077b5; /* Slightly darker blue */
}



