﻿body {
  margin: 0;
  font-family: Arial;
  background: #faf7f2;
  color: #222;
}



.hero {
  height: 90vh;
  background: url('../images/dudas_title.png') center/cover; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.hero img {
    opacity: 1;
    filter: none;
    transform: none;
	/*  filter: saturate(0.9) contrast(1.04);*/
}

.hero:before,
.hero:after {
    opacity: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
}

.hero-content {
  position: relative;
   z-index: 2;
  max-width: 600px;
}
/*lassanlecsuszoka*/
html {
    scroll-behavior: smooth;
}

h1 {
  font-size: 48px;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  margin: 10px;
  background: #c8a25a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* BOOKING */
.booking {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

input, select {
  padding: 10px;
  margin: 10px;
  width: 200px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery div {
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESULT */
#result {
  margin-top: 15px;
  font-weight: bold;
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}





.split{
    max-width:1200px;
    margin:90px auto;
    padding:0 30px;

    display:flex;
    align-items:center;
    gap:70px;
}

.split.reverse{
    flex-direction:row-reverse;
}

.split .text{
    flex:1;
}

.split .image{
    flex:1;
}

.split img{
    width:100%;
    display:block;
    border-radius:18px;
}

.komfort{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.komfort span{
    background:#f5f5f5;
    padding:10px 18px;
    border-radius:25px;
}

/*kornyék*/

.places {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.place {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.place h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
}

.place p {
    line-height: 1.7;
    color: #666;
}

@media (max-width: 768px) {

    .places {
        grid-template-columns: 1fr;
    }

}

@media(max-width:900px){

.split,
.split.reverse{

    flex-direction:column;
}

}

/*booking*/
.booking {
    padding: 70px 20px;
    background: #f6f5f2;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 35px;
}

.booking-header h2 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 400;
}

.booking-header p {
    margin: 0;
    color: #777;
}

.booking-box {
    background: #fff;
    padding: 35px;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
}

.booking-row {
    display: flex;
    gap: 20px;
}

.booking-field {
    flex: 1;
    margin-bottom: 20px;
}

.booking-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    color: #555;
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
    background: #fff;
}

.booking-field textarea {
    resize: vertical;
}

.booking-guests {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 5px 0 25px;
}

.guest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.guest-item:last-child {
    border-bottom: 0;
}

.guest-item strong {
    display: block;
    font-weight: 500;
}

.guest-item small {
    display: block;
    margin-top: 3px;
    color: #888;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guest-counter button {
    width: 34px;
    height: 34px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
}

.guest-counter span {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.booking-check,
.booking-submit {
    width: 100%;
    padding: 15px;
    border: 0;
    border-radius: 3px;
    background: #333;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.booking-check:hover,
.booking-submit:hover {
    background: #222;
}

#booking-result {
    margin-top: 20px;
}

.booking-result-ok {
    padding: 22px;
    background: #f4f7f2;
    border: 1px solid #dce5d8;
}

.booking-result-ok h3 {
    margin-top: 0;
    font-weight: 400;
}

.booking-price {
    margin-top: 15px;
    font-size: 18px;
}

.booking-price-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
    font-size: 22px;
    font-weight: 600;
}

.booking-result-error {
    padding: 20px;
    background: #faf5f3;
    border: 1px solid #eadbd5;
}

.booking-alternatives {
    margin-top: 15px;
}

.booking-alternatives button {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    text-align: left;
}

.booking-separator {
    margin: 30px 0;
    border-top: 1px solid #eee;
}

.guest-form h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 400;
}

.form-info {
    margin-bottom: 25px;
    color: #777;
}

.booking-gdpr {
    display: block;
    margin: 15px 0;
    font-size: 13px;
}

.booking-gdpr input {
    margin-right: 8px;
}

@media (max-width: 700px) {

    .booking {
        padding: 45px 15px;
    }

    .booking-box {
        padding: 20px;
    }

    .booking-row {
        display: block;
    }

}