@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Dancing+Script:wght@400..700&family=Fjalla+One&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f8;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  background: #0a1f33; /* тёмно-синий фон */
  color: #fff;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: #081a29; /* ещё темнее при скролле */
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  width: 80px;
  transition: transform 0.3s;
  border-radius: 12px;
}
.logo img:hover {
  transform: rotate(-2deg) scale(1.08);
}

/* Кнопка */
.sticker-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffca28, #e6b800); 
  color: #0a1f33 !important;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* "блик" при наведении */
.sticker-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.sticker-btn:hover::before {
  left: 130%;
}

.sticker-btn:hover {
  background: linear-gradient(135deg, #ffd84d, #f0c000);
  color: #fff !important;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}


/* Навигация */
.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  color: #fff; /* белый текст */
  text-decoration: none;
  font-weight: 500;
  padding: 0 12px;
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover {
  color: #ffca28; /* жёлтый при ховере */
  border-bottom: 2px solid #ffca28;
  transition: 0.2s;
}

/* Разделители */
.main-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  height: 20px;
  border-left: 2px solid rgba(255,255,255,0.4);
}

/* Burger */
.burger {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s;
}

.burger:hover {
  transform: scale(1.2);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .burger {
    display: block;
    z-index: 1111;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -260px;
    height: 100vh;
    background: #0a1f33; /* тёмный фон на моб. меню */
    flex-direction: column;
    width: 260px;
    padding: 80px 20px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.5);
    transition: right 0.4s ease;
  }

  .main-nav a {
    margin: 15px 0;
    font-size: 1.1em;
    color: #fff;
  }

  .main-nav a:hover {
    color: #ffca28;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav.show {
    right: 0;
  }
}




/* Main content */
main {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0px;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}



/* Hero Section */
.hero {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background: url("../images/Monte-Carlo-Casino-14.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Заголовок */
.hero-title {
  position: relative;
  color: #ffca28;
  font-size: 4rem;
  text-align: center;
  font-family: "Cinzel Decorative", serif; /* необычный премиум-шрифт */
  letter-spacing: 5px;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease-out;
}

/* Анимация появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }
}


.hotel-cards-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  position: relative;
  z-index: 10;
}

/* Карточка */
.hotel-card {
  display: flex;
  align-items: stretch; /* делаем равные по высоте */
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

/* первая карточка заходит на hero */
.hotel-cards-section .hotel-card:first-child {
  margin-top: -20vh;
}

.hotel-card:hover {
  transform: translateY(-5px);
}

/* Блок с картинкой */
.hotel-image {
  flex: 1;
  min-height: 350px; /* фиксированная высота */
  max-height: 350px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка подрезается аккуратно */
}

/* Текстовый блок */
.hotel-info {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #004aad;
}

.hotel-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Кнопка */
.hotel-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #d4af37;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}

.hotel-btn:hover {
  background: #b8962d;
  transform: scale(1.05);
}

/* Чередование */
.alt-left .hotel-image { order: 1; }
.alt-left .hotel-info { order: 2; }

.alt-right .hotel-info { order: 1; }
.alt-right .hotel-image { order: 2; }

/* =====================
   Адаптивность
===================== */
@media (max-width: 900px) {
  .hotel-card {
    flex-direction: column;
    width: 95%;
  }

  /* ВСЕГДА картинка сверху */
  .hotel-image {
    order: 1 !important; /* делаем картинку первой */
    width: 100%;
    min-height: 250px;
    max-height: 250px;
  }

  .hotel-info {
    order: 2 !important; /* текст всегда после картинки */
    padding: 20px;
    text-align: center;
  }

  .hotel-btn {
    align-self: center;
  }

  .hotel-cards-section .hotel-card:first-child {
    margin-top: 0; /* убираем overlap на мобилках */
  }
}

@media (max-width: 500px) {
  .hotel-info h2 {
    font-size: 1.4rem;
  }
  .hotel-info p {
    font-size: 0.9rem;
  }
  .hotel-image {
    min-height: 200px;
    max-height: 200px;
  }
}

/* Intro Section */
.intro {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.intro-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #111;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* всегда 4 колонки */
  gap: 25px;
}

.intro-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.intro-card h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #111;
}

.intro-card p {
  font-size: 1.05em;
  color: #444;
  line-height: 1.5;
}


/* адаптив для телефонов */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr); /* на планшете 2 */
  }
}

@media (max-width: 600px) {
  .intro-grid {
    grid-template-columns: 1fr; /* на телефоне 1 */
  }
}


.reviews-section {
  background: #0a1f33; /* тёмный фон для контраста */
  padding: 80px 20px;
  color: #fff;
}

.reviews-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #d4af37; /* золотой акцент */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.review-stars {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  color: #004aad;
  font-size: 0.95rem;
}






/* Stats Section */
.stats-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
  background: #b8962d; 
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.stats-title {
  font-size: 2em;
  margin-bottom: 50px;
  color: #111; /* тёмный текст на кремовом */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.stat-card {
  background: rgba(244, 241, 241, 0.75); /* светлая карточка поверх крема */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #a87e01;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-number.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-card p {
  font-size: 1.1em;
  color: #333; /* читаемый тёмный */
}

/* 📱 Адаптивность */

/* планшеты */
@media (max-width: 992px) {
  .stats-section {
    margin: 60px auto;
    padding: 30px 15px;
  }

  .stats-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .stat-number {
    font-size: 2.2em;
  }

  .stat-card p {
    font-size: 1em;
  }
}

/* телефоны */
@media (max-width: 600px) {
  .stats-section {
    margin: 40px auto;
    padding: 20px 10px;
  }

  .stats-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr; /* по одной карточке */
    gap: 20px;
  }

  .stat-number {
    font-size: 2em;
  }

  .stat-card p {
    font-size: 0.95em;
  }
}









/* Age Popup */
.age-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 99999;
}

.age-popup-content {
  background: #f5f5dc;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: #333;
}

.age-popup-content h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #6b4226;
}

.age-popup-content p {
  margin-bottom: 20px;
  color: #444;
}

#confirm-age {
  background: #6b4226;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  color: #fff;
}

#confirm-age:hover {
  background: #4a2d1b;
  transform: translateY(-2px);
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5f5dc;
  color: #333;
  padding: 20px 25px;
  max-width: 600px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
}

.cookie-popup p {
  margin: 0;
  font-size: 0.95em;
  color: #444;
  text-align: left;
}

.cookie-popup button {
  background: #6b4226;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  color: #fff;
  white-space: nowrap;
}

.cookie-popup button:hover {
  background: #4a2d1b;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-popup {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* FOOTER 18+ */
.age-footer {
  background: #fdfdfd; /* светлый фон */
  color: #222;
  text-align: center;
  padding: 40px 20px 30px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 1rem;
  border-top: 1px solid #eee;
  position: relative;
  margin-top: 40px;
}

/* Линия с иконкой */
.age-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.age-line::before,
.age-line::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #d4af37; /* золотая линия */
}

.age-icon {
  margin: 0 15px;
  background: #d4af37;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 2px solid #fff;
}

/* Текст */
.age-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.age-text p {
  margin: 10px 0;
}

.age-text a {
  color: #d9534f; /* красный акцент для Terms & Privacy */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.age-text a:hover {
  color: #b43a3a;
  text-decoration: underline;
}

/* Авторское право */
.copy {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* Адаптив */
@media (max-width: 768px) {
  .age-footer {
    font-size: 0.9rem;
    padding: 30px 15px 20px;
  }

  .age-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .age-text {
    padding: 0 10px;
  }

  .copy {
    font-size: 0.8rem;
  }
}

.footer-phone {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  margin-top: 15px;
}
.footer-phone::before {
  content: "";
  display: block;
  margin-bottom: 5px;
}




.privacy-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 25px;
  line-height: 1.7;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: #222;
}

.privacy-title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #d4af37; /* золотой акцент */
  text-align: center;
}

.privacy-section h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: #004aad;
  font-size: 1.25rem;
}

.privacy-section p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.privacy-section a {
  color: #004aad;
  font-weight: bold;
  text-decoration: none;
}

.privacy-section a:hover {
  color: #d4af37;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #004aad;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, sans-serif;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid #d4af37;
  outline: none;
}

.contact-btn {
  padding: 14px 24px;
  background: #d4af37;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-btn:hover {
  background: #b8962d;
  transform: scale(1.05);
}
