body, html {
  margin: 0;
  padding: 0;
  padding-top: 2rem;
  width: 100vw;
  overflow-x: hidden; /* Запрет горизонтального скролла */
  background-color: black;
  color: white;
  font-family: 'NAMU', sans-serif;
  min-height: 100vh;
  cursor: none; /* Hide default cursor */
}

/* Cursor Follower */
.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #A98534;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease-out;
  mix-blend-mode: difference;
  opacity: 0.8;
}

/* Hide default cursors on interactive elements */
a, .social-icon, .map-container, .copyright a, .action-button {
  cursor: none !important;
}

/* Burger Menu */
.burger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.burger-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid #A98534;
  border-radius: 35px;
  padding: 15px 25px;
  color: #A98534;
  font-family: 'NAMU', sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.burger-toggle:hover {
  background: rgba(169, 133, 52, 0.2);
}

.burger-icon {
  position: relative;
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #A98534;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #A98534;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.menu-close:hover {
  color: #E2DBCA;
  background: rgba(0, 0, 0, 0.7);
}

.menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
  text-align: center;
}

.menu-overlay.active .menu-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.menu-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background-color: rgba(169, 133, 52, 0.1);
  border: 2px solid #A98534;
  border-radius: 25px;
  color: #A98534;
  font-family: 'NAMU', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  min-width: 200px;
  transition: all 0.3s ease;
  cursor: none !important;
}

.menu-button:hover {
  background-color: #A98534;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(169, 133, 52, 0.4);
}

.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.5rem;
}

.contact-arrow {
  transition: transform 0.3s ease;
  font-size: 0.8em;
}

.contact-btn.expanded .contact-arrow {
  transform: rotate(180deg);
}

.contact-info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  margin-top: 0.5rem;
  padding: 0 1.5rem;
}

.contact-btn.expanded + .contact-info {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
  overflow-y: auto;
}

.contact-info p {
  margin: 0.5rem 0;
  color: #A98534;
  font-family: 'NAMU', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-info strong {
  color: #E2DBCA;
}

/* Burger Animation States */
.burger-toggle.active .line-1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active .line-2 {
  opacity: 0;
}

.burger-toggle.active .line-3 {
  transform: rotate(-45deg) translate(6px, -6px);
}










.hero-landing {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: black;
}

.hero-logo {
  display: block;
  max-width: 250px;
  margin: auto;
  position: relative;
  top: 0;
  margin-bottom: 70px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.action-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: rgba(169, 133, 52, 0.1);
  border: 2px solid #A98534;
  border-radius: 25px;
  color: #A98534;
  font-family: 'Namu1910', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: none !important;
  min-width: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
  background-color: #A98534;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(169, 133, 52, 0.4);
}


/* Coming Soon */
.coming-soon-block {
  position: relative;
  top: 8%; /* Отступ сверху на десктопе */
  left: 5%;
  display: inline-block;
  margin-bottom: 5%; /* Расстояние между блоком Coming Soon и логотипом */
}

.coming-text {
  font-weight: bold;
  line-height: 1.1;
  color: #A98534;
  font-size: 3rem;
  display: inline;
}

/* Отступ между иконкой и текстом */
.coming-icon-wrapper {
  position: absolute;
  top: 0;
  left: -0.6em; /* отступ от текста на десктопе */
  width: 2.2em;
  height: 2.2em;
  pointer-events: none;
}

.coming-icon {
  width: 2.2em;
  height: auto;
  transform-origin: center;
  transform: scaleX(-1);
  position: relative;
  top: -1.6em;
}

/* Адаптивность */

@media (max-width: 1024px) {
  .coming-text {
    font-size: 2.4rem;
  }
  .coming-icon-wrapper {
    width: 1em;
    height: 1em;
    left: -0.2em;
  }
  .coming-icon {
    width: 1em;
    top: -1.3em;
  }
}

@media (max-width: 768px) {
  .coming-text {
    font-size: 2rem;
  }
  .coming-icon-wrapper {
    width: 0.9em;
    height: 0.9em;
    left: -0.15em;
  }
  .coming-icon {
    width: 0.9em;
    top: -1.1em;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 1rem; /* Дополнительный отступ сверху для видимости иконки */
  }

  .coming-soon-block {
    top: 5%; /* Смещено вверх и уменьшен отступ */
    left: 0; /* Убрали отступ слева */
    margin-left: 1rem; /* Небольшой отступ слева */
  }

  .coming-text {
    font-size: 1.6rem;
  }
  .coming-icon-wrapper {
    width: 0.7em;
    height: 0.7em;
    left: 0; /* иконка максимально близко, без отрицательного отступа */
  }
  .coming-icon {
    width: 0.7em;
    top: -0.9em;
  }

  /* Поднимаем лого на мобилках чуть выше */
  .hero-logo {
    margin-bottom: 50px; /* поднято еще выше для видимости контента */
  }
}

/* Visit Us Section */
.visit-us-section {
  padding: 0.18rem 1rem;
  margin-top: 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
}

.visit-us-title {
  font-family: 'NAMU', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #A98534;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

.social-icon svg {
  width: 32px;
  height: 32px;
  fill: #A98534;
}

.map-container {
  max-width: 100%;
  margin: 2rem auto 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.1);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.4) 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  position: relative;
  z-index: 0;
}

/* Divider */
.divider {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #A98534, transparent);
  opacity: 0.7;
  margin: 2rem auto;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: black;
  margin-top: 2rem;
}

.copyright {
  font-family: 'NAMU', sans-serif;
  font-size: 1rem;
  color: #A98534;
  margin: 0;
}

.copyright a {
  color: #A98534;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.copyright a:hover {
  opacity: 0.8;
}

/* Responsive adjustments for Visit Us section */
@media (max-width: 1024px) {
  .visit-us-title {
    font-size: 2.2rem;
  }
  .social-icon svg {
    width: 28px;
    height: 28px;
  }
  .map-container iframe {
    height: 350px;
  }
  .divider {
    margin: 1.5rem auto;
  }
  .copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .visit-us-section {
    padding: 0.135rem 1rem;
  }
  .visit-us-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .social-icons {
    gap: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .social-icon svg {
    width: 28px;
    height: 28px;
  }
  .map-container iframe {
    height: 300px;
  }
  .divider {
    width: 90%;
    margin: 1.5rem auto;
  }
  .footer {
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
  }
  .copyright {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .action-buttons {
    gap: 0.8rem;
    margin-top: 7.5rem;
    flex-direction: column;
    align-items: center;
  }

  .action-button {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    min-width: 120px;
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .visit-us-section {
    padding: 0.09rem 0.5rem;
  }
  .visit-us-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  .social-icons {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .social-icon svg {
    width: 24px;
    height: 24px;
  }
  .map-container iframe {
    height: 250px;
  }
  .divider {
    margin: 1rem auto;
    width: 95%;
  }
  .footer {
    padding: 0.6rem 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
  }

  .divider {
    width: 90%;
    margin: 1.5rem auto;
  }

  .footer {
    padding: 0.8rem;
    margin-top: 1.5rem;
  }

  .action-buttons {
    gap: 0.8rem;
    margin-top: 10rem;
    flex-direction: column;
    align-items: center;
  }

  .action-button {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    min-width: 100px;
    width: 100%;
    max-width: 200px;
  }

  .burger-menu {
    top: 15px;
    right: 15px;
  }

  .burger-toggle {
    padding: 8px 12px;
    font-size: 12px;
  }

  .burger-icon {
    width: 18px;
    height: 14px;
  }

  .menu-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 180px;
  }

  .contact-btn {
    padding: 0.8rem 1.5rem;
  }

  .contact-info {
    padding: 0 1rem;
  }

  .contact-btn.expanded + .contact-info {
    max-height: 500px;
    padding: 0.8rem 1rem 1rem;
    overflow-y: auto;
  }

  .contact-info p {
    font-size: 0.8rem;
  }
}

/* Event Planning Modal */
.event-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #A98534;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.event-modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #A98534;
}

.modal-header h2 {
  color: #A98534;
  font-family: 'NAMU', sans-serif;
  font-size: 1.8rem;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #A98534;
  font-size: 2rem;
  cursor: none !important;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #E2DBCA;
  transform: scale(1.1);
}

.modal-body {
  padding: 1.5rem;
}

.event-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #A98534;
  font-family: 'NAMU', sans-serif;
  font-size: 1rem;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid #A98534;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'NAMU', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E2DBCA;
  box-shadow: 0 0 10px rgba(169, 133, 52, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  padding: 1rem 2rem;
  background: #A98534;
  border: 2px solid #A98534;
  border-radius: 25px;
  color: black;
  font-family: 'NAMU', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: none !important;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: transparent;
  color: #A98534;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(169, 133, 52, 0.4);
}

/* Instagram Feed Section */
.instagram-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: black;
  color: white;
}

.instagram-title {
  font-family: 'NAMU', sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #A98534;
  margin-bottom: 2rem;
}

.instagram-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 1rem;
    max-height: 95vh;
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1rem;
  }

  .event-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 0.5rem;
  }

  .modal-header {
    padding: 0.8rem;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 0.8rem;
  }

  .event-form {
    gap: 0.8rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Instagram Section Responsive */
  .instagram-section {
    padding: 2rem 1rem;
  }

  .instagram-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .instagram-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Instagram Section Mobile */
  .instagram-section {
    padding: 1.5rem 0.5rem;
  }

  .instagram-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
