@import url('https://fonts.googleapis.com/css2?family=Aladin&family=Cinzel+Decorative:wght@400;700;900&family=Inter:wght@400;500;700&display=swap');

:root {
  --bg: #12100d;
  --surface: #1f1a14;
  --text: #f6e8b6;
  --muted: #bfa875;
  --primary: #d4b35c;
  --primary-dark: #a38434;
  --accent: #f0d980;
  --border: rgba(212, 179, 92, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #12100d 0%, #1a1510 50%, #12100d 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 16, 13, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 179, 92, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-video {
  width: 160px;
  max-height: 70px;
  object-fit: contain;
  display: inline-block;
  background: #ffffff;
  padding: 0.25rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(246, 232, 182, 0.3);
}

.logo-text {
  display: inline-block;
  margin-left: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: 'Cinzel Decorative', serif;
}

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

.nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

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

.button {
  border: none;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

.button:hover {
  transform: translateY(-4px) translateZ(10px);
  box-shadow: 0 12px 24px rgba(212, 179, 92, 0.4);
}

@keyframes floating {
  0% { transform: translateY(0px) translateZ(0) scale(1); box-shadow: 0 5px 15px rgba(212, 179, 92, 0.2); }
  50% { transform: translateY(-20px) translateZ(30px) scale(1.05); box-shadow: 0 25px 40px rgba(212, 179, 92, 0.6); }
  100% { transform: translateY(0px) translateZ(0) scale(1); box-shadow: 0 5px 15px rgba(212, 179, 92, 0.2); }
}

.button-primary {
  background: var(--primary);
  color: #1a160f;
  animation: floating 3s ease-in-out infinite;
}

.button-secondary {
  background: rgba(212, 179, 92, 0.18);
  color: var(--primary);
}

.section {
  padding: 4rem 0;
}

.section-contact {
  background: linear-gradient(135deg, #17110e 0%, #1f1a14 50%, #17110e 100%);
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 179, 92, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #18120e 0%, #1f1a14 50%, #18120e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 179, 92, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--text);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 32px;
  border: 2px solid rgba(212, 179, 92, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-collage {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.collage-row {
  display: flex;
  width: 100%;
  height: 100%;
}

.collage-item {
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-right: 2px solid rgba(255,255,255,0.1);
}
.collage-item:last-child {
  border-right: none;
}

.collage-item:hover {
  flex: 1.5;
}

.collage-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(18,16,13,0.9) 0%, rgba(18,16,13,0.3) 50%, rgba(18,16,13,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.collage-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 2rem;
}

.collage-content h1 {
  font-family: 'Aladin', cursive;
  font-size: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: 0.5rem;
  text-shadow: 2px 4px 15px rgba(0,0,0,0.9);
  letter-spacing: 2px;
  color: var(--primary);
}

.collage-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
  color: var(--text);
}

.carousel input[type="radio"] {
  display: none;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.slide::before {
  content: '';
  position: absolute;
  top: -10%; 
  left: -10%; 
  width: 120%; 
  height: 120%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.4);
  z-index: 0;
}

.slide img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.slide-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

#slide1:checked ~ .carousel-slides .slide:nth-child(1),
#slide2:checked ~ .carousel-slides .slide:nth-child(2),
#slide3:checked ~ .carousel-slides .slide:nth-child(3),
#slide4:checked ~ .carousel-slides .slide:nth-child(4) {
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-controls label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-controls label:hover {
  background: rgba(255,255,255,0.8);
}

#slide1:checked ~ .carousel-controls label[for="slide1"],
#slide2:checked ~ .carousel-controls label[for="slide2"],
#slide3:checked ~ .carousel-controls label[for="slide3"],
#slide4:checked ~ .carousel-controls label[for="slide4"] {
  background: var(--primary);
}

.section-light {
  background: #19140f;
}

.section-dark {
  background: #17120e;
  color: var(--text);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-heading.light p,
.section-heading.light h2 {
  color: var(--text);
}

.section-heading h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

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

.card,
.feature-card,
.event-card,
.contact-card {
  padding: 2rem;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(212, 179, 92, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255,255,255,0.05);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.card:hover,
.feature-card:hover,
.event-card:hover,
.contact-card:hover {
  box-shadow: -10px 20px 50px rgba(0, 0, 0, 0.8), inset 0 2px 0 rgba(255,255,255,0.1);
  z-index: 10;
}

.card h3,
.feature-card h3,
.event-card h3,
.contact-card h2 {
  transform: translateZ(30px);
}

.card p,
.feature-card p,
.event-card p,
.contact-card p {
  transform: translateZ(20px);
}

.feature-card,
.event-card {
  background: rgba(212, 179, 92, 0.05);
  border: 1px solid rgba(212, 179, 92, 0.25);
}

.card h3,
.feature-card h3,
.event-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.4rem;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
}

.card p,
.feature-card p,
.event-card p {
  margin: 0;
  color: var(--text);
  opacity: 0.9;
}

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.contact-simple {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .cards-grid,
  .event-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .carousel-section {
    height: 50vh;
  }

  .slide-content h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .slide-content p {
    font-size: 1rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-simple h1 {
  font-family: 'Aladin', cursive;
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin: 0.5rem 0 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.section-text {
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 38rem;
}

.center-image {
  margin: 2rem auto 1.5rem;
  max-width: 780px;
}

.center-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(212, 179, 92, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact-card {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 28px;
  background: #221b14;
  border: 1px solid rgba(212, 179, 92, 0.18);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
}

.contact-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.payment-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(212, 179, 92, 0.08);
  border: 1px solid rgba(212, 179, 92, 0.24);
}

.payment-card h2 {
  color: var(--primary);
}

.qr-box {
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(212, 179, 92, 0.3);
  display: grid;
  gap: 1rem;
  align-items: center;
}

.qr-box span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(16px, 1fr));
  gap: 8px;
}

.qr-grid div {
  height: 16px;
  background: rgba(212, 179, 92, 0.8);
  border-radius: 4px;
}

.payment-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.payment-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.payment-note a:hover {
  text-decoration: underline;
}

.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.map-link:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.social-links a {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 179, 92, 0.2), rgba(212, 179, 92, 0.4));
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 179, 92, 0.2);
}

.social-links a:hover {
  background: linear-gradient(135deg, rgba(212, 179, 92, 0.4), rgba(212, 179, 92, 0.6));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 179, 92, 0.3);
}

.site-footer {
  background: linear-gradient(135deg, #14100d 0%, #1a1510 100%);
  color: #cfbd88;
  border-top: 1px solid rgba(212, 179, 92, 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 920px) {
  .contact-grid,
  .center-image,
  .footer-inner {
    width: 100%;
  }

  .header-inner,
  .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
