/* The Lumiere Palace - Premium Editorial Website CSS */

/* CSS Variables */
:root {
  --tea-lemon: #e1b80d;
  --tin: #867666;
  --oyster: #d5c3aa;
  --linen: #eae2d6;
  --dark: #171512;
  --white: #ffffff;
  --charcoal: #2a2a2a;
  --light-gray: #f5f5f5;
  --overlay-dark: rgba(23, 21, 18, 0.6);
  --overlay-light: rgba(255, 255, 255, 0.3);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--linen);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--tin);
}

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

a:hover {
  color: var(--tea-lemon);
}

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tea-lemon);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border: 2px solid var(--tea-lemon);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--tea-lemon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--tea-lemon);
  color: var(--white);
}

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

.btn-secondary {
  border-color: var(--tin);
  color: var(--tin);
}

.btn-secondary:hover {
  border-color: var(--tea-lemon);
  color: var(--tea-lemon);
}

.btn:focus {
  outline: 2px solid var(--tea-lemon);
  outline-offset: 2px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--oyster);
  z-index: 1000;
  padding: 1rem 0;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tin);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tea-lemon);
  transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 6rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--tea-lemon);
}

.close-mobile-nav {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-content .eyebrow {
  color: var(--tea-lemon);
}

.hero-content h1 {
  color: var(--white);
}

.hero-content p {
  color: var(--oyster);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.split-content {
  padding: 2rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
}

.asymmetric-grid .item-1 {
  grid-column: span 3;
  grid-row: span 2;
}

.asymmetric-grid .item-2 {
  grid-column: span 3;
}

.asymmetric-grid .item-3 {
  grid-column: span 2;
}

.asymmetric-grid .item-4 {
  grid-column: span 2;
}

.asymmetric-grid .item-5 {
  grid-column: span 2;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--oyster);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--tea-lemon);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  color: var(--tea-lemon);
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tin);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.card-description {
  font-size: 0.9375rem;
  color: var(--tin);
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--tea-lemon);
}

/* Editorial Card */
.editorial-card {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.editorial-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(23, 21, 18, 0.8));
  color: var(--white);
}

.editorial-card-content .card-label {
  color: var(--tea-lemon);
}

.editorial-card-content .card-title {
  color: var(--white);
}

.editorial-card-content .card-description {
  color: var(--oyster);
}

/* Feature Card */
.feature-card {
  text-align: center;
  border: none;
  background: transparent;
  padding: 2rem;
}

.feature-card .card-icon {
  margin: 0 auto 1.5rem;
}

/* Luxury Card */
.luxury-card {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
}

.luxury-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.luxury-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(23, 21, 18, 0.7));
  z-index: 1;
}

.luxury-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--white);
}

.luxury-card-content .card-label {
  color: var(--tea-lemon);
}

.luxury-card-content .card-title {
  color: var(--white);
}

/* Info Card */
.info-card {
  background: var(--linen);
  border: 1px solid var(--oyster);
  padding: 1.5rem;
  text-align: center;
}

.info-card-value {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2rem;
  color: var(--tea-lemon);
  margin-bottom: 0.5rem;
}

.info-card-label {
  font-size: 0.875rem;
  color: var(--tin);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Assessment Card */
.assessment-card {
  background: var(--white);
  border: 1px solid var(--oyster);
  padding: 1.5rem;
}

.assessment-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.assessment-bar {
  height: 4px;
  background: var(--linen);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.assessment-bar-fill {
  height: 100%;
  background: var(--tea-lemon);
  border-radius: 2px;
}

.assessment-note {
  font-size: 0.875rem;
  color: var(--tin);
}

/* Quote Block */
.quote-block {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--dark);
  color: var(--white);
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 8rem;
  color: var(--tea-lemon);
  opacity: 0.3;
  line-height: 1;
}

.quote-block blockquote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.quote-block cite {
  font-size: 0.875rem;
  color: var(--oyster);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.quote-block-light {
  background: var(--linen);
  color: var(--dark);
}

.quote-block-light::before {
  color: var(--tin);
  opacity: 0.2;
}

.quote-block-light blockquote {
  color: var(--dark);
}

.quote-block-light cite {
  color: var(--tin);
}

/* Info Box */
.info-box {
  background: var(--linen);
  border-left: 3px solid var(--tea-lemon);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.info-box-content {
  font-size: 0.9375rem;
  color: var(--tin);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--oyster);
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tea-lemon);
}

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

.form-group .error {
  display: none;
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #d32f2f;
}

.form-group.error .error {
  display: block;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 21, 18, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--tea-lemon);
}

.modal-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.modal-message {
  color: var(--tin);
  margin-bottom: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--tin);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--dark);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tin);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

.social-link:hover {
  color: var(--tea-lemon);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: var(--white);
  font-family: 'Georgia', 'Times New Roman', serif;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-column p {
  color: var(--oyster);
  font-size: 0.9375rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--oyster);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--tea-lemon);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--oyster);
  font-size: 0.9375rem;
}

.footer-bottom {
  border-top: 1px solid var(--tin);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--tin);
  margin: 0;
}

.company-info {
  font-size: 0.75rem;
  color: var(--tin);
  margin-top: 1rem;
}

.responsible-gaming {
  font-size: 0.8125rem;
  color: var(--oyster);
  background: rgba(230, 200, 100, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--tea-lemon);
  margin-bottom: 1rem;
  text-align: center;
}

/* Dark Section */
.dark-section {
  background: var(--dark);
  color: var(--white);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: var(--white);
}

.dark-section p {
  color: var(--oyster);
}

.dark-section .eyebrow {
  color: var(--tea-lemon);
}

/* Light Section */
.light-section {
  background: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .asymmetric-grid .item-1,
  .asymmetric-grid .item-2,
  .asymmetric-grid .item-3,
  .asymmetric-grid .item-4,
  .asymmetric-grid .item-5 {
    grid-column: span 1;
    grid-row: span 1;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .asymmetric-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .btn,
  .modal {
    display: none;
  }

  body {
    background: var(--white);
    color: var(--dark);
  }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--tea-lemon);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--tea-lemon);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.cookie-banner-text p {
  color: var(--oyster);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-banner-buttons .btn {
    flex: 1;
    text-align: center;
  }
}

