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

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f7fc;
  color: #12335a;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.header-inner img {
  flex-shrink: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  margin-right: auto;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, #ff4b4b, #ff9800);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #12335a;
}



.banner-wrapper {
  position: relative;
  width: 100%;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.banner-hotspot {
  position: absolute;
  z-index: 50;
  cursor: pointer;
  background: transparent; 
}


@media (max-width: 600px) {

  .banner-wrapper {
    aspect-ratio: 720 / 1280;
  }

  .banner-hotspot {
    left: calc(510 / 720 * 100%);
    top: calc(2 / 1280 * 100%);
    width: calc((700 - 500) / 720 * 100%);
    height: calc((140 - 55) / 1500 * 100%);
  }
}


@media (min-width: 600px) and (max-width: 1024px) {
  .banner-hotspot {
    left: calc(750 / 1050 * 100%);
    top: calc(10 / 1400 * 100%);
    width: calc((965 - 700) / 1000 * 100%);
    height: calc((150 - 60) / 1400 * 100%);
  }
}


@media (min-width: 1024px) {
  .banner-hotspot {
    left: calc(1200 / 1920 * 100%);
    top: calc(2 / 1080 * 100%);
    width: calc((1800 - 1500) / 1920 * 100%);
    height: calc((125 - 40) / 1080 * 100%);
  }
}

.hero-section {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #e0f3ff 0%, #f9fbff 60%);
  text-align: center;
}

.hero-inner {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-label {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: #ff4b4b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-meta {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }
}

.section {
  padding: 72px 0;
  text-align: center;
}

.section-gold {
  background: linear-gradient(180deg, #ffe18a, #ffd464);
}

.section-blue {
  background: linear-gradient(180deg, #e5f3ff, #d1ebff);
}

.section-light {
  background: #f5f8ff;
}

.section-contacts {
  background: #fff7ec;
}

.section-inner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-inner p {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: 15px;
}

.section-subtitle {
  margin-bottom: 32px;
  opacity: 0.94;
}


.story-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 960px) {
  .story-inner {
    grid-template-columns: 1fr;
  }
}


.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 52, 96, 0.25);
  transition: 0.25s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 52, 96, 0.32);
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


.reviews-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  max-width: 320px;
  flex: 1 1 260px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 52, 96, 0.2);
  text-align: center;
}



.contacts-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.contact-card {
  min-width: 220px;
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(170, 88, 12, 0.25);
  text-align: center;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.18s;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff4b4b, #ff9800);
  box-shadow: 0 12px 26px rgba(255, 77, 90, 0.45);
}

.btn-ghost {
  color: #ff4b4b;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 52, 96, 0.15);
}



.site-footer {
  padding: 12px 0;
}

.footer-logo {
  width: clamp(160px, 40vw, 260px);
  margin: 0 auto;
}



.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.4s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}



#backToTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff4b4b;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.18s;
  z-index: 30;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

.logo-image {
  display: block;
  width: clamp(110px, 10vw, 180px);
  height: auto;
  margin: 0;
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(244, 247, 252, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
    z-index: 19;
  }

  .main-nav a {
    padding: 4px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .burger {
    display: flex;
    margin-left: 8px;
  }

  .logo-image {
    width: 120px;
  }
}

.burger.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}
.burger span {
  transition: 0.2s ease;
}

.info-cards {
  text-align: center;
  padding: 60px 20px;
  background: #ffe07a; /* твой желтый фон */
}

.info-cards h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
}

.info-cards p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.5;
}

.cards-grid {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 35px;
  min-width: 240px;
  text-align: center;
  box-shadow: 0px 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-text {
  font-size: 18px;
  font-weight: 500;
}
.contacts-section {
  background: #fff4e6;
  padding: 70px 20px;
  text-align: center;
}

.contacts-section h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #002b45;
}

.contacts-section .subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #444;
}

.contacts-grid {
  display: grid;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 520px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}


.contact-card.wide {
  grid-column: 1 / -1;
}


.contact-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0px 7px 25px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #002b45;
}

.contact-card p {
  margin: 6px 0;
  font-size: 18px;
}

.contact-card a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card.wide {
  grid-column: 1 / -1;
}


.tickets-wrapper {
  text-align: center;
  margin-top: 40px;
}

.tickets-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff6a2e, #ffa238);
  border-radius: 50px;
  box-shadow: 0px 8px 20px rgba(255, 120, 50, 0.4);
  transition: 0.2s ease;
}

.tickets-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 10px 25px rgba(255, 120, 50, 0.5);
}

@media (min-width: 1024px) {
  .story-image img {
    width: 80%;
    max-width: 420px; 
    margin: 0 auto;
    display: block;
  }

  .story-inner {
    gap: 40px;
  }
}

.footer-inner {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
  width: 100%;
}

@media (min-width: 960px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto;
    gap: 26px;
    justify-items: center;
  }

  .gallery-item {
    width: 100%;
    max-width: 360px;
  }
}


.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 14px 32px rgba(15, 52, 96, 0.14);
  transition: 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 52, 96, 0.26);
}

.info-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #12335a;
}


@media (max-width: 900px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}


.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  padding: 26px 30px;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(15, 52, 96, 0.18);
  transition: 0.2s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 52, 96, 0.28);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #002b45;
}

.feature-card p {
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 16px;
  }
}

.btn-commercial {
  display: inline-block;
  padding: 18px 42px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff6a2e, #ffa238);
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 120, 50, 0.45);
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-commercial:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(255, 120, 50, 0.55);
}

.hero-sub {
  font-size: 20px !important;
}

.hero-meta {
  font-size: 20px !important;
}

.show-subtitle {
  font-size: 20px !important;
}

.story-text p {
  font-size: 20px !important;
  line-height: 1.6;
}

.section-subtitle {
  font-size: 20px !important;
}

.hero-label {
    font-size: 16px !important;
    padding: 10px 22px !important;
}

.family-subtitle {
    font-size: 20px !important;
    line-height: 1.5 !important;
}
