:root {
  --primary: #0a0a0a;
  --secondary: #141414;
  --gold: #d4af37;
  --gold-light: #f5d06f;
  --champagne: #f3e9dc;
  --bronze: #cd7f32;
  --ivory: #f8f5f0;
  --wine: #7a1f1f;
  --olive: #6b7d3a;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

::selection {
  background: var(--gold);
  color: var(--primary);
}

html {
  scroll-padding-top: 80px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--primary);
  color: var(--champagne);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--gold-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Glassmorphism */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gold:hover {
  box-shadow: 0 8px 25px rgba(245, 208, 111, 0.4);
  transform: translateY(-3px);
  color: var(--primary);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 28px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--primary);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 5%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ivory);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  color: var(--gold);
}

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

.nav-menu a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 5px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--gold);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-menu a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(245, 208, 111, 0.3);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Animations */
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

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

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px; /* Accounts for fixed header height so content remains perfectly centered in viewable area */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slowZoom 20s linear infinite alternate;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), rgba(10,10,10,0.8));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 40px;
  border-radius: 20px;
  animation: fadeIn 1.5s ease forwards;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--champagne);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Sections Global */
.section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Hotel Grid */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.hotel-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  background: var(--secondary);
}

.hotel-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.hotel-card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.hotel-rank {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  border-radius: 50%;
  font-weight: bold;
}

.hotel-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hotel-card p {
  color: var(--ivory);
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hotel-highlights {
  list-style: none;
  margin-bottom: 25px;
}

.hotel-highlights li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.hotel-highlights li::before {
  content: '✨';
  margin-right: 10px;
  font-size: 0.8rem;
}

/* Detailed Pages Formatting */
.page-header {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px; /* Accounts for fixed header height so content remains perfectly centered in viewable area */
}

.page-header.short {
  height: 40vh;
  min-height: 300px;
}

.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 5%;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.detail-grid.layout-single {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 40px auto 0;
}

.sidebar-box {
  padding: 30px;
  border-radius: 15px;
  position: sticky;
  top: 100px;
}

.sidebar-box h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
}

.content-block {
  margin-bottom: 50px;
}

.content-block h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.content-block p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--ivory);
  opacity: 0.9;
}

.content-block ul {
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--ivory);
  opacity: 0.9;
}

.content-block ul li {
  margin-bottom: 10px;
}

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

/* Image formatting within content */
.editorial-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid var(--glass-border);
}

/* Experiences / Guide Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.experience-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: flex-end;
}

.experience-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.experience-card:hover img {
  transform: scale(1.08);
}

.experience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(10,10,10,1), transparent);
  z-index: 2;
}

.experience-info {
  position: relative;
  z-index: 3;
  padding: 30px;
  width: 100%;
}

.experience-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 15px 20px;
  color: var(--ivory);
  font-family: var(--font-sans);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.site-footer {
  background: var(--secondary);
  padding: 80px 5% 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--ivory);
}

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

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

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}