@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #f1f5f9;
  --bg-card-hover: #e2e8f0;
  
  --gold-primary: #c99a27;
  --gold-light: #d4af37;
  --gold-dark: #966f16;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #c99a27 50%, #966f16 100%);
  --gold-gradient-hover: linear-gradient(135deg, #c99a27 0%, #d4af37 50%, #e6c15c 100%);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-gold: #c99a27;
  
  --border-gold: rgba(201, 154, 39, 0.4);
  --border-gold-bright: rgba(201, 154, 39, 0.8);
  --border-subtle: rgba(0, 0, 0, 0.08);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-gold: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 25px rgba(201, 154, 39, 0.15);
  --radius-lg: 16px;
  --radius-md: 10px;

  /* Aliases for compatibility */
  --color-gold: #c99a27;
  --color-gold-dark: #966f16;
  --color-black: #f8fafc;
  --color-white: #0f172a;
  --color-gray-light: #e2e8f0;
  --spacing-xl: 60px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
}

.text-gold {
  color: var(--gold-light) !important;
}

.gradient-gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 154, 39, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 154, 39, 0.5);
  color: #ffffff !important;
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-primary) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold-outline:hover {
  background: var(--gold-gradient);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 5%;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  position: relative;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info i {
  color: var(--gold-primary);
}

/* Header Navbar */
.header-glass {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

/* Hero Section */
.hero-luxury {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 5% 120px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 154, 39, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

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

.star-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 154, 39, 0.12);
  border: 1px solid var(--border-gold-bright);
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-shadow: 
    -1px -1px 0 rgba(255,255,255,0.7),
     1px -1px 0 rgba(255,255,255,0.7),
    -1px  1px 0 rgba(255,255,255,0.7),
     1px  1px 0 rgba(255,255,255,0.7),
     0px  4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #f8fafc; /* Keep light for the dark overlay in hero */
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Floating Stats Bar */
.floating-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.stat-pill i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.stat-pill strong {
  color: var(--text-main);
  font-size: 1.1rem;
}

.stat-pill span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.wave-divider .shape-fill {
  fill: var(--bg-primary);
}

/* About Section Split Layout */
.section-about {
  padding: 100px 5%;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.crest-badge {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-gold-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: rgba(201, 154, 39, 0.1);
}

.section-subtitle-tag {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

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

.metrics-counter {
  display: flex;
  gap: 30px;
  margin-bottom: 2.5rem;
}

.metric-item strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-light);
  display: block;
}

.metric-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Center Oval Image Frame */
.oval-frame-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oval-image-frame {
  width: 310px;
  height: 460px;
  border-radius: 200px;
  overflow: hidden;
  border: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.oval-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.oval-image-frame:hover img {
  transform: scale(1.08);
}

.circular-text-arc {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  pointer-events: none;
  animation: rotateArc 25s linear infinite;
}

@keyframes rotateArc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circular-text-arc text {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 3.5px;
  fill: var(--gold-light);
  text-transform: uppercase;
}

/* Feature Items Right Column */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-card-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-bright);
  transform: translateX(6px);
}

.icon-ring {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  background: rgba(201, 154, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.feature-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Rooms & Suites Section */
.section-rooms {
  padding: 100px 5%;
  background: var(--bg-surface);
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-title-large {
  font-size: 3rem;
}

/* Asymmetric Dark Room Cards Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.room-card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.room-card-dark:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-gold);
}

.room-thumb-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card-dark:hover .room-thumb-wrapper img {
  transform: scale(1.08);
}

.price-tag-gold {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.room-details-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-stars {
  color: var(--gold-light);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.room-card-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.room-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.amenity-pill {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.amenity-pill i {
  color: var(--gold-primary);
}

.room-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Facilities Section */
.section-facilities {
  padding: 100px 5%;
  background: var(--bg-primary);
  text-align: center;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.facility-circle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.facility-circle-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-bright);
  transform: translateY(-6px);
}

.facility-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: rgba(201, 154, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.8rem;
  box-shadow: 0 0 15px rgba(201, 154, 39, 0.2);
}

.facility-circle-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

/* Footer */
.footer-dark {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  padding: 80px 5% 30px;
  color: var(--text-muted);
}

.footer-grid-luxury {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

@media (max-width: 900px) {
  .footer-grid-luxury {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid-luxury {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links-list a:hover {
  color: var(--gold-light);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Design (Tablets & Mobile)
   ========================================================================== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-title {
    font-size: 2.4rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .oval-image-frame {
    width: 260px;
    height: 380px;
  }
  .circular-text-arc {
    width: 310px;
    height: 310px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 12px 5%;
  }
  .top-bar-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  /* Header & Navbar */
  .header-glass {
    flex-direction: column;
    gap: 15px;
    padding: 15px 5%;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .brand-title {
    font-size: 1.2rem;
  }
  
  /* Hero Section */
  .hero-luxury {
    padding: 140px 5% 80px;
    min-height: 75vh;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .floating-stats {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .stat-pill {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  /* Sections Padding */
  .section-about, .section-rooms, .section-facilities {
    padding: 60px 5%;
  }
  
  /* About Section */
  .metrics-counter {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .oval-frame-container {
    margin: 40px 0;
  }
  
  /* Rooms Grid */
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-thumb-wrapper {
    height: 200px;
  }
  .section-title-large {
    font-size: 2rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .btn-gold-pill, .btn-gold-outline {
    width: 100%;
    justify-content: center;
  }
  .star-rating-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }
}
