/* Basic body styling */
body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 90;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

h2 {
    margin-top: 40px;
}

/* Title section styling */
.title-section {
    background-image: url('bratislava-night.jpg'); /* Add the actual image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-bottom: 0px;
}

.title-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
}

.title-text h2 {
    font-size: 2.5rem;
    margin: 0;
}

.title-text p {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* Offerings section */
#offerings {
    scroll-margin-top: 20px; /* Uprav výšku podľa výšky headera */
    padding: 90px;
    background-color: #f1f1f1;
    text-align: center;
}

.offerings-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.offering {
    text-align: center;
    cursor: pointer;
    position: relative;
}

.offering img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.offering:hover img {
    transform: scale(1.1); /* Zoom effect */
}

.offering-description {
    display: none; /* Hide descriptions by default */
    padding: 50px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 10px;
    max-width: 300px; /* Make description width equal to image */
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}
/* Zobrazí popis po nabehnutí myšou */
.offering:hover .offering-description {
    display: block;
}

/* About Us section */
#about {
    padding: 120px;
    background-color: #fff;
    text-align: center;
}

#about p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Testimonials section */
#testimonials {
    padding: 90px;
    background-color: #f1f1f1;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 20px auto;
    max-width: 900px;
    border-left: 5px solid #333;
    padding-left: 15px;
}

/* Contact Us section */
#contact {
    padding: 90px;
    background-color: #fff;
}

#contact p {
    font-size: 1.2rem;
    margin: 10px 0;
}
/* Book Your Experience section */
#book-experience {
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 200px;
    padding: 170px;
    background-color: #f1f1f1;
    text-align: center;
}

#book-experience h2 {
    margin-bottom: 20px;
}

form {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

input, select, textarea, button {
    margin: 10px 0;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    background-color: #e75507;
    color: white;
    cursor: pointer;
    border: none;
    width: 100%;
}

button:hover {
    background-color: #ed6f2a;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
    text-align: center;
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fix for sections being hidden behind fixed header */
section {
    scroll-margin-top: 80px; /* Adjusted for header height */
}
/* Styling pre tlačidlo Book Now */
.book-now {
    background-color: #e75507;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
    width: 100%;
}

.book-now:hover {
    background-color: #ed6f2a;
}
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: left;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;  
    top: 10px;           
    right: 14px;         
    padding: 6px;        
    line-height: 1;      
    z-index: 1; 
}
.terms-consent {
    display: flex;
    align-items: center; /* vertikálne zarovnanie checkboxu a textu */
    flex-wrap: wrap;     /* umožní textu zalomiť sa, ak je malý priestor */
    margin-left: 5px;
    gap: 5px;  
}
    
.close:hover {
    color: #000;
}
