/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button { appearance: none; -webkit-appearance: none; background: none; border: none; padding: 0; margin: 0; font: inherit; color: inherit; cursor: pointer; }

:root {
  --blue:       #1565C0;
  --blue-dark:  #0D3F7A;
  --blue-mid:   #1976D2;
  --gold:       #F5A623;
  --gold-dark:  #D4881A;
  --dark:       #0B2545;
  --white:      #FFFFFF;
  --off-white:  #F5F0E8;
  --text-light: rgba(255,255,255,0.85);
  --nav-h:      68px;
  --radius:     12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: var(--dark);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.section-title.centered { text-align: center; }
.section-title.gold { color: var(--gold); }

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--blue-dark);
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 63, 122, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Language Toggle ── */
.lang-flag {
  margin-left: 20px;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition);
  flex-shrink: 0;
  user-select: none;
  display: inline-block;
}
.lang-flag:hover { transform: scale(1.2); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(11,37,69,0.5) 60%,
    rgba(11,37,69,0.9) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding-bottom: 100px;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about {
  background: var(--gold);
  padding: 80px 24px;
  color: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}
.about-text h2 { color: var(--blue-dark); }
.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: rgba(11,37,69,0.85);
  margin-bottom: 1rem;
}
.about-photo img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section.blue { background: var(--blue-mid); }
.section.dark { background: var(--dark); }

/* ── Card Rows (services / events / partners) ── */
.card-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.card-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.card-row.reverse { grid-template-columns: 1fr 220px; }
.card-row.reverse .service-img { order: 2; }
.card-row.reverse .service-body { order: 1; }

.service-img img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.service-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-body p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.price-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.price-list li {
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.price-list li strong { color: var(--white); }

.tag-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.tag-list li {
  color: var(--text-light);
  padding: 3px 0 3px 16px;
  position: relative;
  font-size: 0.95rem;
}
.tag-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  margin-top: 0.5rem;
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); }
.btn.small { padding: 6px 16px; font-size: 0.8rem; }

/* ── Music Grid ── */
.music-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.music-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.music-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.music-card-body {
  padding: 24px;
}
.music-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.music-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1.2rem;
}
.social-icons a { transition: opacity var(--transition); }
.social-icons a:hover { opacity: 0.7; }

/* ── Contacts ── */
.contacts-section { background: var(--blue-dark); }
.contacts-inner { text-align: center; }
.contacts-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--gold); }
.contact-icon {
  font-size: 1.8rem;
  width: 48px;
  text-align: center;
}

/* ── Footer ── */
.footer {
  background: #050F1E;
  padding: 32px 24px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer nav a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer nav a:hover { color: var(--gold); }

/* ── Scroll fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Placeholder images (shown when real images are missing) ── */
img[src=""] ,
img:not([src]) {
  background: rgba(255,255,255,0.1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .music-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--blue-dark);
    padding: 16px 24px 24px;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .card-row,
  .card-row.reverse {
    grid-template-columns: 1fr;
  }
  .card-row.reverse .service-img,
  .card-row.reverse .service-body { order: unset; }
  .service-img img { max-width: 200px; margin: 0 auto; }

  .section { padding: 56px 0; }
  .about { padding: 56px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .contacts-grid { gap: 16px; }
  .contact-item { font-size: 1rem; }
}
