/* ===================================
   Gerry Starnes Website - Main Styles
   Modern Shamanic Practitioner Website
   =================================== */

/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Color Palette - Earthy & Spiritual */
    --primary-color: #8B6F47;        /* Warm earth brown */
    --primary-dark: #6B5537;         /* Deep earth */
    --primary-light: #A68A64;        /* Light earth */
    --secondary-color: #4A6B5B;      /* Forest green */
    --secondary-dark: #3A5A4A;       /* Deep forest */
    --accent-color: #C9A86A;         /* Golden accent */
    --accent-light: #E5C68D;         /* Light gold */
    
    /* Neutral Colors */
    --text-dark: #2C2C2C;
    --text-medium: #555555;
    --text-light: #777777;
    --text-link: #C9A86A;
    --text-hover: #000000;
    --bg-light: #F9F7F4;
    --bg-white: #FFFFFF;
    --border-color: #E0D5C7;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--text-link);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
	color: var(--text-hover);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0;
}

.nav-brand .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
                url('https://gerrystarnes.com/NewSite2026/images/Hero-Sunset-1920x1080.jpg') center/cover no-repeat;
    color: var(--bg-white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--accent-light);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle2 {
    font-size: 2.7rem;
    margin-bottom: 40px;
    color: var(--bg-white);
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.hero .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--bg-white);
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.credentials {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
}

.credentials h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 12px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 15px;
}

.credentials i {
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 25px 25px;
    color: var(--bg-white);
}

.image-caption p {
    margin: 0;
    font-style: italic;
    color: var(--accent-light);
    font-size: 1.05rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card > p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.service-features {
    margin-top: 20px;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-bridge {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 60px;
    height: 400px;
}

.service-bridge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 50px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.bridge-text h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.bridge-text p {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin: 0;
}

/* ===================================
   Publications Section
   =================================== */
.publications {
    background: var(--bg-light);
}

.featured-book {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.featured-book::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.book-content {
    position: relative;
    z-index: 1;
}

.book-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-book h3 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.book-subtitle {
    color: var(--accent-light);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 25px;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.book-formats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.format-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.format-badge-ctr {
    background: rgba(255, 255, 255, 0.15);
    align: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.format-badge i {
    margin-right: 8px;
}

.books-section,
.audio-section {
    margin-top: 60px;
}

.subsection-title {
	font-size: 2rem;
	color: #A09293;
	margin-bottom: 15px;
	text-align: center;
}

.subsection-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.book-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--accent-color);
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.book-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.book-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.book-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.format-badge-sm {
    display: inline-block;
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    color: var(--text-medium);
}

.format-badge-sm i {
    margin-right: 5px;
    color: var(--primary-color);
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.audio-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
}

.audio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.audio-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.audio-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.audio-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.duration {
    display: inline-block;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.duration i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* ===================================
   Workshops Section
   =================================== */
.workshops {
    background: var(--bg-white);
}

.workshop-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 60px;
}

.workshop-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 60px 40px 40px;
    color: var(--bg-white);
}

.workshop-hero-text h3 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.workshop-hero-text p {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin: 0;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.workshop-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.workshop-level {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--primary-dark);
}

.workshop-card > p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.workshop-topics {
    margin-bottom: 25px;
}

.workshop-topics li {
    padding: 10px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.workshop-topics i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.workshop-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.workshop-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.workshop-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.virtual-workshops {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.virtual-workshops h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.virtual-workshops h3 i {
    margin-right: 10px;
    color: var(--accent-light);
}

.virtual-workshops p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Resources Section
   =================================== */
.resources {
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-category {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.resource-category h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.resource-category h3 i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.resource-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.resource-item p {
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

.resource-item ul {
    list-style: none;
}

.resource-item li {
    padding: 8px 0;
    color: var(--text-medium);
    padding-left: 20px;
    position: relative;
}

.resource-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.resource-item a {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resource-item a:hover {
    color: var(--primary-dark);
}

.resource-item a i {
    font-size: 0.8rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-info > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method i {
    font-size: 1.8rem;
    color: var(--accent-color);
    min-width: 30px;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-method p {
    margin: 0;
    color: var(--text-medium);
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 500;
}

.session-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.session-info h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.session-info ul {
    list-style: none;
}

.session-info li {
    padding: 8px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.session-info i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 10px;
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-light);
    margin-top: 10px;
}

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

.footer-section li {
    padding: 6px 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-email a {
    color: var(--accent-light);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 15px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets and below (max-width: 992px) */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .books-grid,
    .workshops-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services-grid,
    .books-grid,
    .audio-grid,
    .workshops-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-book {
        padding: 35px 25px;
    }
    
    .book-formats,
    .workshop-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-bridge,
    .workshop-hero {
        height: 300px;
    }
    
    .bridge-text {
        padding: 30px 25px;
    }
    
    .bridge-text h3 {
        font-size: 1.5rem;
    }
    
    .bridge-text p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        padding: 12px 15px;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .nav-brand .tagline {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .book-card,
    .workshop-card,
    .resource-category {
        padding: 25px 20px;
    }
    
    .featured-book {
        padding: 25px 20px;
    }
    
    .featured-book h3 {
        font-size: 1.8rem;
    }
}

/* Accessibility & Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .nav-toggle,
    .hero-buttons,
    .contact-form {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 300px;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #6B5537;
        --text-medium: #000000;
        --border-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
