/* ===========================
   PREMIUM LUX FULL VERSION
   =========================== */

/* ===== RESET ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0b;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.loaded {
  opacity: 1;
}

/* ===== CONTAINER ===== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== NAVIGATION ===== */

.nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  backdrop-filter: blur(15px);
  background: rgba(0,0,0,0.65);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  z-index: 1000;
  transition: 0.4s;
}

.nav.scrolled {
  background: rgba(0,0,0,0.85);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  font-size: 18px;
  color: #d4af37;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 1px;
  background: #d4af37;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.05), transparent 40%),
    linear-gradient(135deg,#0a0a0b 0%,#111113 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 70%);
  animation: glowMove 14s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes glowMove {
  0% { transform: translate(-60px,-60px); }
  100% { transform: translate(60px,60px); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(135deg,#ffffff,#d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 25px 0 40px;
  color: #bbb;
  font-size: 18px;
  max-width: 550px;
}

/* ===== BUTTONS ===== */

.btn {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  margin-right: 15px;
  transition: 0.4s;
}

.gold {
  background: linear-gradient(135deg,#d4af37,#b8962e);
  color: #000;
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

.gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 45px rgba(212,175,55,0.7);
}

.outline {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.outline:hover {
  background: #d4af37;
  color: #000;
}

/* ===== STATS ===== */

.stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  color: #999;
}

.stats span {
  display: block;
  font-size: 34px;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

/* ===== SERVICES ===== */

.services {
  padding: 140px 0;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 70px;
  color: #d4af37;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 40px;
}

.card {
  background: #121213;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.1);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

/* ===== GALLERY ===== */

.gallery-section {
  padding: 140px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 25px;
}

.gallery img {
  width: 100%;
  border-radius: 20px;
  transition: 0.5s;
  filter: brightness(0.9);
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ===== PARTICLES & BUTTERFLIES ===== */

#particles,
.butterfly-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#particles { z-index: 2; }
.butterfly-scene { z-index: 3; }

.real-butterfly {
  position: absolute;
  width: 90px;
  top: 50%;
  left: 50%;
  opacity: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .real-butterfly {
    width: 60px;
  }

}

/* ===== BOOKING FORM ===== */

.booking {
  padding: 140px 0;
  background: #0f0f10;
}

.booking-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form input,
.booking-form select {
  padding: 14px;
  background: #151516;
  border: 1px solid rgba(212,175,55,0.2);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.reviews {
  padding: 140px 0;
  background: #111112;
  text-align: center;
}

.review {
  display: none;
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #ccc;
}

.review.active {
  display: block;
  animation: fadeUp 0.8s ease;
}

.review span {
  display: block;
  margin-top: 20px;
  color: #d4af37;
}
/* ================= CONTACT PREMIUM ================= */

.contact-section {
  padding: 160px 0;
  background: linear-gradient(135deg,#0d0d0e,#111113);
  position: relative;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 30px;
  padding: 70px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(212,175,55,0.08);
  transition: 0.4s;
}

.contact-wrapper:hover {
  box-shadow: 0 0 80px rgba(212,175,55,0.15);
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 40px;
  color: #d4af37;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #ccc;
  font-size: 16px;
}

.contact-item span {
  font-size: 18px;
}

.contact-btn {
  margin-top: 30px;
  display: inline-block;
}

/* ===== MAP ===== */

.contact-map {
  flex: 1;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 25px;
  filter: grayscale(100%) brightness(0.8);
  transition: 0.4s;
}

.contact-map iframe:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.02);
}

/* Золотая рамка вокруг карты */
.contact-map::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 30px;
  background: linear-gradient(135deg,#d4af37,#b8962e);
  z-index: -1;
  opacity: 0.3;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {

  .contact-wrapper {
    flex-direction: column;
    padding: 40px;
  }

}
