/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Segoe UI',Tahoma,Arial,sans-serif;background:#f5f6fa;color:#2c3e50;line-height:1.6;scroll-behavior:smooth}

/* Header */
header{position:sticky;top:0;left:0;width:100%;background:#ffffff;z-index:1000;border-bottom:1px solid #e5e7eb}
header .brand{display:flex;align-items:center;justify-content:center;gap:8px;padding:6px 0}
header .brand img{width:60px;height:36px}
header .brand h1{margin:0;font-size:22px;letter-spacing:0.5px}
.main-nav{display:flex;justify-content:center;gap:18px;background:#111;padding:8px 10px}
.main-nav a{color:#fff;text-decoration:none;font-weight:600;font-size:14px}
.main-nav a:hover{color:#e67e22}

/* Layout helpers */
.container{max-width:1100px;margin:0 auto;padding:0 16px}
section{padding:70px 0}
section h2{text-align:center;margin:0 0 10px 0;font-size:28px}

/* Hero - remove grey bg, center text */
.hero{background:transparent}
.hero .hero-box{text-align:center;background:#fff;padding:40px;border-radius:10px;box-shadow:0 6px 16px rgba(0,0,0,0.08)}

.hero .lead{max-width:800px;margin:0 auto 10px}

/* Gallery (scoped & responsive) */
#gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop: 4 oszlop */
  gap: 20px;
  align-items: start;
}

#gallery .gallery-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

#gallery .gallery-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;   /* tartja az arányt, nem nyúlik el */
  border: 0;
  display: block;
}

#gallery .gallery-card p {
  margin: 10px 0 14px 0;
  font-weight: 600;
  padding: 0 10px;
}

/* Breakpoints */
@media (max-width: 1024px) {
  #gallery .grid { grid-template-columns: repeat(2, 1fr); }  /* tablet: 2 oszlop */
}
@media (max-width: 600px) {
  #gallery .grid { grid-template-columns: 1fr; }             /* mobil: 1 oszlop */
}

/* Team */
.team{display:flex;flex-wrap:wrap;gap:22px;justify-content:center}
.team-member{background:#fff;border-radius:10px;box-shadow:0 4px 12px rgba(0,0,0,0.08);padding:18px;text-align:center;width:300px}
.team-member img{width:100%;height:auto;border-radius:8px;margin-bottom:12px}

/* Prices */
.prices-row{display:flex;flex-wrap:nowrap;gap:22px;margin-bottom:22px}
.prices-row.space-between{justify-content:space-between}
.prices-row.center{justify-content:center}
.card{background:#fff;border-radius:10px;box-shadow:0 4px 12px rgba(0,0,0,0.08);padding:18px;text-align:center;width:250px}
.card h3{margin:6px 0 10px 0;color:#2c3e50}
.price-tag{color:#e67e22;font-weight:700}
.price-note {
  color: #e67e22;  /* ugyanaz a sárga */
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* a tartalom széthúzása */
}
.card .price-tag {
  margin-top: auto;   /* mindig az aljára tolja */
}

/* Booking */
.form-card{background:#fff;border-radius:10px;box-shadow:0 4px 12px rgba(0,0,0,0.08);padding:24px;max-width:520px;margin:0 auto}
form{display:flex;flex-direction:column;gap:12px}
input,select,textarea,button{padding:12px;font-size:16px;border:1px solid #d1d5db;border-radius:8px}
textarea{min-height:110px;resize:vertical}
button{background:#111;color:#fff;border:none;cursor:pointer;font-weight:600}
button:hover{background:#333}
.success-message{display:none;background:#2ecc71;color:#fff;margin-top:10px;padding:10px;border-radius:8px;text-align:center}

/* Contact */
.contact-box{background:#fff;border-radius:10px;box-shadow:0 4px 12px rgba(0,0,0,0.08);padding:20px;text-align:center;width:320px;margin:0 auto}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-map {
  flex: 2 1 500px;
}

/* Global highlight style */
.highlight {
  color: #e67e22 !important;
  font-weight: bold;
}
section {
  padding-top: 80px; /* eddig kisebb volt, most kicsit nagyobb */
}

