* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f4efe6;
  background-image: url("images/leaves-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #2f2d28;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.logo,
h1,
h2,
footer h2 {
  font-family: 'Cormorant Garamond', serif;
}

.navbar {
  height: 82px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6dfd2;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 62px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  text-decoration: none;
  color: #2f2d28;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #8b9473;
  transition: 0.3s;
}

nav a:hover {
  color: #8b9473;
}

nav a:hover::after {
  width: 100%;
}

.nav-button,
.main-button {
  display: inline-block;
  background-color: #8b9473;
  color: white;
  border: none;
  padding: 15px 26px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.nav-button:hover,
.main-button:hover {
  background-color: #6f775c;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hero {
  min-height: 650px;
  padding: 55px 90px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  text-align: left;
}

.hero-text {
  flex: 1;
  max-width: 650px;
}

.subtitle {
  color: #8b9473;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1 {
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -2px;
  color: #25231f;
}

h1 span {
  color: #8b9473;
}

.description {
  margin-top: 25px;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.7;
  color: #5e5a50;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.video-button {
  display: inline-block;
  background-color: rgba(255,250,241,0.55);
  border: 1px solid #d8d1c3;
  padding: 15px 26px;
  border-radius: 6px;
  color: #2f2d28;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.video-button:hover {
  background-color: #fffaf1;
  color: #8b9473;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 360px;
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.features {
  position: absolute;
  left: 90px;
  right: 90px;
  bottom: 25px;
  background-color: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid #e8dfcf;
  border-radius: 14px;
  display: flex;
  gap: 30px;
  padding: 25px 35px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.features div {
  flex: 1;
}

.features h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.features p {
  font-size: 13px;
  color: #777267;
}

.info-bar {
  margin: 30px 90px;
  background-color: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid #e8dfcf;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 26px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-title {
  min-width: 150px;
  font-size: 14px;
  color: #8b9473;
  font-weight: 600;
  letter-spacing: 1px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.icon {
  font-size: 28px;
  color: #8b9473;
}

.info-item h3 {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 13px;
  color: #777267;
}

.bottom-section {
  margin: 30px 90px 70px;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 45px;
  align-items: start;
}

.how-card,
.about-owner,
.about-section,
.price-card,
.contact-section,
.review-box {
  background-color: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid #e8dfcf;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.how-card {
  padding: 34px;
  transition: 0.3s;
}

.how-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}

.how-card h2 {
  font-size: 30px;
  margin-bottom: 24px;
  color: #2f2d28;
}

.how-content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.video-box {
  width: 100%;
  max-width: 420px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #cfc6b5;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 16px;
}

.step span {
  font-size: 24px;
  color: #8b9473;
  font-weight: 700;
}

.step h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: #777267;
}

.gallery-preview {
  width: 100%;
  max-width: 420px;
  height: 240px;
  margin: 35px auto 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-preview a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-preview:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.gallery-overlay h3 {
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 13px;
}

.hidden-gallery {
  display: none !important;
}

.about-owner {
  padding: 30px;
  max-width: 430px;
  margin: 0 auto;
}

.about-owner img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 25px;
}

.about-owner h2 {
  font-size: 34px;
  margin: 15px 0 20px;
  color: #2f2d28;
}

.about-owner p {
  font-size: 14px;
  line-height: 1.75;
  color: #5e5a50;
  margin-bottom: 15px;
}

.about-section {
  margin: 40px 90px 80px;
  padding: 55px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  max-width: 660px;
}

.about-text h2,
.prices-section h2,
.contact-text h2,
.reviews-section h2 {
  font-size: 42px;
  margin-bottom: 22px;
  color: #2f2d28;
}

.about-text p,
.contact-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #5e5a50;
  margin-bottom: 28px;
}

.about-card {
  min-width: 280px;
  background-color: #f4efe6;
  border-radius: 16px;
  padding: 35px;
}

.about-card h3 {
  font-size: 22px;
  color: #8b9473;
  margin-bottom: 20px;
}

.about-card li,
.price-card li {
  list-style: none;
  margin-bottom: 13px;
  color: #5e5a50;
}

.about-card li::before,
.price-card li::before {
  content: "✓ ";
  color: #8b9473;
  font-weight: bold;
}

.prices-section {
  margin: 40px 90px 80px;
  text-align: center;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.price-card {
  padding: 35px;
  transition: 0.3s;
}

.price-card h3 {
  font-size: 24px;
  color: #8b9473;
  margin-bottom: 18px;
}

.price {
  font-size: 38px;
  font-weight: 700;
  color: #2f2d28;
  margin-bottom: 25px;
}

.price-card ul {
  margin-bottom: 30px;
}

.highlighted {
  background-color: rgba(238, 241, 229, 0.92);
  border: 2px solid #8b9473;
  transform: scale(1.03);
}

.reviews-section {
  margin: 80px 90px;
  text-align: center;
}

.review-box {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    padding: 45px;
    align-items: start;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-form input,
.review-form select,
.review-form textarea,
.contact-form input,
.contact-form textarea {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #ddd4c5;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  background-color: white;
}

.review-form textarea {
  height: 160px;
  resize: none;
}

.review-preview {
  background: #f4efe6;
  border-radius: 16px;
  padding: 35px;
  text-align: left;
}

.review-preview h3 {
  color: #8b9473;
  font-size: 24px;
  margin-bottom: 15px;
}

.stars {
  color: #8b9473;
  font-size: 26px;
  letter-spacing: 3px;
}

.review-item {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.review-item p {
  margin: 12px 0;
  line-height: 1.7;
}

.contact-section {
  margin: 40px 90px 80px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.contact-text {
  width: 40%;
}

.contact-text a {
  color: #6f775c;
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form textarea {
  height: 170px;
  resize: none;
}

footer {
  margin-top: 80px;
  padding: 60px;
  text-align: center;
  background-color: #2f2d28;
  color: white;
}

footer h2 {
  margin-bottom: 20px;
  letter-spacing: 3px;
}

footer p {
  margin-top: 10px;
  color: #ddd;
}

.welcome-screen {
  position: fixed;
  inset: 0;
  background-color: #f4efe6;
  background-image: url("images/leaves-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}

.welcome-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.welcome-content {
  text-align: center;
  background: rgba(255, 250, 241, 0.72);
  padding: 55px 70px;
  border-radius: 24px;
  border: 1px solid #e8dfcf;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  animation: welcomePop 1.2s ease;
}

.welcome-logo {
  width: 220px;
  margin-bottom: 25px;
}

.welcome-content p {
  font-size: 28px;
  color: #8b9473;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
}

.welcome-content span {
  font-size: 15px;
  color: #5e5a50;
}

@keyframes welcomePop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    font-size: 12px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 45px 25px;
    min-height: auto;
  }

  h1 {
    font-size: 58px;
  }

  .description {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .hero-image img {
    width: 260px;
    margin-top: 35px;
  }

  .features {
    position: static;
    margin-top: 35px;
    flex-direction: column;
  }

  .info-bar {
    margin: 30px 25px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-section {
    grid-template-columns: 1fr;
    margin: 30px 25px;
  }

  .how-content {
    flex-direction: column;
  }

  .video-box,
  .gallery-preview {
    max-width: 100%;
  }

  .about-section,
  .contact-section {
    margin: 30px 25px;
    padding: 35px 25px;
    flex-direction: column;
  }

  .prices-section,
  .reviews-section {
    margin: 30px 25px;
  }

  .about-text h2,
  .prices-section h2,
  .contact-text h2,
  .reviews-section h2 {
    font-size: 34px;
  }

  .price-cards,
  .review-box {
    grid-template-columns: 1fr;
  }

  .contact-text,
  .contact-form {
    width: 100%;
  }

  footer {
    padding: 45px 20px;
  }
}
.gallery-about-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin: 60px auto;
    max-width: 1000px;
}

.gallery-about-row > * {
    flex: 1;
}
.bottom-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1100px;
    margin: 60px auto;
}

.gallery-preview,
.about-owner {
    flex: 1;
}

.gallery-preview {
    max-width: 450px;
}

.about-owner {
    max-width: 500px;
}

@media (max-width: 768px) {
    .bottom-section {
        flex-direction: column;
        align-items: center;
    }
}
.bottom-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  max-width: 1100px;
  margin: 80px auto;
}

.gallery-preview {
  flex: 1;
  max-width: 450px;
}

.about-owner {
  flex: 1;
  max-width: 500px;
}

@media (max-width: 768px) {
  .bottom-section {
    flex-direction: column;
    align-items: center;
  }
}
.prices-section {
  position: relative;
  z-index: 10;
}

.price-cards {
  position: relative;
  z-index: 20;
}

.price-card {
  position: relative;
  z-index: 30;
}

.price-card .main-button {
  position: relative;
  z-index: 50;
  pointer-events: auto;
}
.faq-section {
  margin: 80px 90px;
  padding: 55px;
  background-color: rgba(255, 250, 241, 0.9);
  border: 1px solid #e8dfcf;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e0d7c8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  color: #2f2d28;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: #8b9473;
  font-size: 24px;
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #5e5a50;
}

.faq-item.active .faq-answer {
  display: block;
}
.reviews-section .review-box{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
}

.review-form{
    width: 100%;
}

.review-form input,
.review-form select,
.review-form textarea,
.review-form button{
    width: 100%;
    box-sizing: border-box;
}

.reviews-list{
    width: 100%;
}

.reviews-section .reviews-list{
  margin-top: 0;
}
.review-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.review-form {
   flex: 1;
}

.review-preview {
    flex: 1;
}

@media (max-width: 768px) {
    .review-box {
        flex-direction: column;
    }

    .review-form,
    .review-preview {
        width: 100%;
    }
}
.extras-section {
    background: #7f8d66;
    padding: 90px 0;
    width: 100%;
    color: white;
    text-align: center;
}


.extras-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  margin: 20px 0 35px;
}

.extras-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.title-line {
  width: 175px;
  height: 2px;
  background-color: white;
  opacity: 0.8;
}

.plus-icon {
  width: 64px;
  height: 64px;
  background-color: white;
  color: #159ed3;
  border-radius: 12px;
  font-size: 52px;
  font-weight: 300;
  line-height: 59px;
  text-align: center;
}

.extras-section{
    width: 100%;
    padding: 80px 0;
}

.extras-list{
    width: min(1100px, 92%)
    margin: 0 auto;
}

.extra-item{
    width:100%;
    min-height:110px;
    padding:30px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border:1px solid rgba(255,255,255,.8);
    box-sizing:border-box;
}

.extra-item strong {
  white-space: nowrap;
  font-size: 23px;
}

@media (max-width: 700px) {
  .extras-section {
    padding: 60px 15px;
  }

  .extras-section h2 {
    font-size: 30px;
  }

  .title-line {
    width: 75px;
  }

  .plus-icon {
    width: 55px;
    height: 55px;
    font-size: 44px;
    line-height: 51px;
  }

  .extra-item {
    min-height: auto;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
  }

  .extra-item strong {
    font-size: 19px;
  }
}
.extras-section {
  width: 100%;
  max-width: none;
  padding: 70px 0;
  background: #87936f;
  color: white;
  text-align: center;
  box-sizing: border-box;
}

.extras-list {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.extra-item {
  width: 100%;
  min-height: 90px;
  padding: 25px 40px;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  text-align: left;
}

.extra-item span {
  flex: 1;
}

.extra-item strong {
  margin-left: 40px;
  white-space: nowrap;
}
.extras-section {
  width: 100%;
  padding: 80px 0;
}

.extras-list {
  width: min(1250px, 94%);
  max-width: none;
  margin: 0 auto;
}

.extra-item {
  width: 100%;
  box-sizing: border-box;
}
.extras-section{
    max-width: 900px;      /* kisebb lesz */
    width: 100%;
    margin: 100px auto 0;  /* nagyobb távolság felül */
    padding: 50px 35px;
    background: #8b9872;
    box-sizing: border-box;
    border-radius: 8px;
}

.extras-list{
    width:100%;
    margin:0 auto;
}

.extra-item{
    width:100%;
    padding:18px 30px;
    min-height:70px;
    box-sizing:border-box;
}
.background-preview {
  width: 100%;
  max-width: 450px;
  height: 240px;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.background-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.background-preview:hover img {
  transform: scale(1.08);
}

.background-preview .gallery-overlay {
  position: absolute;
  inset: 0;
}
.preview-column {
  flex: 1;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}

.preview-column .gallery-preview {
  margin-top: 0;
}