/* === Alap színek és változók === */
:root {
  --primary: hsl(244, 46%, 20%);
  --secondary: hsl(45, 60%, 56%);
  --accent: hsl(45, 60%, 40%);
  --background: hsl(45, 60%, 95%);
  --dark: #1D3557;
  --radius: 16px;
  --shadow: rgba(0,0,0,0.06);
  --font-header: 'Dancing Script', cursive;
  --font-body: 'Roboto', sans-serif;
}

/* === Alap stílusok === */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: var(--font-body); line-height:1.7; background: var(--background); color: var(--dark); font-size:1rem; }

/* === Fejléc === */
header {
  background: var(--primary);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .logo-container {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  display: inline-block;
}
header .logo { max-width: 250px; height:auto; display:block; }
header h1 { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; font-family: var(--font-header); }
header p { font-style: italic; font-size: 1.1rem; margin-top: 0.3rem; }

/* === Navigáció === */
nav {
  background: var(--secondary);
  display:flex;
  flex-direction:column;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #ddd;
  box-shadow:0 2px 4px rgba(0,0,0,0.05);
}
nav a {
  width:100%;
  padding:1rem;
  text-align:center;
  text-decoration:none;
  color: var(--dark);
  transition: background 0.3s, color 0.3s;
}
nav a:hover { background: var(--accent); color:white; }

/* === Hero / Bemutatkozás === */
.hero { background: linear-gradient(to bottom, hsl(45, 60%, 98%), hsl(45, 60%, 95%)); padding:4rem 2rem; border-radius: var(--radius); box-shadow:0 8px 24px var(--shadow); max-width:1024px; margin:2rem auto; }
.hero-content { display:flex; flex-direction:column; align-items:center; gap:2rem; }
.hero-text { text-align:center; }
.hero-text h2 { font-family: var(--font-header); font-size:2rem; margin-bottom:1rem; text-align:center; }
.hero-image img { max-width:400px; width:100%; border-radius: var(--radius); box-shadow:0 4px 12px var(--shadow); }

/* === Yumeiho története === */
section { max-width:1024px; margin:2rem auto; padding:2rem; border-radius: var(--radius); box-shadow:0 8px 24px var(--shadow); background: linear-gradient(to bottom, hsl(45,60%,98%), hsl(45,60%,95%)); }
section h2 { font-family: var(--font-header); font-size:1.75rem; margin-bottom:1.5rem; color: var(--dark); border-bottom:2px solid rgba(0,0,0,0.08); padding-bottom:0.5rem; }
section p { margin-bottom:1.5rem; line-height:1.85; font-size:1rem; color:#333; }
strong { font-weight:700; color: var(--primary); }
em { font-style:italic; color: var(--accent); }
.history-image { text-align:center; margin:1.5rem 0; }
.history-image img { max-width:400px; width:100%; height:auto; border-radius: var(--radius); box-shadow:0 4px 12px var(--shadow); }

/* === Árak === */
.pricing h2 { text-align:left; margin-bottom:1rem; }
.pricing { text-align:center; padding:1.5rem 1rem; }
.pricing-card { margin-top:1rem; display:inline-block; background: linear-gradient(to bottom, hsl(45,60%,98%), hsl(45,60%,95%)); padding:1.5rem 2rem; border-radius: var(--radius); box-shadow:0 8px 24px var(--shadow); font-size:1.2rem; color: var(--dark); transition: transform 0.3s, box-shadow 0.3s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow:0 12px 32px var(--shadow); }
.pricing-card strong { color: var(--primary); font-weight:700; }

/* === Booking === */
nav a.booking-nav {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.3s;
  font-weight: 600;
  margin-left: 0.5rem;
}

nav a.booking-nav:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.booking-link {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 1rem;
}

.booking-link:hover {
  background: var(--primary);
}


/* === Kapcsolat / Térkép === */
.map-container { margin-top:2rem; border-radius: var(--radius); overflow:hidden; box-shadow:0 8px 24px var(--shadow); }
.map-container iframe { width:100%; height:350px; border:0; border-radius: var(--radius); }

/* === Footer === */
footer { background: var(--primary); color:white; text-align:center; padding:1rem; font-size:0.9rem; margin-top:2rem; border-top:3px solid var(--accent); }

/* === Reszponzív === */
@media(min-width:768px){
  .hero-content { flex-direction:row; align-items:center; justify-content:space-between; }
  .hero-text { flex:1; text-align:left; padding-right:2rem; }
  .hero-image { flex:1; }
  .hero-text h2 { font-size:2.5rem; }
}

@media(min-width:700px){
  nav { flex-direction:row; justify-content:center; }
  nav a { width:auto; border-bottom:none; border-right:1px solid #eee; }
  nav a:last-child { border-right:none; }
  section h2 { font-size:2rem; }
  .map-container iframe { height:450px; }
}

/* === Mobil-optimalizált navigáció === */
@media(max-width:767px){
  nav a {
    padding:0.75rem;   /* kisebb padding */
    font-size:0.95rem; /* kisebb betűméret */
  }
}
