/* Clearviewreviewlabs - Premium Luxury Editorial Styles */

:root {
  --pale-slate: #BFBDC1;
  --dim-grey: #6D6A75;
  --shadow-grey: #37323E;
  --metallic-gold: #DEB841;
  --honey-bronze: #DE9E36;
  --pure-white: #FFFFFF;
  --soft-cream: #FAF8F5;
  --charcoal: #1E1B22;

  --radius: 22px;
  --radius-lg: 28px;
  --shadow: 0 14px 40px rgba(55, 50, 62, 0.12);
  --shadow-gold: 0 12px 36px rgba(222, 184, 65, 0.22);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Lexend:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lexend', sans-serif;
  color: var(--charcoal);
  background: var(--soft-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Limelight', cursive;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 90px 0;
}

.text-gold {
  color: var(--metallic-gold);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(191, 189, 193, 0.22);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 6px 22px rgba(55, 50, 62, 0.08);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 46px;
  width: auto;
}

.brand-text {
  font-family: 'Limelight', cursive;
  font-size: 1.45rem;
  color: var(--shadow-grey);
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dim-grey);
  position: relative;
  padding: 6px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--metallic-gold);
  transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--shadow-grey);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--shadow-grey);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 27, 34, 0.72) 0%, rgba(55, 50, 62, 0.46) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--pure-white);
  max-width: 820px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--metallic-gold);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  margin-bottom: 26px;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--honey-bronze), var(--metallic-gold));
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(222, 184, 65, 0.32);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--pure-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--pure-white);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--shadow-grey);
  color: var(--shadow-grey);
}

.btn-outline-dark:hover {
  background: var(--shadow-grey);
  color: var(--metallic-gold);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--shadow-grey);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--dim-grey);
  font-size: 1.05rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(191, 189, 193, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(55, 50, 62, 0.14);
}

.glass-card .card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: var(--transition);
}

.glass-card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.45rem;
  color: var(--shadow-grey);
  margin-bottom: 10px;
}

.card-body p {
  color: var(--dim-grey);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

/* Rating badges */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--shadow-grey);
  color: var(--metallic-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
}

.score-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid var(--metallic-gold);
  color: var(--shadow-grey);
  font-weight: 700;
  font-size: 1.15rem;
  background: rgba(222, 184, 65, 0.08);
}

/* Destinations */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(30, 27, 34, 0.82));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--pure-white);
}

.destination-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.destination-overlay span {
  font-size: 0.88rem;
  opacity: 0.85;
}

/* Why trust */
.why-trust {
  background: var(--shadow-grey);
  color: var(--pale-slate);
}

.why-trust .section-header h2,
.why-trust .section-header p {
  color: var(--pale-slate);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(191, 189, 193, 0.1);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--metallic-gold);
}

.trust-item h3 {
  color: var(--metallic-gold);
  margin: 18px 0 12px;
  font-size: 1.35rem;
}

/* Experience */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.experience-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.experience-list {
  list-style: none;
  margin-top: 28px;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--dim-grey);
}

.experience-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--metallic-gold);
  margin-top: 9px;
  flex-shrink: 0;
}

/* Responsible gaming */
.responsible-section {
  background: linear-gradient(135deg, #FFF9E6 0%, var(--soft-cream) 100%);
  border-top: 1px solid rgba(222, 184, 65, 0.18);
  border-bottom: 1px solid rgba(222, 184, 65, 0.18);
}

.responsible-card {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(191, 189, 193, 0.2);
}

.responsible-card h3 {
  color: var(--shadow-grey);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.responsible-card p {
  color: var(--dim-grey);
  margin-bottom: 22px;
}

/* Hotel review pages */
.review-hero {
  position: relative;
  height: 78vh;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.review-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.review-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 27, 34, 0.88) 0%, rgba(55, 50, 62, 0.28) 60%);
}

.review-hero-content {
  position: relative;
  z-index: 2;
  color: var(--pure-white);
  width: 100%;
}

.review-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 12px;
}

.review-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.review-section {
  padding: 70px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 46px;
}

.review-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.rating-panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(191, 189, 193, 0.22);
}

.rating-panel h3 {
  color: var(--shadow-grey);
  margin-bottom: 22px;
  font-size: 1.4rem;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191, 189, 193, 0.24);
  color: var(--dim-grey);
  font-size: 0.95rem;
}

.rating-row strong {
  color: var(--shadow-grey);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.pros, .cons {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(191, 189, 193, 0.18);
}

.pros h3,
.cons h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.pros h3 { color: #2E7D32; }
.cons h3 { color: #C62828; }

.pros ul,
.cons ul {
  list-style: none;
}

.pros li,
.cons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--dim-grey);
  font-size: 0.96rem;
}

.pros li::before { content: '+'; color: #2E7D32; font-weight: 700; }
.cons li::before { content: '-'; color: #C62828; font-weight: 700; }

.verdict {
  background: var(--shadow-grey);
  color: var(--pale-slate);
  padding: 60px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 60px;
}

.verdict h2 {
  color: var(--metallic-gold);
  font-size: 2.2rem;
  margin-bottom: 22px;
}

.verdict .score-ring {
  width: 110px;
  height: 110px;
  font-size: 2.2rem;
  margin: 0 auto 28px;
  border-width: 4px;
  color: var(--metallic-gold);
  background: rgba(222, 184, 65, 0.1);
}

.review-address {
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1rem;
  opacity: 0.92;
}

.review-body h2 {
  margin-top: 52px;
  margin-bottom: 18px;
}

.review-body h2:first-of-type {
  margin-top: 0;
}

.review-body img {
  margin: 34px 0;
  border-radius: var(--radius);
}

/* Table games blocks */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.game-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(191, 189, 193, 0.18);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--metallic-gold);
}

.game-card h4 {
  color: var(--shadow-grey);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.game-card p {
  color: var(--dim-grey);
  font-size: 0.9rem;
}

/* About */
.about-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--shadow-grey) 0%, var(--charcoal) 100%);
  color: var(--pale-slate);
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
}

.experience-grid h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--shadow-grey);
}

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

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

.contact-form {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(191, 189, 193, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--shadow-grey);
  font-weight: 500;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(191, 189, 193, 0.4);
  border-radius: 14px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  background: var(--pure-white);
  color: var(--charcoal);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--metallic-gold);
  box-shadow: 0 0 0 3px rgba(222, 184, 65, 0.15);
}

.form-group .error {
  border-color: #C62828;
}

.error-msg {
  color: #C62828;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}

.error-msg.show { display: block; }

.contact-info-card {
  background: var(--shadow-grey);
  color: var(--pale-slate);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  color: var(--metallic-gold);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.contact-info-card p {
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.contact-info-card strong {
  color: var(--pure-white);
}

.map-frame {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: var(--radius);
  margin-top: 28px;
  filter: grayscale(20%);
}

.contact-form h2 {
  margin-bottom: 28px;
}

.contact-form .btn-gold {
  width: 100%;
}

.contact-info-card a {
  color: var(--metallic-gold);
}

.contact-info-card .hours-heading {
  margin-top: 30px;
  margin-bottom: 16px;
}

.bg-white { background: var(--pure-white); }

/* Legal pages */
.legal-hero {
  padding: 160px 0 60px;
  background: var(--shadow-grey);
  color: var(--pale-slate);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.legal-content {
  padding: 70px 0;
}

.legal-content h2 {
  color: var(--shadow-grey);
  margin: 42px 0 18px;
  font-size: 1.6rem;
}

.legal-content p {
  color: var(--dim-grey);
  margin-bottom: 16px;
}

/* Footer */
.site-footer {
  background: var(--shadow-grey);
  color: var(--pale-slate);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-img {
  height: 42px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--metallic-gold);
  margin-bottom: 22px;
  font-size: 1.15rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--pale-slate);
  font-size: 0.92rem;
  opacity: 0.82;
}

.footer-col a:hover {
  color: var(--metallic-gold);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(191, 189, 193, 0.16);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.responsible-disclaimer {
  width: 100%;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(191, 189, 193, 0.12);
  font-size: 0.82rem;
  line-height: 1.6;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #C62828;
  color: var(--pure-white);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 92px;
  left: 0;
  width: 100%;
  height: calc(100vh - 92px);
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(14px);
  z-index: 999;
  flex-direction: column;
  padding: 40px 28px;
  gap: 22px;
}

.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--shadow-grey);
  border-bottom: 1px solid rgba(191, 189, 193, 0.2);
  padding-bottom: 12px;
}

.mobile-nav.open { display: flex; }

/* Toast / Modal */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--shadow-grey);
  color: var(--pure-white);
  padding: 18px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--metallic-gold);
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-left-color: #2E7D32; }
.toast.error { border-left-color: #C62828; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 34, 0.72);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal h3 {
  color: var(--shadow-grey);
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.modal p {
  color: var(--dim-grey);
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .experience-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-sidebar { position: static; }
}

@media (max-width: 640px) {
  .section-padding { padding: 64px 0; }
  .hero { min-height: 540px; }
  .review-hero { height: 64vh; min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form,
  .contact-info-card,
  .verdict,
  .responsible-card { padding: 30px; }
  .card-grid { grid-template-columns: 1fr; }
  .verdict .score-ring { width: 88px; height: 88px; font-size: 1.6rem; }
}
