


* {
  margin: 0;
  padding: 0;

}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #2f6c3f;
  --secondary-color: #f4f4f4;
  --text-color: #333;
  --accent-color: #a4c93b;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#header {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 50px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
  overflow: hidden;
}

.video-background iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  outline: none;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 20px;
}

.header-content h1 {
  background-color: var(--primary-color);
  padding: 0.5rem 10rem;
  border-radius: 0;
  color: white;
  font-size: 4rem;
  font-style: italic;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}



.modal {
  display: none;  
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);  
  z-index: 1000;
}


.close-btn {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.modal-content {
  background-color: transparent;  
  padding: 0;
  margin: auto;
  max-height: 90%;  
  max-width: 80%;   
  margin-top: 25px;
}


#modal-map {
  max-height: 90vh;  
  object-fit: contain; 
  display: block;
}

.close-btn:hover,
.close-btn:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}



body {
  font-family: var(--font-family);
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
}

main {
  margin-left: 50px;
  margin-right: 50px;
  padding: 40px;
  background-image: url('images/white.jpg');
  border-radius: 0;
}

h1,
h2,
h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
}

h2 {
  margin-top: 40px;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 5px;
}

h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
}

video {
  width: 100%;
  max-height: 400px;
  margin-bottom: 20px;
  border-radius: 10px;
}

caption {
  caption-side: top;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
}

details {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #555;
}

summary {
  font-weight: bold;
  margin-top: 10px;
  padding: 10px;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
}


summary:hover {
  background-color: #e0e0e0;
}

main a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

main a:hover {
  text-decoration: underline;
}

main a:visited {
  color: var(--accent-color);
  text-decoration: underline;
}


.separator {
  width: 100%;
  
  height: 2px;
  
  background-color: var(--accent-color);
  
  margin: 40px 0;
  
}


footer {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding: 20px;
}

footer a {
  color: var(--primary-color);
  text-decoration: underline;
}

footer a:hover {
  text-decoration: underline;
}

footer a:visited {
  text-decoration: underline;
  color: var(--accent-color);
}


.left-strip, .right-strip {
  position: fixed;
  top: 0;
  width: 60px;
  height: 100vh;
  background-image: url('images/bohem/bohem.webp');
  background-size: cover;
  background-position: bottom;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.3s ease;
}

.right-strip {
  right: 0;
  animation: slideInRight 0.5s ease-out forwards;
}

.left-strip {
  left: 0;
  animation: slideInLeft 0.5s ease-out forwards;
}


@keyframes slideInRight {
  0% {
    right: -100px;
    
  }

  100% {
    right: 0;
    
  }
}


@keyframes slideInLeft {
  0% {
    left: -100px;
    
  }

  100% {
    left: 0;
    
  }
}



.right-strip a, .left-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  width: 100%;
  height: 100%;
  color: white;
  font-weight: bold;
  text-decoration: none;
  background: rgba(51, 51, 51, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  transform-origin: center;
}

.left-strip a {
  transform: rotate(180deg);
}


.right-strip:hover {
  transform: scale(1.1);
  
}


.left-strip:hover {
  transform: scale(1.1);
  
}

.right-strip a:hover {
  background: rgba(0, 0, 0, 0.5);
}

.left-strip a:hover {
  background: rgba(0, 0, 0, 0.5);
}

body {
  background: linear-gradient(to right, #e0f7fa, #f1f8e9);
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.form-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}


form {
  max-width: 650px;
  width: 100%;
  background-color: #ffffff;
  margin: auto;
  border: white 3px solid;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

form div {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #b2ebf2;
  border-radius: 6px;
  background-color: #f9f9f9;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #4fc3f7;
  box-shadow: 0 0 5px rgba(79, 195, 247, 0.6);
  background-color: #ffffff;
}

textarea {
  resize: vertical;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 8px;
}


.group-box {
  background: #f0f4c3;
  padding: 20px;
  border-left: 5px solid #aed581;
  border-radius: 8px;
  margin-bottom: 25px;
}

.group-box label {
  font-weight: normal;
  color: #555;
  margin-right: 15px;
}


button {
  padding: 12px 24px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(to right, #4fc3f7, #29b6f6);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

button[type="reset"] {
  background: linear-gradient(to right, #9e9e9e, #757575);
}

button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #29b6f6, #039be5);
}

button[type="reset"]:hover {
  background: linear-gradient(to right, #757575, #616161);
}


.checkbox-group {
  margin-top: 20px;
}

.checkbox-group label {
  font-weight: normal;
  color: #666;
}


.required {
  color: red;
  font-weight: bold;
}


input:invalid, textarea:invalid, select:invalid {
  border-color: red;
  background-color: #fdd;
}

input:required:valid, textarea:required:valid, select:required:valid {
  border-color: green;
  background-color: #ddf;
}

span {
  margin: 0 10px;
  font-size: 1.2rem;
}

.image-choice-container {
  text-align: center;
  margin-bottom: 2rem;
}

.image-choice-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.image-choice {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-choice label {
  cursor: pointer;
  text-align: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.image-choice input[type="radio"] {
  display: none;
}

.image-choice img {
  width: 250px;
  height: 180px;
  border-radius: 20px;
  margin: 20px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.image-choice span {
  margin-top: 0.5rem;
  font-weight: bold;
}

.image-choice input[type="radio"]:checked + img {
  transform: scale(1.1);
  border: 3px solid #007BFF;
}

.image-choice label:hover img {
  transform: scale(1.05);
}


#menu {
  background: white;
  padding: 10px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: auto; 
  overflow-x: auto; 
  z-index: 1000;
}

#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; 
  justify-content: center; 
  align-items: center;
}

#menu li {
  margin: 0 10px;
  padding: 0;
}

#menu a {
  display: block;
  padding: 12px 5vw;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s, padding-left 0.3s;
  white-space: nowrap;
}

#menu a:hover,
#menu a.active {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px) scale(1.05); 
}

#menu a.active {
  background: var(--primary-color);
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

#menu a.top-link {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

#menu a.top-link:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

#menu a.other-link {
  background-color: #61f49c;
  color: white;
  transition: all 0.3s ease;
}

#menu a.other-link:hover {
  background-color: #60e751;
  transform: scale(1.1);
}

#menu a.bottom-link {
  background-color: #f4a261;
  color: white;
  transition: all 0.3s ease;
}

#menu a.bottom-link:hover {
  background-color: #e76f51;
  transform: scale(1.1);
}

.date-range-container {
  text-align: center;
  margin-bottom: 2rem;
}

.field-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.date-range {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.date-field {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-field label {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.sep {
  font-size: 1.5rem;
}