/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #DC9570;
    --primary-dark: #c47a54;
    --navy: #1E2640;
    --cream: #FBF9F6;
    --text-dark: #1E2640;
    --text-light: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --font-sans: 'Open Sans', sans-serif;
    --font-serif: 'Lora', serif;
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, .logo, .footer-logo {
    font-family: var(--font-serif);
}

.section-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 400;
    text-align: center;
}

.book-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.4;
}

.book-author {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 400;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-light);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 149, 112, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--cream);
    padding: 16px 0;
    border-bottom: 1px solid rgba(30, 38, 64, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--navy);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.logo:hover {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* ============================================
   SECTION A: BANNER / HERO
   ============================================ */
.banner {
    padding: 80px 0 64px;
    background: var(--cream);
    text-align: center;
}

.banner-content h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.banner .subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 32px;
    opacity: 0.8;
}

/* ============================================
   SECTION B: UNDERSTANDING THE CONVERSATION
   ============================================ */
.understanding-section {
    padding: 60px 0 80px;
    background: var(--cream);
}

.understanding-section .section-title {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--text-dark);
    opacity: 0.7;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.understanding-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.understanding-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(30, 38, 64, 0.06);
    flex-wrap: wrap;
}

.understanding-item:last-child {
    border-bottom: none;
}

.understanding-label {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 160px;
}

.understanding-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.75;
    flex: 1;
    min-width: 200px;
}

.understanding-link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.understanding-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .understanding-section {
        padding: 40px 0 60px;
    }
    
    .understanding-list {
        gap: 20px;
    }
    
    .understanding-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 16px 0;
    }
    
    .understanding-label {
        min-width: auto;
        font-size: 17px;
    }
    
    .understanding-desc {
        font-size: 15px;
        min-width: auto;
        width: 100%;
    }
    
    .understanding-link {
        margin-top: 4px;
        font-size: 14px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 16px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .understanding-section {
        padding: 32px 0 48px;
    }
    
    .understanding-label {
        font-size: 16px;
    }
    
    .understanding-desc {
        font-size: 14px;
    }
}

/* ============================================
   SECTION C: LIVED EXPERIENCE
   ============================================ */
.lived-experience-section {
    padding: 40px 0 60px;
    background: var(--cream);
}

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

.experience-card {
    background: var(--text-light);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--transition);
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.experience-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.experience-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 8px;
}

.experience-card p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SECTION D: ACROSS SOCIAL MEDIA
   ============================================ */
.social-media-section {
    padding: 40px 0 60px;
    background: var(--cream);
}

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

.social-card {
    background: var(--text-light);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--transition);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--text-light);
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.other {
    background: #E4405F;
}

.social-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.social-card p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ============================================
   SECTION E: BOOKS & RESOURCES
   ============================================ */
.resources-section {
    padding: 40px 0 60px;
    background: var(--cream);
}

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

.resource-card {
    background: var(--text-light);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--transition);
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.resource-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: rgba(220, 149, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.book-icon {
    font-size: 36px;
}

.resource-card .book-title {
    font-size: 18px;
    margin-bottom: 2px;
}

.resource-card .book-author {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.resource-description {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============================================
   SECTION F: FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    padding: 48px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-brand p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-links h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.6;
    transition: opacity var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .understanding-grid,
    .experience-grid,
    .social-grid,
    .resources-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
        width: 100%;
        background: var(--cream);
        border-top: 1px solid rgba(30, 38, 64, 0.06);
    }
    .nav-links.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .nav-container {
        flex-wrap: wrap;
    }

    .banner {
        padding: 48px 0 32px;
    }
    .banner-content h1 {
        font-size: 32px;
    }
    .banner .subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .understanding-grid,
    .experience-grid,
    .social-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .logo {
        font-size: 24px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECTION A: BANNER / HERO
   ============================================ */
.banner {
    min-height: 45vh;
    background-image: url('/images/desertsky.png');
    background-size: cover;
    background-position: 50% 65%;  /* 85% from top = shows more dunes */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

/* Dark overlay for text readability */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 38, 64, 0.5);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.banner-content h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner .subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.banner .btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.banner .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(220, 149, 112, 0.4);
}

/* ============================================
   RESPONSIVE BANNER
   ============================================ */
@media (max-width: 992px) {
    .banner {
        min-height: 40vh;
    }
    
    .banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 35vh;
        padding: 32px 0;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .banner .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .banner::before {
        background: rgba(30, 38, 64, 0.6);
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 30vh;
        padding: 24px 0;
    }
    
    .banner-content h1 {
        font-size: 24px;
    }
    
    .banner .subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .banner::before {
        background: rgba(30, 38, 64, 0.7);
    }
}
/* ============================================
   PREVENT HORIZONTAL SCROLL ON MOBILE
   ============================================ */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    overflow: hidden;
}
/* ============================================
   GLOBAL - PREVENT HORIZONTAL SCROLL
   ============================================ */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

img, canvas, iframe, video {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    overflow: hidden;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}
/* ============================================
   SECTION C: LIVED EXPERIENCE
   ============================================ */
.lived-experience-section {
    padding: 60px 0 80px;
    background: var(--cream);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 8px;
}

.section-header .section-subtitle {
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--text-dark);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Featured Trip Grid */
.featured-trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* Featured Trip Card */
.featured-trip-card {
    background: var(--text-light);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--transition);
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.featured-trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

/* Category Label */
.featured-trip-card .trip-category {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.featured-trip-card .trip-category.ayahuasca { color: #8B5A2B; }
.featured-trip-card .trip-category.psilocybin { color: #6B8E23; }
.featured-trip-card .trip-category.dmt { color: #6A0DAD; }

/* Title */
.featured-trip-card .trip-title {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Preview Text */
.featured-trip-card .trip-preview {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.75;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
    flex: 1;
}

/* Meta (votes & comments) */
.featured-trip-card .trip-meta {
    display: flex;
    gap: 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.5;
    margin-bottom: 12px;
}

.featured-trip-card .trip-votes,
.featured-trip-card .trip-comments {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Read More Link */
.featured-trip-card .trip-read-link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    display: inline-block;
    margin-top: auto;
}

.featured-trip-card .trip-read-link:hover {
    color: var(--primary-dark);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .featured-trip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .lived-experience-section {
        padding: 40px 0 60px;
    }
    
    .featured-trip-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 24px;
    }
    
    .section-header .section-title {
        font-size: 24px;
    }
    
    .section-header .section-subtitle {
        font-size: 15px;
        padding: 0 16px;
    }
    
    .section-actions {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .section-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .featured-trip-card {
        padding: 20px;
    }
    
    .featured-trip-card .trip-title {
        font-size: 17px;
    }
    
    .featured-trip-card .trip-preview {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .featured-trip-grid {
        max-width: 100%;
    }
    
    .featured-trip-card {
        padding: 16px 18px;
    }
    
    .featured-trip-card .trip-title {
        font-size: 16px;
    }
    
    .featured-trip-card .trip-preview {
        font-size: 14px;
    }
    
    .featured-trip-card .trip-meta {
        font-size: 13px;
        gap: 12px;
    }
    
    .featured-trip-card .trip-read-link {
        font-size: 14px;
    }
}