*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #E8793A;
  --dark: #111;
  --cream: #F5F0E8;
  --pink: #c17a8a;
  --pink-dark: #b8697a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
}

.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff; text-decoration: none;
}

.logo-pin {
  width: 28px; height: 28px; background: var(--orange);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.logo-pin::after {
  content: ''; width: 9px; height: 9px;
  background: #fff; border-radius: 50%; transform: rotate(45deg);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.nav-links { display: flex; gap: 1.75rem; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

/* ── INFO BUTTON ── */
.nav-info-btn {
  background: var(--pink); color: #fff; border: none; border-radius: 100px;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}

.nav-info-btn:hover { background: #b8697a; transform: translateY(-1px); }

.pulse-dot {
  width: 7px; height: 7px; background: #7fffb0;
  border-radius: 50%; flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

/* ── SIDEBAR OVERLAY ── */
.sb-overlay {
  position: fixed; inset: 0; z-index: 198;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.sb-overlay.open { opacity: 1; pointer-events: all; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed; top: 0; right: 0;
  width: 340px; height: 100vh; z-index: 199;
  background: var(--pink);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  gap: 1.5rem; padding: 5rem 1.75rem 2.5rem;
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}

.sb-close {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  font-size: 1.1rem; width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.sb-close:hover { background: rgba(255,255,255,0.35); }

.open-bubble {
  background: #d4899a;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  padding: 1.8rem 2rem; text-align: center;
  position: relative; width: 100%; max-width: 230px;
}

.megaphone-emoji { position: absolute; top: -1.2rem; left: -1.4rem; font-size: 2.4rem; }

.open-bubble h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; text-transform: uppercase;
}

.open-bubble .hours { margin-top: 0.5rem; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); }

.email-card {
  background: #fff; border-radius: 14px; padding: 0.8rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  width: 100%; max-width: 250px;
}

.email-card .icon { font-size: 1.8rem; }

.email-card .email-text { font-weight: 700; color: #222; font-size: 0.78rem; word-break: break-all; }

.sale-box { text-align: center; }
.sale-box .sale-label { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.sale-box .sale-pct {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1;
}

.star { color: #a0546a; font-size: 1.1rem; display: block; text-align: center; margin: 0.25rem auto; }

.sb-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.2); margin: 0.25rem 0; }

.sb-story { width: 100%; max-width: 280px; }

.sb-story h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem;
}

.sb-story p { font-size: 0.76rem; line-height: 1.85; color: rgba(255,255,255,0.88); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center;
}

.hero-bg {
  position: absolute; inset: -10%;
  background: url('R.jpg') center/cover no-repeat;
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: brightness(0.5);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.35));
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400; line-height: 1.05; color: var(--cream); margin-bottom: 0.5rem;
}

.hero-content h1 strong { font-weight: 900; color: #fff; display: block; }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem;
}

.btn-book {
  display: inline-block; background: var(--orange); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.1rem 3.5rem; border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
}

.btn-book:hover { background: #d0682a; transform: translateY(-2px); }

/* ── ABOUT ── */
.about {
  background: var(--pink-dark); padding: 5rem 3rem;
  display: flex; align-items: center; justify-content: center; position: relative;
}

.about::before { content: '✦'; position: absolute; top: 2rem; right: 2.5rem; font-size: 1.4rem; color: #a0546a; }

.about-inner { max-width: 860px; }

.about .section-label { margin-bottom: 0.5rem; }
.about .section-title { margin-bottom: 2rem; }

.about p { font-size: 0.88rem; line-height: 1.95; color: rgba(255,255,255,0.92); text-align: justify; }

/* ── SHARED SECTION LABELS ── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 3rem; color: #fff;
}

/* ── EVENTS ── */
.events { padding: 6rem 2rem; background: #0d0d0d; }
.events .inner { max-width: 1200px; margin: 0 auto; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }

.event-card {
  border-radius: 20px; overflow: hidden; position: relative;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.6); }

.event-card.jazz { background: linear-gradient(135deg, #0d1b3e, #1a1a4e, #2d1b5e); }
.event-card.family { background: linear-gradient(135deg, #1a0a00, #3d1a00, #2a1200); }

.event-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0.35; }
.jazz .event-bg-img { background-image: url('https://images.unsplash.com/photo-1415201364774-f6f0bb35f28f?w=800&q=80'); }
.family .event-bg-img { background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=800&q=80'); }

.event-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }

.event-body { position: relative; z-index: 2; padding: 2rem; }

.event-label {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1rem;
}

.event-card.jazz .event-label { background: #6c4fd1; }

.event-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 0.5rem; }
.event-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.75); }

.event-date { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.event-date-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.event-date-info { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.event-date-info strong { display: block; color: #fff; font-size: 0.9rem; }

.event-details { list-style: none; margin-bottom: 1.25rem; }
.event-details li { font-size: 0.83rem; color: rgba(255,255,255,0.8); padding: 0.2rem 0; display: flex; align-items: baseline; gap: 0.5rem; }
.event-details li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.event-card.jazz .event-details li::before { color: #a78bfa; }

.event-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; }
.event-location { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.event-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.event-price span { font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.6); display: block; }

.btn-ticket {
  display: inline-block; background: #fff; color: var(--dark);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-ticket:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.event-card.jazz .btn-ticket:hover { background: #6c4fd1; }

/* ── TOURS ── */
.tours { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }

.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.tour-card { background: #1c1c1c; border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

.tour-img { height: 200px; background-size: cover; background-position: center; position: relative; }

.tour-tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px;
}

.tour-info { padding: 1.5rem; }
.tour-info h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; }
.tour-info p { font-size: 0.84rem; color: #aaa; line-height: 1.55; margin-bottom: 1rem; }
.tour-meta { display: flex; justify-content: space-between; align-items: center; }
.tour-duration { color: #888; font-size: 0.82rem; }
.tour-price { color: var(--orange); font-weight: 700; font-size: 1rem; }

/* ── BOOKING ── */
.booking-section { background: #141414; padding: 6rem 2rem; text-align: center; }

.booking-form {
  max-width: 700px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }

.form-group input,
.form-group select,
.form-group textarea {
  background: #1e1e1e; border: 1px solid #2e2e2e; border-radius: 8px;
  color: #fff; font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group select option { background: #1e1e1e; }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  grid-column: 1 / -1; background: var(--orange); color: #fff; border: none;
  border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.1rem 3rem; cursor: pointer; transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover { background: #d0682a; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #0a0a0a; padding: 2.5rem 2rem;
  text-align: center; color: #555; font-size: 0.82rem; letter-spacing: 0.05em; line-height: 2;
}

footer span { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .sidebar { width: 100%; }
  .booking-form { grid-template-columns: 1fr; }
  .about { padding: 3rem 1.5rem; }
}
