/* CSS RESET & VARIABLES */
:root {
  --color-primary-bg: #0A0808;
  --color-secondary-bg: #141210;
  --color-card-bg: rgba(30, 28, 26, 0.85);
  --color-accent-primary: #D4AF37;
  --color-accent-secondary: #C0C0C0;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B8B2A8;
  --color-highlight: #E5B83C;
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #8B7355 100%);
  --gradient-gold-hover: linear-gradient(135deg, #E5B83C 0%, #9B7A5A 100%);
  
  --font-heading: 'Playfair Display', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  
  --sidebar-width-desktop: 80px;
  --header-height-tablet: 70px;
  --header-height-mobile: 60px;
}

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

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

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-color: var(--color-primary-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p, a, span, li { font-size: clamp(0.875rem, 2vw, 1rem); }
.small-text { font-size: 0.875rem; font-weight: 300; }
.subheading { font-family: var(--font-subheading); font-style: italic; }
.emphasis { color: var(--color-accent-primary); font-weight: 500; }

/* LAYOUT CONTAINERS */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  border-radius: 40px;
  background: var(--gradient-gold);
  color: var(--color-primary-bg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  background: var(--gradient-gold-hover);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-accent-primary);
  border: 1px solid var(--color-accent-primary);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--color-accent-primary);
  color: var(--color-primary-bg);
}

/* SIDEBAR / HEADER NAVIGATION */
.sidebar-header {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width-desktop);
  height: 100vh;
  background: rgba(10, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 1000;
}

.logo-container {
  position: absolute;
  top: 30px;
}

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

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}

.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-link:hover {
  color: var(--color-accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.nav-link.active {
  color: var(--color-accent-primary);
  border: 1px solid var(--color-accent-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  animation: pulse 2s infinite;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-accent-primary);
}

/* MAIN CONTENT OFFSET */
.main-wrapper {
  margin-left: var(--sidebar-width-desktop);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HERO SECTION */
.hero {
  height: calc(100vh - var(--sidebar-width-desktop));
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: url('images/breezigamecrossng-luxury-hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10, 8, 8, 0.8), rgba(10, 8, 8, 0.5));
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  width: 90%;
  padding: 20px;
  z-index: 2;
  position: relative;
}

.hero-title {
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-family: var(--font-subheading);
  font-style: italic;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: #FFFFFF;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* HOTELS GRID */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hotel-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-img-wrapper {
  overflow: hidden;
}

.hotel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 8px;
}

.card-location {
  font-size: 0.875rem;
  color: var(--color-accent-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.celeb-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-accent-primary);
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-desc {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  flex: 1;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.tag {
  background: rgba(212, 175, 55, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--color-accent-primary);
}

.casino-mention {
  color: var(--color-accent-primary);
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SPA SECTION */
.spa-section {
  background: var(--color-secondary-bg);
}

.spa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.spa-card {
  background: rgba(10, 8, 8, 0.8);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.spa-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.spa-icon {
  font-size: 48px;
  color: var(--color-accent-primary);
  margin-bottom: 20px;
}

.spa-title {
  margin-bottom: 15px;
}

/* ENDORSEMENTS */
.endorsements-section {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0));
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.quote-card {
  padding: 20px;
  border-left: 3px solid var(--color-accent-primary);
}

.quote-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #fff;
}

.quote-source {
  color: var(--color-accent-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

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

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: rgba(30, 28, 26, 0.6);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #fff;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 40px;
  color: var(--color-primary-bg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* DETAIL PAGES */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(to bottom, rgba(10,8,8,0.3), var(--color-primary-bg));
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.detail-content {
  padding-top: 40px;
}
.text-page-content {
  max-width: 800px;
  margin: 0 auto;
}
.text-page-content h2 { margin-top: 40px; margin-bottom: 20px; color: var(--color-accent-primary); }
.text-page-content p { margin-bottom: 20px; color: var(--color-text-secondary); }

/* FOOTER */
.site-footer {
  background: var(--color-primary-bg);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  list-style: none;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: var(--color-accent-primary);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--color-accent-primary);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-accent-primary);
  color: var(--color-primary-bg);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: #6B6258;
  font-size: 0.75rem;
}

/* ANIMATIONS */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MEDIA QUERIES */
/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .sidebar-header {
    width: 100%;
    height: var(--header-height-tablet);
    flex-direction: row;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-right: none;
  }
  .logo-container { position: static; }
  .logo-container img { width: 35px; }
  .nav-menu {
    flex-direction: row;
    display: none; /* hidden behind menu toggle if wanted, or shown inline */
  }
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: var(--header-height-tablet);
    left: 0;
    width: 100%;
    background: rgba(10, 8, 8, 0.98);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 999;
  }
  .nav-link { width: 44px; height: 44px; }
  .menu-toggle { display: block; font-size: 24px; }
  
  .main-wrapper {
    margin-left: 0;
    margin-top: var(--header-height-tablet);
  }
  .container { padding: 0 20px; }
  .section-padding { padding-top: 70px; padding-bottom: 70px; }
  
  .hotels-grid, .spa-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-container { height: 400px; }
}

/* Mobile (max-width 767px) */
@media (max-width: 767px) {
  .sidebar-header {
    width: 100%;
    height: var(--header-height-mobile);
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-right: none;
  }
  .logo-container { position: static; }
  .logo-container img { width: 30px; }
  
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    display: none;
  }
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    background: rgba(10, 8, 8, 0.98);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 999;
  }
  .nav-link { width: 40px; height: 40px; margin: 5px; }
  .menu-toggle { display: block; font-size: 24px; }
  
  .main-wrapper {
    margin-left: 0;
    margin-top: var(--header-height-mobile);
  }
  .container { padding: 0 16px; }
  .section-padding { padding-top: 50px; padding-bottom: 50px; }
  
  .hero { height: calc(100vh - var(--header-height-mobile)); min-height: 500px; }
  .hotels-grid, .spa-grid, .quotes-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hotel-card img { height: 180px; }
  .about-img { height: 250px; }
  .map-container { height: 300px; }
}