/* Base typography */
body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== HEADER ===== */

.gc-header-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 40px;
  background: transparent;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}

.gc-header-custom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.gc-header-custom__logo {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.gc-header-custom__nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.gc-header-custom__nav a {
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/* Solid header after scroll */
.gc-header-custom--solid {
  background-color: #D8CBB8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  padding: 10px 40px;
}

.gc-header-custom--solid .gc-header-custom__nav a {
  color: #2C2C2C;
}

/* ===== HERO ===== */

.gc-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.gc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://staging.gokulcruise.com/wp-content/uploads/2024/03/3H4A0039-scaled.jpg");
  background-size: cover;
  background-position: center center;
}

.gc-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.15) 25%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.gc-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 6rem 1.5rem 4rem;
}

/* Label */
.gc-hero__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

/* Subtitle */
.gc-hero__subtitle {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 18px;
  margin: 0 0 0.75rem;
}

/* Title */
.gc-hero__title {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 9vw, 180px);
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
}

/* Body text */
.gc-hero__body {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 15px;
  line-height: 1.5;
}

/* Buttons */
.gc-hero__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 0;
  border: none;
  cursor: pointer;
}

.gc-btn--light {
  background-color: #D8CBB8;
  color: #2C2C2C;
}

.gc-btn--green {
  background-color: #6E7759;
  color: #FFFFFF;
}

/* Scroll indicator */
.gc-hero__scroll span {
  display: inline-block;
  font-size: 22px;
  animation: gc-scroll-bounce 1.6s infinite;
}

@keyframes gc-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Simple footer */
.gc-footer {
  padding: 16px;
  text-align: center;
  background: #f7f1e7;
  font-size: 13px;
}

/* ==============
   GLOBAL SECTION LAYOUT
   ============== */

.gc-section {
  padding: 80px 20px;
}

.gc-section + .gc-section {
  padding-top: 60px;
}

.gc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gc-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ==============
   ABOUT SECTION
   ============== */

.gc-about__image {
  position: relative;
  min-height: 420px;
  background-image: url("https://staging.gokulcruise.com/wp-content/uploads/2024/03/3H4A0039-scaled.jpg"); /* change to final about image */
  background-size: cover;
  background-position: center center;
}

.gc-about__overlay {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 10vw;
  color: #ffffff;
}

.gc-about__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.gc-about__title {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 40px;
  letter-spacing: 0.12em;
  font-style: italic;
  margin: 4px 0 16px;
}

.gc-about__text {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.gc-about__btn {
  margin-top: 4px;
}

/* ==============
   TESTIMONIALS
   ============== */

.gc-testimonials {
  background-color: #d8cbb8; /* beige */
}

.gc-testimonials__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.gc-testimonials__title {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.gc-testimonials__subtitle {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.6;
}

.gc-testimonials__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background-color: #f5eee4;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.gc-testimonials__rating-score {
  font-size: 32px;
  font-weight: 600;
}

.gc-testimonials__rating-label {
  display: block;
  font-size: 13px;
}

.gc-testimonials__rating-source {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.gc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gc-testimonial-card {
  background: #f5eee4;
  padding: 20px 22px;
  min-height: 180px;
}

.gc-testimonial-card__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.gc-testimonial-card__author {
  font-size: 13px;
  opacity: 0.85;
}

/* ==============
   FAQ SECTION
   ============== */

.gc-faq {
  background-color: #f4f0ea;
}

.gc-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
}

.gc-faq__title {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 26px;
  margin-bottom: 14px;
}

.gc-faq__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gc-btn--outline {
  background: transparent;
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
}

.gc-faq__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 10px;
}

.gc-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-right: 24px;
}

.gc-faq-item summary::-webkit-details-marker {
  display: none;
}

.gc-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}

.gc-faq-item[open] summary::after {
  content: "–";
}

.gc-faq-item p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ==============
   BLOG SECTION
   ============== */

.gc-blog {
  background-color: #bfb4a3; /* slightly darker beige/olive blend */
}

.gc-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
}

.gc-blog__title {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 26px;
}

.gc-blog__view-all {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.gc-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gc-blog-card {
  background-color: #f5eee4;
}

.gc-blog-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gc-blog-card__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.gc-blog-card__body {
  padding: 14px 16px 16px;
}

.gc-blog-card__title {
  font-size: 15px;
  margin-bottom: 6px;
}

.gc-blog-card__meta {
  font-size: 12px;
  opacity: 0.7;
}

.gc-blog__empty {
  font-size: 14px;
}

/* ==============
   RESPONSIVE TWEAKS
   ============== */

@media (max-width: 900px) {
  .gc-about__overlay {
    padding: 60px 32px;
    align-items: flex-start;
  }

  .gc-testimonials__top,
  .gc-blog__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gc-testimonials__grid,
  .gc-blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gc-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gc-section {
    padding: 60px 16px;
  }

  .gc-testimonials__grid,
  .gc-blog__grid {
    grid-template-columns: 1fr;
  }

  .gc-about__title {
    font-size: 30px;
  }
}