/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary-blue: #0A2342;
  --accent-gold: #C0A062;
  --bg-off-white: #F8F9FA;
  --text-charcoal: #212529;
  --text-light-grey: #CED4DA;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-charcoal);
  background-color: var(--bg-off-white);
  font-weight: 400;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text-charcoal);
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-charcoal);
}

h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
  margin: 1.5rem auto;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light-grey);
  margin-top: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)), url('public/images/hero-lobby.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  background: rgba(10, 35, 66, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== AGE VERIFICATION ===== */
.age-verification {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.age-verification-link {
  display: block;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.age-verification-link:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(192, 160, 98, 0.5);
}

.age-verification-img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 3px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.age-verification-link:hover .age-verification-img {
  border-color: var(--white);
  filter: brightness(1.15);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

/* About Hero Header - Moved from Hero Section */
.about-hero-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
  background: -webkit-linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-main-title {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-main-subtitle {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.about-item {
  text-align: left;
  padding: 2rem;
  background: var(--bg-off-white);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-gold);
}

.about-item h4 {
  margin-bottom: 1rem;
}

.about-item p {
  margin: 0;
  color: var(--text-charcoal);
}

/* ===== HOTELS SECTION ===== */
.hotels {
  padding: 120px 0;
  background: var(--bg-off-white);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 4rem;
}

.hotel-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--text-light-grey);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hotel-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.hotel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 35, 66, 0.1), rgba(10, 35, 66, 0.6));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.hotel-location {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  background: rgba(192, 160, 98, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.hotel-content {
  padding: 2.5rem;
}

.hotel-title {
  margin-bottom: 2rem;
  color: var(--primary-blue);
}

.hotel-details {
  display: grid;
  gap: 2rem;
}

.detail-section h4 {
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
  padding-left: 1rem;
}

.detail-section p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-charcoal);
}

/* ===== ADDITIONAL INFO SECTION ===== */
.additional-info {
  padding: 120px 0;
  background: var(--primary-blue);
  color: var(--white);
}

.additional-info .section-header h2 {
  color: var(--white);
}

.additional-info .section-divider {
  background: var(--accent-gold);
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
}

.additional-info .lead {
  color: var(--white);
}

.additional-info p {
  color: var(--white);
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-charcoal);
  padding: 3rem 0;
  color: var(--white);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.copyright {
  font-size: 1rem;
  color: var(--text-light-grey);
  margin: 0;
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--accent-gold);
  background: rgba(192, 160, 98, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  max-width: 800px;
  margin: 0;
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  /* Age verification tablet */
  .age-verification-img {
    width: 280px;
  }
  
  /* About hero header tablet */
  .about-main-title {
    font-size: 3.5rem;
  }
  
  .about-main-subtitle {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 1.125rem;
  }
  
  /* Container adjustments */
  .container {
    padding: 0 1rem;
  }
  
  /* Section padding adjustments */
  .about, .hotels, .additional-info {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  /* Hero adjustments */
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  /* Age verification mobile */
  .age-verification-img {
    width: 250px;
  }
  
  /* About hero header mobile */
  .about-main-title {
    font-size: 2.5rem;
  }
  
  .about-main-subtitle {
    font-size: 1.5rem;
  }
  
  .about-hero-header {
    margin: 0 1rem 3rem;
    padding: 2.5rem 1.5rem;
  }
  
  /* Hotel cards mobile */
  .hotels-grid {
    grid-template-columns: 1fr;
  }
  
  .hotel-card {
    margin-bottom: 2rem;
  }
  
  .hotel-content {
    padding: 2rem;
  }
  
  .hotel-image {
    height: 250px;
  }
  
  /* About grid mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-item {
    padding: 1.5rem;
  }
  
  /* Footer mobile */
  .footer-content {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hotel-content {
    padding: 1.5rem;
  }
  
  .about-item {
    padding: 1.25rem;
  }
  
  .additional-info, .about, .hotels {
    padding: 60px 0;
  }
  
  /* Age verification extra small screens */
  .age-verification-img {
    width: 200px;
  }
  
  /* About hero header extra small screens */
  .about-main-title {
    font-size: 2rem;
  }
  
  .about-main-subtitle {
    font-size: 1.25rem;
  }
  
  .about-hero-header {
    margin: 0 0.5rem 2.5rem;
    padding: 2rem 1rem;
  }
}

/* ===== ACCESSIBILITY & FOCUS STATES ===== */
.age-verification-link:focus,
.hotel-card:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}