/* ===============================
   SECTION RESPONSIVE STYLES
   
   Common responsive patterns for content
   sections across all NaturRo pages.
================================ */

/* ===============================
   CONTENT BLOCKS
================================ */

/* Two-column content blocks - stack on mobile */
.content-block,
.team-member-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-block-text {
  padding: 2rem;
}

.content-block-text h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: currentColor;
  font-weight: 700;
}

.content-block-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: currentColor;
  font-weight: 700;
}

.content-block-text h3:first-of-type {
  margin-top: 0;
}

.content-block-text p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: currentColor;
  opacity: 0.95;
}

.content-block-text p:last-child {
  margin-bottom: 0;
}

.content-block-text p strong {
  font-weight: 600;
  color: currentColor;
}

.content-block-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .content-block,
  .team-member-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-block.reverse,
  .team-member-block.reverse {
    direction: ltr;
  }
}

/* ===============================
   SECTION PADDING
================================ */

/* Standard section padding - responsive scale */
/* Exclude hero sections from default padding */
section:not(.hero) {
  padding: 6rem 4vw;
}

@media (max-width: 900px) {
  section {
    padding: 4rem 2rem;
  }
}

@media (max-width: 500px) {
  section {
    padding: 3rem 1.5rem;
  }
}

/* Large section padding for hero-adjacent sections */
.section-large-padding {
  padding: 8rem 4vw;
}

@media (max-width: 900px) {
  .section-large-padding {
    padding: 5rem 2rem;
  }
}

@media (max-width: 500px) {
  .section-large-padding {
    padding: 4rem 1.5rem;
  }
}

/* ===============================
   SECTION HEADINGS
================================ */

section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 500px) {
  section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

section h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

@media (max-width: 500px) {
  section h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

/* ===============================
   SECTION INTRO TEXT
================================ */

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .section-intro {
    margin-bottom: 3rem;
  }
}

@media (max-width: 500px) {
  .section-intro {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

/* ===============================
   GRID SECTIONS
================================ */

/* Trip cards grid - responsive */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trips-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Values grid - responsive */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* FAQ grid - responsive */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===============================
   BENTO GRID (TRIPS SECTION)
================================ */

/* Section header for trips section */
.ture-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ture-section .section-header h2 {
  margin-bottom: 1rem;
}

.ture-section .section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-nature-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Bento grid layout - responsive 2-column grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Values section (for Om NaturRo page) */
.values-section {
  padding: 6rem 4vw 8rem;
}

.values-section[data-theme="yellow"] {
  background: var(--color-yellow);
  color: var(--color-green);
}

/* Values section intro (for Om NaturRo page) */
.values-section-intro {
  max-width: 1400px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 4vw;
}

.values-section-intro h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: var(--color-green);
  font-weight: 700;
}

.values-section-intro h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: var(--color-green);
  font-weight: 600;
}

.values-section-intro p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--color-green);
}

.values-section-intro > div {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.values-section-intro > div p {
  margin-bottom: 1.5rem;
}

.values-section-intro > div p:last-child {
  margin-bottom: 0;
}

/* Values container - 3 column grid (for front page) */
.values-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .values-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-container {
    grid-template-columns: 1fr;
  }
}

/* Values grid - 2 column grid (for Om NaturRo page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

.value-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-section {
    padding: 4rem 4vw;
  }
}

/* ===============================
   FOOTER
================================ */

footer,
.site-footer {
  padding: 4rem 4vw;
  text-align: center;
  font-size: 1.1rem;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p,
.site-footer p {
  margin: 0;
  line-height: 1.8;
}

footer strong,
.site-footer strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  footer,
  .site-footer {
    padding: 3rem 2rem;
    min-height: 20vh;
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  footer,
  .site-footer {
    padding: 2rem 1.5rem;
    min-height: 15vh;
    font-size: 0.95rem;
  }
}

/* ===============================
   TEAM MEMBER BLOCKS
================================ */

.team-blocks-section {
  padding: 6rem 4vw;
}

.team-blocks-section[data-theme="yellow"] {
  background: var(--color-yellow);
  color: var(--color-green);
}

.team-blocks-section[data-theme="green"] {
  background: var(--color-green);
  color: var(--color-yellow);
}

.team-member-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.team-member-block:last-child {
  margin-bottom: 0;
}

.team-member-block.reverse {
  direction: rtl;
}

.team-member-block.reverse > * {
  direction: ltr;
}

.team-member-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-text {
  padding: 2rem;
}

.team-member-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: currentColor;
}

.team-member-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: currentColor;
  opacity: 0.95;
  font-style: italic;
}

@media (max-width: 700px) {
  .team-member-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-member-block img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ===============================
   PAGE HEADER (Overlaid on video)
================================ */

.page-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 4vw;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-white);
  margin-bottom: 0;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .page-header {
    padding: 0 2rem;
    text-align: center !important;
  }
  
  .page-header h1 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .page-header {
    padding: 0 1rem;
  }
}

/* ===============================
   FAQ SECTION (Om NaturRo page)
================================ */

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

.faq-section {
  padding: 6rem 4vw;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 4rem 2rem;
  }
}

/* FAQ Container (without sidebar) */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Grid (with sidebar) */
.faq-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* FAQ Heading */
.faq-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: left;
  color: currentColor;
}

@media (max-width: 900px) {
  .faq-heading {
    margin-bottom: 2rem;
  }
}

/* FAQ Items List */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .faq-items {
    gap: 2rem;
  }
}

/* FAQ Item */
.faq-item {
  text-align: left;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* FAQ Question */
.faq-question {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: currentColor;
  line-height: 1.4;
}

/* FAQ Answer */
.faq-answer {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: currentColor;
  opacity: 0.9;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  font-weight: 600;
  color: currentColor;
}

/* FAQ Sidebar */
.faq-sidebar {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
}

.faq-sidebar h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: currentColor;
}

.faq-sidebar p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: currentColor;
  opacity: 0.9;
}

.faq-cta-button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: currentColor;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.faq-cta-button:hover {
  opacity: 0.9;
}

/* FAQ Main (when sidebar is shown) */
.faq-main {
  /* Styles for main content area when sidebar is present */
}

/* FAQ Section Theme Colors */
.faq-section[data-theme="yellow"] {
  background: var(--color-yellow);
  color: var(--color-green);
}

.faq-section[data-theme="green"] {
  background: var(--color-green);
  color: var(--color-white);
}

.faq-section[data-theme="coral"] {
  background: var(--color-coral);
  color: var(--color-green);
}

.faq-section[data-theme="blue"] {
  background: var(--color-blue);
  color: var(--color-white);
}

.faq-section[data-theme="teal"] {
  background: var(--color-teal);
  color: var(--color-white);
}

.faq-section[data-theme="red"] {
  background: var(--color-red);
  color: var(--color-white);
}

.faq-section[data-theme="orange-blue"] {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-blue) 100%);
  color: var(--color-white);
}

/* ===============================
   VIDEO HERO SECTION
================================ */

.video-hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: transparent !important;
  overflow: hidden;
  margin-top: 0; /* No margin - starts at very top */
  padding-top: 70px; /* Padding for navbar instead */
}

.video-hero-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: transparent;
  display: block;
  min-height: 100vh; /* Ensure video covers full viewport */
}

.video-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

@media (max-width: 900px) {
  .video-hero-section {
    min-height: 70vh;
  }
}

.video-hero-label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 20px;
  z-index: 10;
}

@media (max-width: 900px) {
  .video-hero-label {
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* ===============================
   TEXT CONTENT RESPONSIVE
================================ */

/* Ensure readable text on mobile */
section p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

@media (max-width: 500px) {
  section p {
    font-size: 1rem; /* Never below 16px */
    line-height: 1.8;
  }
}

/* ===============================
   CONTAINER MAX-WIDTHS
================================ */

/* Section content containers */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.section-container-wide {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

