/* ========================================
   Royal Palace Lounge - CSS
   Mobile-First Responsive Design
======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  display: block;
}
address {
  font-style: normal;
}

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

/* === BUTTONS === */
.btn-primary,
.btn-outline,
.btn-gold,
.btn-outline-dark,
.btn-book,
.btn-send,
.btn-reserve {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--primary-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline-dark:hover {
  background: var(--primary-dark);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
}

.btn-book,
.btn-send {
  width: 100%;
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-book:hover,
.btn-send:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-reserve {
  display: none;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  height: 64px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.logo-img {
  display: block;
  height: 70px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* Navigation - Mobile */
#mainNav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(10, 22, 40, 0.98);
  transform: translateX(-100%);
  transition: transform 0.3s;
  overflow-y: auto;
}
#mainNav.active {
  transform: translateX(0);
}

.nav-list {
  list-style: none;
  padding: 2rem 1rem;
}
.nav-list li {
  margin-bottom: 0.5rem;
}

.nav-link {
  display: block;
  padding: 1rem;
  color: var(--white);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  transition: all 0.3s;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 1rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0a1628 100%);
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.5) 50%,
    rgba(10, 22, 40, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  font-family: Georgia, serif;
}
.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* === SECTIONS === */
.section {
  padding: 4rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header.light h2 {
  color: var(--primary-dark);
}
.section-header.light p {
  color: var(--primary-medium);
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === HOTEL SECTION === */
.hotel-section {
  background: #0d1b2a;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.room-card {
  background: linear-gradient(
    135deg,
    var(--primary-medium) 0%,
    var(--primary-light) 100%
  );
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
}
.room-card.featured {
  border-color: var(--gold);
}

.room-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.room-icon {
  margin-bottom: 1.5rem;
}

.room-card h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.room-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.room-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.room-card li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  color: var(--text-light);
  position: relative;
}
.room-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.room-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 4px;
  color: var(--gold);
  font-weight: 600;
}

.hotel-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(26, 39, 68, 0.5);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* === CASINO SECTION === */
.casino-section {
  background: linear-gradient(
    180deg,
    #0d1b2a 0%,
    var(--primary-dark) 50%,
    #0d1b2a 100%
  );
  border-top: 2px solid var(--gold);
}

.casino-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(26, 39, 68, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.casino-intro-content h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}
.casino-intro-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.casino-hours-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(201, 162, 39, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  margin-top: 1.5rem;
}
.casino-hours-box div {
  display: flex;
  flex-direction: column;
}
.casino-hours-box strong {
  color: var(--gold);
}
.casino-hours-box span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.casino-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-intro-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.casino-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.casino-feature-card {
  padding: 1.5rem;
  background: rgba(26, 39, 68, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  text-align: center;
  transition: all 0.3s;
}
.casino-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.15);
}
.feature-icon {
  margin-bottom: 1rem;
}
.casino-feature-card h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.casino-feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 1rem;
  background: rgba(10, 22, 40, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* === GAMES SECTION === */
.games-section {
  background: var(--primary-dark);
}

.games-detailed {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.game-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background: rgba(26, 39, 68, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.game-content h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.game-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.game-list {
  list-style: none;
}
.game-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-light);
  position: relative;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}
.game-list li:last-child {
  border-bottom: none;
}
.game-list li::before {
  content: "♦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.game-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-block-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* === VIP SECTION === */
.vip-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2744 50%, #0d1b2a 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.vip-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.vip-content .lead {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.section-tag.gold {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

.vip-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vip-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 39, 68, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.vip-benefit svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.vip-benefit strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.vip-benefit span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vip-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vip-visual-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* === RESTAURANT SECTION === */
.restaurant-section {
  background: linear-gradient(135deg, #0d1b2a 0%, var(--primary-dark) 100%);
}

.gastro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gastro-card {
  padding: 2rem;
  background: rgba(26, 39, 68, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  text-align: center;
  transition: all 0.3s;
}
.gastro-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.gastro-icon {
  margin-bottom: 1rem;
}

.gastro-card h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.gastro-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.gastro-hours {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* === HOTEL SECTION === */
.hotel-section {
  background: linear-gradient(135deg, var(--off-white) 0%, #e8e8e8 100%);
}
.hotel-section .section-header h2 {
  color: var(--primary-dark);
}
.hotel-section .section-header p {
  color: var(--primary-medium);
}

.hotel-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  color: var(--primary-dark);
  font-size: 0.95rem;
  border: 1px dashed var(--gold);
}

/* === LOCATION SECTION === */
.location-section {
  background: var(--primary-dark);
}

.location-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.1) 0%,
    rgba(26, 39, 68, 0.6) 100%
  );
  border-radius: 16px;
  border: 2px solid var(--gold);
  text-align: center;
}

.location-text h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.location-text p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.location-quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.location-quick span {
  padding: 0.5rem 1rem;
  background: rgba(10, 22, 40, 0.5);
  border-radius: 20px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.location-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === BOOKING SECTION === */
.booking-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 100%
  );
}

.booking-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(26, 39, 68, 0.8);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--gold);
  text-align: center;
}
.booking-box h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.booking-box > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary-dark);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === CONTACT SECTION === */
.contact-section {
  background: var(--primary-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 39, 68, 0.5);
  border-radius: 8px;
}
.contact-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-item a,
.contact-item address {
  color: var(--text-light);
}

.contact-form {
  background: rgba(26, 39, 68, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

/* === FOOTER === */
footer {
  background: #000;
  border-top: 2px solid var(--gold);
  padding: 3rem 1rem 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-img {
  height: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.gambling-warning {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.gambling-warning a {
  color: var(--gold);
  font-weight: 600;
}

/* === MOBILE CTA === */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(10, 22, 40, 0.98);
  border-top: 1px solid var(--gold);
  display: flex;
  gap: 0.75rem;
  z-index: 999;
}
.mobile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(26, 39, 68, 0.8);
  color: var(--white);
  border: 1px solid var(--gold);
}
.mobile-btn.primary {
  background: var(--gold);
  color: var(--primary-dark);
}

/* === RESPONSIVE - TABLET === */
@media (min-width: 768px) {
  header {
    height: 80px;
  }

  #mainNav {
    position: static;
    transform: none;
    height: auto;
    background: none;
  }
  .nav-list {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 1.5rem;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-link {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
  }
  .menu-toggle {
    display: none;
  }
  .btn-reserve {
    display: inline-block;
  }

  .hero {
    padding: 100px 2rem 2rem;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero h1 span {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .hero-stats {
    gap: 3rem;
  }

  .section {
    padding: 5rem 2rem;
  }
  .section-header h2 {
    font-size: 2.5rem;
  }

  /* Casino */
  .casino-intro {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }
  .casino-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Games */
  .game-block {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .game-block.reverse {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .game-block.reverse .game-visual {
    order: -1;
  }

  /* VIP */
  .vip-layout {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }
  .vip-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hotel */
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Restaurant */
  .gastro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Location */
  .location-banner {
    grid-template-columns: 1.5fr 0.5fr;
    text-align: left;
  }
  .location-quick {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-cta {
    display: none;
  }

  .footer-top {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

/* === RESPONSIVE - DESKTOP === */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
  .hero h1 span {
    font-size: 2.5rem;
  }

  .casino-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vip-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === ACCESSIBILITY === */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
