/* =========================================================
   FONT CLASSES
========================================================= */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.spectral-sc-regular {
  font-family: "Spectral SC", serif;
  font-weight: 400;
  font-style: normal;
}

.spectral-sc-regular-italic {
  font-family: "Spectral SC", serif;
  font-weight: 400;
  font-style: italic;
}

/* =========================================================
   GOLDEN GATE PARK COLOR PALETTE
========================================================= */
:root {
  --ggp-green: #2d5a27;
  --ggp-green-light: #76a86f;
  --ggp-beige: #f4f1e7;
  --ggp-mocha: #edcdbb;
}

/* =========================================================
   GLOBAL (ALL PAGES)
========================================================= */
body {
  background: var(--ggp-beige);
  font-family: "Inter", sans-serif;
  padding: 35px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--ggp-green);
}

p {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
}

/* =========================================================
   INDEX PAGE
========================================================= */
body.index-page {
  background: var(--ggp-green-light);
  padding: 0; /* override global padding */
}

/* ---------- Hero Section ---------- */
header {
  text-align: center;
  font-weight: 400;
  font-size: 2em;
}

.hero {
  /* height: 100vh; */
  aspect-ratio: 1440 / 768;
  background-image: url("https://gggp.org/wp-content/uploads/2023/11/hero_gettinghere.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 20px;
  color: white;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1,
.hero-content p {
  color: var(--ggp-beige);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35), 2px 2px 8px rgba(0, 0, 0, 0.75);
}

.hero h1 {
  font-family: "Spectral SC";
  font-style: italic;
  font-weight: 800;
  font-size: 4rem;
  font-size: clamp(1.5rem, calc(1em + 4vw), 6rem);
  margin-bottom: 10px;
  -webkit-text-stroke: 2.5px var(--ggp-green);
  color: var(--ggp-green-light); /* fill color */
}

.hero p {
  font-family: "Bebas Neue";
  font-style: normal;
  font-size: 2.1rem;
  margin-bottom: 20px;
  color: var(--ggp-beige);
  -webkit-text-stroke: 1.5px var(--ggp-green);
  color: var(--ggp-green-light);
}

.hero-btn {
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* ---------- Index Page Layout ---------- */
main {
  text-align: center;
  font-family: "Bebas Neue";
  font-weight: 600;
  font-size: 2.5em;
  background-color: #004d33;
  padding: 1rem 0;
}

.index-page .container {
  display: flex;
  text-align: center;
  width: 100%;
  max-width: 1440px;
  margin: 1em auto;
  padding: 0 1em;
  justify-content: center;
}

.index-page .row {
  width: 100%;
  justify-content: center;
}
/* ---------- Index Page Cards ---------- */
.card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.fixed-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.index-page .card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--ggp-green);
  text-transform: uppercase;
}

/* =========================================================
   DETAIL PAGE
========================================================= */

body.detail-page {
  background: var(--ggp-green);
  padding: 35px; /* keeps spacing consistent */
}

.detail-page h5,
h4,
h1 {
  font-family: "Spectral SC";
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
}

.detail-page h2 {
  font-family: "Bebas Neue";
  font-size: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.detail-page p {
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Section Box */
.section-box {
  background: var(--ggp-mocha);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 8px solid var(--ggp-green-light);
}

/* Rating Badge */
.rating-badge {
  background: var(--ggp-green-light);
  color: var(--ggp-green);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 10px;
}

/* Detail Image */
#image2 {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 20px;
  border: 5px solid var(--ggp-green);
}

#description,
#reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Back Button */
.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: var(--ggp-green-light);
  color: var(--ggp-mocha);
  text-decoration: none;
  border-radius: 8px;

  font-family: "Inter", sans-serif;
  font-size: 0.95rem;

  transition: background 0.2s ease;
}

.back-btn:hover {
  background: var(--ggp-green);
}

/* =========================================================
   FOOTER
========================================================= */
.ggp-footer {
  background: var(--ggp-green-light);
  color: var(--ggp-beige);
  padding: 60px 20px;
  margin-top: 40px;
  border-top: 10px solid var(--ggp-green);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-family: "Spectral SC";
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.8rem;

  /* subtle stroke effect */
  -webkit-text-stroke: 1px var(--ggp-green);
  color: var(--ggp-beige);
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.footer-links {
  margin-bottom: 25px;
}

.footer-links a {
  font-family: "Bebas Neue";
  text-decoration: none;
  color: var(--ggp-beige);
  padding: 0 12px;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: var(--ggp-green);
}

.footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  opacity: 0.85;
}
