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

:root {
  --bg: #0b0f16;
  --gold: #d4b16a;
  --gold-2: #b68a3a;
  --text: rgba(255,255,255,0.88);
  --card: rgba(11, 15, 22, 0.92);
  --border: rgba(212, 177, 106, 0.22);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.76), rgba(0,0,0,0.42));
}

.fade-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, rgba(11,15,22,0) 0%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin-left: 8%;
  z-index: 2;
}

/* simple top bar for inner pages */
.page-top {
  padding: 18px 0 0;
}

.page-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.subtitle {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

.experience {
  color: var(--gold);
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0b0f16;
}

.primary:hover {
  opacity: 0.92;
}

.secondary {
  border: 1px solid rgba(212, 177, 106, 0.55);
  color: var(--gold);
}

.secondary:hover {
  background: rgba(212,177,106,0.10);
}

.rating-box {
  display: inline-block;
  padding: 14px 18px;
  border: 1px solid rgba(212,177,106,0.4);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.42);
  color: rgba(255,255,255,0.86);
}

/* SECTIONS */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

.about {
  position: relative;
  margin-top: -90px; /* overlaps hero */
  padding: 0 8% 110px;
  background: transparent;
  z-index: 10;
}

/* About card */
.about .container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 56px 56px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 18px;
}

.about p {
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.about-photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.about-photo {
  width: min(360px, 100%);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(212,177,106,0.35);
  box-shadow: 0 22px 50px rgba(0,0,0,0.55);
  object-fit: cover;
}

/* TOURS */
.tours {
  padding: 0 8% 110px;
}

.tours h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 26px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tour-card {
  background: rgba(11, 15, 22, 0.78);
  border: 1px solid rgba(212,177,106,0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
}

/* make tour cards clickable when used as links */
.tour-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease;
}

.tour-link:hover {
  transform: translateY(-5px);
  border-color: rgba(212,177,106,0.32);
}

.tour-link:focus-visible {
  outline: 2px solid rgba(212,177,106,0.65);
  outline-offset: 3px;
}

.tour-media {
  height: 240px;
  position: relative;
}

.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-body {
  padding: 22px 22px 24px;
}

.tour-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
}

.tour-body p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-size: 16px;
}

/* REVIEWS */
.reviews {
  padding: 0 8% 110px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  background: rgba(11, 15, 22, 0.78);
  border: 1px solid rgba(212,177,106,0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
  padding: 26px 26px 24px;
}

.review-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.review-author{
  font-weight:600;
  color: rgba(255,255,255,0.92);
  letter-spacing:0.2px;
}

.review-stars{
  color: var(--gold);
  letter-spacing:1px;
  font-size: 14px;
  opacity: 0.95;
  white-space: nowrap;
}

.review-text{
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 16px;
}

/* Optional: if we ever use image-based reviews again */
.review-card img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* CONTACT */
.contact {
  padding: 0 8% 120px;
}

.contact-card {
  background: rgba(11, 15, 22, 0.86);
  border: 1px solid rgba(212,177,106,0.22);
  border-radius: 18px;
  padding: 42px 42px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.42);
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-sub {
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 26px 8% 36px;
  border-top: 1px solid rgba(212,177,106,0.14);
  color: rgba(255,255,255,0.60);
}

/* TOUR PAGES */
.tour-page {
  padding: 0 8% 90px;
}

.tour-page .container {
  max-width: 1080px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-top: 34px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.back-link:hover {
  color: var(--gold);
}


.tour-lead {
  margin-top: 18px;
  margin-bottom: 0;
}

.tour-lead-label {
  font-weight: 700;
  color: #ffffff;
}

.tour-text {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 18px;
  margin-top: 18px;
}

.gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  border: 1px solid rgba(212,177,106,0.16);
}

.tour-cta {
  margin-top: 28px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-content { margin-left: 6%; margin-right: 6%; }
  h1 { font-size: 52px; }
  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { justify-content: flex-start; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 340px; }
}

@media (max-width: 768px) {
  .hero { height: 92vh; }
  h1 { font-size: 44px; }
  .gallery img { height: 260px; }
  .about { margin-top: -64px; padding: 0 20px 80px; }
  .about .container { padding: 34px 22px; border-radius: 16px; }
  .about h2, .tours h2, .reviews h2 { font-size: 34px; }
  .tours, .reviews, .contact { padding: 0 20px 80px; }
  .contact-card { padding: 28px 22px; }
}

/* Feature list (main page) */
.feature-list{
  margin: 18px 0 32px;
  position: relative;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  max-width: 680px;
}

.feature-list::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,177,106,0), rgba(212,177,106,0.28), rgba(212,177,106,0));
}
.feature-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(212,177,106,0.22);
  border-radius:14px;
  background: rgba(10, 14, 20, 0.5);
}
.feature-icon{
  width: 28px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}

@media (max-width: 720px){
  .feature-list{ grid-template-columns: 1fr; }
}

/* Organizational section (tour pages) */
.org{
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212,177,106,0.22);
  background: rgba(10, 14, 20, 0.55);
}
.org h2{
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--gold);
}
.org-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.org-list li{ margin: 6px 0; }
.org-extras{ margin-top: 14px; }
.org-extras-title{
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.org-extras ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}


/* UX improvements */
html { scroll-behavior: smooth; }

/* Sticky header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(8,12,18,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,177,106,0.18);
}
.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-brand{
  color: var(--gold);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.2px;
}
.header-nav{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-link{
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(212,177,106,0.18);
  background: rgba(0,0,0,0.18);
}
.header-link:hover{ color:#fff; border-color: rgba(212,177,106,0.28); }

.header-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(212,177,106,0.28);
  color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.18);
}
.header-btn--gold{
  background: linear-gradient(180deg, rgba(212,177,106,0.95), rgba(171,134,60,0.95));
  color: #0b0f14;
  border-color: rgba(212,177,106,0.35);
}
.header-btn:hover{ filter: brightness(1.05); }

/* Neutral icons in feature list */
.feature-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.feature-icon-svg{
  width: 18px;
  height: 18px;
  color: rgba(212,177,106,0.95);
}

/* Photo darkening on hover (cards) */
.tour-link .tour-media img{ transition: filter .25s ease, transform .25s ease; }
.tour-link:hover .tour-media img{ filter: brightness(0.78); transform: scale(1.02); }

/* Photo blocks on excursion pages: taller + top aligned */
.gallery img{
  height: 520px;
  object-position: top center;
}

/* Sticky top controls on excursion pages */
.page-top{
  position: sticky;
  top: 0;
  z-index: 1900;
  background: rgba(8,12,18,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,177,106,0.14);
  padding: 14px 0;
  margin-bottom: 10px;
}
