/* Rovos Rail Total Revamp Stylesheet - Staging Temp */

:root {
  --rvr-dark-green: #062319;
  --rvr-gold: #c8a261;
  --rvr-gold-hover: #b18844;
  --rvr-ebony: #111613;
  --rvr-cream: #fbfaf7;
  --rvr-text-light: #ffffff;
  --rvr-text-dark: #2c3e35;
  --rvr-text-secondary: #5a7365;
  --rvr-font-serif: 'Playfair Display', Georgia, serif;
  --rvr-font-sans: 'Barlow', 'Montserrat', sans-serif;
}

.rovos-temp-container {
  font-family: var(--rvr-font-sans);
  color: var(--rvr-text-dark);
  background-color: var(--rvr-cream);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.rovos-temp-container h1,
.rovos-temp-container h2,
.rovos-temp-container h3,
.rovos-temp-container h4 {
  font-family: var(--rvr-font-serif);
  font-weight: 400;
  letter-spacing: 1px;
}

/* Immersive Hero Section */
.rvr-temp-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: var(--rvr-text-light);
}

.rvr-temp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(6, 35, 25, 0.65), rgba(17, 22, 19, 0.85));
  z-index: 1;
}

/* Victorian Gold Frame around Hero */
.rvr-temp-hero::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(200, 162, 97, 0.35);
  pointer-events: none;
  z-index: 2;
}

.rvr-temp-hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 10px;
}

.rvr-temp-logo {
  max-width: 260px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.rvr-temp-hero h1 {
  font-size: 3.8rem;
  color: var(--rvr-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.rvr-temp-hero-tagline {
  font-family: var(--rvr-font-serif);
  font-size: 1.9rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #e2e8f0;
}

.rvr-temp-hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #d1e2d7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Elegant Buttons */
.rvr-temp-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.rvr-temp-btn-primary {
  background-color: var(--rvr-gold);
  color: var(--rvr-dark-green);
  border: 1px solid var(--rvr-gold);
}

.rvr-temp-btn-primary:hover {
  background-color: var(--rvr-gold-hover);
  border-color: var(--rvr-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(200, 162, 97, 0.2);
}

.rvr-temp-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.rvr-temp-btn-secondary:hover {
  background-color: #ffffff;
  color: var(--rvr-dark-green);
  transform: translateY(-2px);
}

/* Heritage Section (Founder & Story) */
.rvr-temp-heritage {
  padding: 100px 20px;
  background-color: var(--rvr-cream);
}

.rvr-temp-heritage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.rvr-temp-heritage-content h2 {
  font-size: 2.6rem;
  color: var(--rvr-dark-green);
  margin-bottom: 25px;
  line-height: 1.3;
}

.rvr-temp-heritage-content h2 span {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--rvr-gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: var(--rvr-font-sans);
  font-weight: 600;
}

/* editorial drop-cap */
.rvr-temp-heritage-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--rvr-text-dark);
  margin-bottom: 20px;
}

.rvr-temp-heritage-text.first::first-letter {
  font-family: var(--rvr-font-serif);
  font-size: 3.8rem;
  float: left;
  line-height: 1;
  padding-right: 12px;
  color: var(--rvr-gold);
}

.rvr-temp-heritage-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(200, 162, 97, 0.25);
  padding: 12px;
  background-color: #ffffff;
}

.rvr-temp-heritage-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.1);
}

/* Suites Specification Cards */
.rvr-temp-suites {
  padding: 100px 20px;
  background-color: var(--rvr-dark-green);
  color: var(--rvr-text-light);
  text-align: center;
}

.rvr-temp-suites h2 {
  font-size: 2.6rem;
  color: var(--rvr-gold);
  margin-bottom: 45px;
}

.rvr-temp-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.rvr-temp-suite-card {
  background-color: var(--rvr-ebony);
  border: 1px solid rgba(200, 162, 97, 0.2);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}

.rvr-temp-suite-card:hover {
  transform: translateY(-5px);
  border-color: var(--rvr-gold);
}

.rvr-temp-suite-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.rvr-temp-suite-content {
  padding: 30px;
}

.rvr-temp-suite-content h3 {
  font-size: 1.6rem;
  color: var(--rvr-gold);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(200, 162, 97, 0.25);
  padding-bottom: 10px;
}

.rvr-temp-suite-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.rvr-temp-suite-specs li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #a4bfae;
}

.rvr-temp-suite-specs li strong {
  color: var(--rvr-text-light);
}

.rvr-temp-suite-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Life on Board / Slow Travel Section */
.rvr-temp-onboard {
  padding: 100px 20px;
  background-color: var(--rvr-cream);
}

.rvr-temp-onboard-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.rvr-temp-section-header h2 {
  font-size: 2.6rem;
  color: var(--rvr-dark-green);
  margin-bottom: 15px;
}

.rvr-temp-section-header p {
  font-size: 1.1rem;
  color: var(--rvr-text-secondary);
  font-style: italic;
}

.rvr-temp-onboard-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.rvr-temp-onboard-row:last-child {
  margin-bottom: 0;
}

.rvr-temp-onboard-row.reverse {
  flex-direction: row-reverse;
}

.rvr-temp-onboard-img {
  flex: 1;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.rvr-temp-onboard-content {
  flex: 1;
}

.rvr-temp-onboard-content h3 {
  font-size: 1.9rem;
  color: var(--rvr-dark-green);
  margin-bottom: 15px;
}

.rvr-temp-onboard-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--rvr-text-dark);
}

/* Dining Immersive Banner */
.rvr-temp-dining {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: var(--rvr-text-light);
  text-align: center;
}

.rvr-temp-dining::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 22, 19, 0.85);
  z-index: 1;
}

.rvr-temp-dining-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid rgba(200, 162, 97, 0.3);
  padding: 60px 40px;
  background: rgba(6, 35, 25, 0.4);
}

.rvr-temp-dining h2 {
  font-size: 2.5rem;
  color: var(--rvr-gold);
  margin-bottom: 20px;
}

.rvr-temp-dining p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e2e8f0;
}

.rvr-temp-dining-note {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--rvr-gold);
  letter-spacing: 1px;
}

/* Journeys Grid section */
.rvr-temp-journeys {
  padding: 100px 20px;
  background-color: var(--rvr-ebony);
  color: var(--rvr-text-light);
}

.rvr-temp-journeys h2 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--rvr-gold);
  margin-bottom: 50px;
}

.rvr-temp-journeys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.rvr-temp-journey-card {
  background-color: #161e1a;
  border: 1px solid rgba(200, 162, 97, 0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.rvr-temp-journey-card:hover {
  transform: translateY(-5px);
  border-color: var(--rvr-gold);
}

.rvr-temp-journey-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rvr-temp-journey-meta {
  background-color: var(--rvr-gold);
  color: var(--rvr-dark-green);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  border-radius: 1px;
}

.rvr-temp-journey-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rvr-temp-journey-content h3 {
  font-size: 1.5rem;
  color: var(--rvr-gold);
  margin-bottom: 10px;
}

.rvr-temp-journey-route {
  font-size: 0.9rem;
  color: #8bb49c;
  margin-bottom: 15px;
  font-style: italic;
}

.rvr-temp-journey-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 25px;
  flex-grow: 1;
}

.rvr-temp-journey-link {
  color: var(--rvr-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  margin-top: auto;
}

.rvr-temp-journey-link:hover {
  color: #ffffff;
}

.rvr-temp-journey-link::after {
  content: ' →';
  transition: transform 0.2s ease;
}

.rvr-temp-journey-card:hover .rvr-temp-journey-link::after {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .rvr-temp-heritage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rvr-temp-suites-grid {
    grid-template-columns: 1fr;
  }
  .rvr-temp-onboard-row {
    flex-direction: column !important;
    gap: 30px;
  }
  .rvr-temp-onboard-img {
    width: 100%;
    height: 260px;
  }
  .rvr-temp-hero h1 {
    font-size: 2.8rem;
  }
  .rvr-temp-hero-tagline {
    font-size: 1.5rem;
  }
}
