


* {
  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;
}

#menu {
  background: white;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  overflow-y: auto;
}

#menu ul {
  list-style: none;
  padding: 0;
}

#menu li {
  margin-bottom: 10px;
}

#menu a {
  display: block;
  padding: 12px 16px;
  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;
}

#menu a:hover,
#menu a.active {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(5px) scale(1.05);
  padding-left: 20px;
}

#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.05);
  padding-left: 25px;
}

#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);
  padding-left: 25px;
}

#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);
  padding-left: 25px;
}

.navbar-toggler {
  display: none;
}

.collapse.navbar-collapse {
  display: flex;
  flex-direction: column;
}

#header {
  position: relative;
  height: 500px;
  
  overflow: hidden;
  margin-bottom: 50px;
}

#header img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

.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;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 0px;
}

.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;
}

.header-content h2 {
  background-color: var(--accent-color);
  padding: 0.3rem 1rem;
  margin: 0px;
  border-radius: 0;
  color: white;
  font-size: 2rem;
  text-align: center;
  white-space: nowrap;

}


.map-container {
  position: absolute;
  right: 1%;
  top: 0;
}

.map-thumbnail {
  width: 150px;
  height: 120px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-thumbnail:hover {
  transform: scale(1.1);
}



.modal {
  display: none;  
  position: fixed;
  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: 220px;
  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;
}

section h3 {
  margin-top: 20px;
  font-size: 1.2rem;
}

p {
  margin-bottom: 15px;
}

video {
  width: 100%;
  max-height: 400px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.embed-responsive-item {
  width: auto;
  max-width: 100%;
}


.image-container {
  position: relative;
  overflow: hidden;
  width: 100%;           
  height: 200px;         
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;    
}


.image-container img {
  width: 100%;           
  height: 100%;          
  object-fit: cover;     
  transition: transform 0.3s ease-in-out;
  object-position: center; 
}


.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 10px;
  transform: translateY(100%);
  
  transition: transform 0.3s ease-in-out;
}


.image-container:hover img {
  transform: scale(1.1);
  
}

.image-container:hover .caption {
  transform: translateY(0);
  
}



table {
  width: 100%;
  border-collapse: separate;
  
  border-spacing: 0 5px;
  
  margin: 20px 0;
}


th,
td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ccc;
  
}


th {
  background-color: var(--accent-color);
  
  font-weight: bold;
  color: white;
}


tr {
  background-color: white;
}


tr:nth-child(odd) {
  background-color: #f9f9f9;
  
}

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;
}


#szolgaltatasok ul {
  list-style-type: none;
  
  padding-left: 20px;
  
}


#szolgaltatasok ul li {
  position: relative;
  
  padding-left: 25px;
  
  margin-bottom: 8px;
  
}


#szolgaltatasok ul li::before {
  content: '\2713';
  
  font-size: 20px;
  
  color: green;
  
  position: absolute;
  
  left: 0;
  
  top: 50%;
  
  transform: translateY(-50%);
  
}

#szolgaltatasok #nincs::before {
  content: '\0058';
  color: red;
}


.review-container {
  font-family: Arial, sans-serif;
  
  background-color: #f9f9f9;
  
  border-radius: 8px;
  
  padding: 20px;
  margin-bottom: 15px;
  
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  
}

.review-container .reviewer {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
  
  margin-bottom: 5px;
}

.review-container .review-type {
  font-style: italic;
  color: #777;
  
  margin-bottom: 10px;
}

.review-container .review-text {
  font-size: 1em;
  color: #555;
  
  line-height: 1.5;
  
}


.review-container .emoji {
  font-size: 1.3em;
  vertical-align: middle;
  margin-left: 5px;
}



.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);
}


.right-strip {
  position: fixed;
  right: 0;
  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;
  animation: slideInRight 0.5s ease-out forwards;
  transition: transform 0.3s ease;
}


@keyframes slideInRight {
  0% {
    right: -100px;
    
  }

  100% {
    right: 0;
    
  }
}


.right-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;
}


.right-strip:hover {
  transform: scale(1.1);
}

.right-strip a:hover {
  background: rgba(0, 0, 0, 0.5);
}

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;
}