@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --bg: #0a0a0a;
  --text: #f5f5f5;
  --brown: #3d2817;
  --brown-light: #5c3d24;
  --red: #c0392b;
  --red-hover: #e74c3c;
  --red-border: #a93226;
  --shadow: rgba(192, 57, 43, 0.35);
  --gradient: linear-gradient(135deg, #c0392b, #922b21, #641e16);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--red-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Drop cap */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5em;
  line-height: 0.8;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--red);
  font-weight: 700;
}

/* Header */
.header {
  background: var(--bg);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.header-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-nav a {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--red);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-size: 14px;
}

.header-contact p,
.header-contact a {
  white-space: nowrap;
  margin: 0;
  color: var(--text);
}

.header-contact a:hover {
  color: var(--red);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--red);
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--brown);
  z-index: 1001;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-menu nav a {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.mobile-contact {
  border-top: 1px solid var(--red);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.mobile-contact p,
.mobile-contact a {
  color: var(--text);
  white-space: nowrap;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
}

.overlay.active {
  display: block;
}

/* Banner */
.banner {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.banner h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: var(--text);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  padding: 0 20px;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #ccc;
  font-size: 17px;
}

/* Strengths - staggered cards */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: flex-end;
  padding: 20px 0;
}

.strength-card {
  flex: 0 1 220px;
  padding: 3px;
  background: var(--gradient);
  border-radius: 14px;
  box-shadow:
    0 10px 40px var(--shadow),
    0 6px 16px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card-inner {
  background: var(--brown);
  border-radius: 11px;
  padding: 28px 22px;
  height: 100%;
}

.strength-card:nth-child(1) { transform: translateY(-20px); }
.strength-card:nth-child(2) { transform: translateY(10px); }
.strength-card:nth-child(3) { transform: translateY(-35px); }
.strength-card:nth-child(4) { transform: translateY(5px); }
.strength-card:nth-child(5) { transform: translateY(-15px); }

.strength-card:hover {
  transform: translateY(-5px) !important;
  box-shadow:
    0 16px 48px var(--shadow),
    0 8px 24px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.strength-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--red);
}

.strength-card p,
.strength-card-inner p {
  font-size: 14px;
  color: #ddd;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--brown);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--red-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--red);
}

.service-card-body p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--red);
  color: var(--text);
  border: 2px solid var(--red-border);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: var(--font-body);
  font-size: 15px;
  text-align: center;
}

.btn:hover {
  background: var(--red-hover);
  color: var(--text);
  transform: scale(1.03);
}

/* Advantages / Stats */
.advantages-block {
  background: var(--brown);
  padding: 60px 40px;
  border-left: 5px solid var(--red);
  border-radius: 0 8px 8px 0;
}

.advantages-block p {
  margin-bottom: 20px;
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: var(--bg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--red);
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  color: #ccc;
  margin-top: 8px;
}

/* Forms */
.form-section {
  background: var(--brown-light);
  padding: 60px 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  padding: 40px;
  border: 2px solid var(--red);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--brown);
  border: 1px solid var(--red-border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--shadow);
}

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

.form-message {
  padding: 14px 20px;
  border-radius: 4px;
  margin-top: 16px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(39, 174, 96, 0.2);
  border: 1px solid #27ae60;
  color: #2ecc71;
}

.form-message.error {
  display: block;
  background: rgba(192, 57, 43, 0.2);
  border: 1px solid var(--red);
  color: var(--red-hover);
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--brown-light);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  background: var(--brown);
  border: none;
  color: var(--text);
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--brown-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--bg);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 20px 24px;
}

.faq-answer p {
  color: #ccc;
  font-size: 15px;
}

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.about-content img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--red-border);
}

.mission-sticks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 50px 0;
}

.mission-stick {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 30px 24px;
  background: var(--brown);
  border-top: 4px solid var(--red);
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.mission-stick h3 {
  color: var(--red);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 60px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--bg);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
}

.timeline-item h4 {
  margin: 8px 0;
  font-size: 1.2rem;
}

/* Services detail page */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--brown);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid var(--red-border);
  margin-bottom: 40px;
  align-items: center;
}

.service-detail-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.service-detail-card h3 {
  color: var(--red);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  margin: 16px 0;
}

.service-meta {
  margin: 20px 0;
  padding: 16px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 14px;
}

.service-meta strong {
  color: var(--red);
}

.top-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.advantage-item {
  padding: 24px;
  background: var(--brown);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
}

.advantage-item h4 {
  color: var(--red);
  margin-bottom: 10px;
}

/* Bonus program */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--brown);
  border: 2px solid var(--red-border);
  border-radius: 8px;
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.bonus-item h4 {
  color: var(--red);
  margin-bottom: 8px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-block {
  background: var(--brown);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid var(--red-border);
}

.contact-info-block h3 {
  color: var(--red);
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.contact-info-block p,
.contact-info-block a {
  margin-bottom: 16px;
  display: block;
  color: var(--text);
  font-size: 16px;
}

/* Legal pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--red);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 30px 0 16px;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 16px;
  color: #ccc;
  font-size: 15px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
  color: #ccc;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background: var(--brown);
  border-top: 3px solid var(--red);
  padding: 50px 0 30px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.footer-contact {
  text-align: right;
  font-size: 14px;
}

.footer-contact p,
.footer-contact a {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  white-space: nowrap;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid var(--red-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #aaa;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #aaa;
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--red);
}

.footer-company {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

.text-block {
  max-width: 900px;
  margin: 0 auto;
}

.text-block p {
  margin-bottom: 18px;
  color: #ddd;
  font-size: 16px;
}

.content-block {
  background: var(--brown);
  padding: 50px 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .strength-card {
    transform: none !important;
  }

  .strengths-grid {
    align-items: stretch;
  }

  .about-content,
  .service-detail-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* Casino area page */
.casino-intro {
  padding: 60px 0;
}

.casino-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.casino-split.reverse {
  direction: rtl;
}

.casino-split.reverse > * {
  direction: ltr;
}

.casino-split img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--red-border);
  box-shadow: 0 8px 30px var(--shadow);
}

.casino-feature-block {
  background: var(--brown);
  padding: 40px;
  border-left: 5px solid var(--red);
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
}

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

.casino-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--red-border);
}

@media (max-width: 1024px) {
  .casino-split,
  .casino-gallery {
    grid-template-columns: 1fr;
  }

  .casino-split.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 280px;
  }

  section {
    padding: 50px 0;
  }

  .form-wrapper {
    padding: 24px;
  }

  .service-detail-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
