/* ---------- Alap változók ---------- */
:root {
  --bg: #0a0c10;
  --bg-soft: #11141b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --card: #1a1d24;

  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: var(--radius);
}

a {
  color: inherit;
}

/* Container */
.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

/* ---------- NAV ---------- */
.nav {
  background: rgba(10,12,16,0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.logo span {
  color: var(--gold);
}

.menu {
  display: flex;
  gap: 1.4rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s;
}

.menu a:hover {
  color: var(--gold);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 70vh;
  background-image: url('https://images.unsplash.com/photo-1505765050516-f72dcac9c60e');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), var(--bg));
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  padding: 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-content--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.hero-content p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.btn.primary {
  background: var(--gold);
  color: #000;
  font-weight: 600;
}

.btn.primary:hover {
  background: #f6d67c;
}

.btn.ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn.ghost:hover {
  background: var(--gold-soft);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gold);
}

/* ---------- DESTINATION CARDS ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.8);
  border-color: var(--gold);
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  margin-top: 0;
}

/* ---------- OFFERS ---------- */
.offer-box {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
}

/* ---------- CONTACT ---------- */
.contact-mail a {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ---------- REVEAL ANIMÁCIÓK ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .menu {
    font-size: 0.9rem;
  }

  .hero {
    height: 60vh;
  }
}