:root {
    --primary-color: #4A5B8C;  /* Colorado sky blue */
    --secondary-color: #8B7355; /* Mountain brown */
    --accent-color: #F4A460;    /* Sunset gold */
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --bg-light: #F5F7FA;
    --bg-cream: #FFF9F5;
    --white: #ffffff;
    --border-color: #E1E8ED;
    --mountain-green: #2E7D32;
    --praise-purple: #7E57C2;
    --colorado-red: #B71C1C;
    --menu-bg: #6A4C93;        /* Darker purple for menu button */
    --sky-gradient: linear-gradient(135deg, #87CEEB 0%, #4A5B8C 100%);
    --mountain-gradient: linear-gradient(180deg, #4A5B8C 0%, #8B7355 50%, #2E7D32 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header with mountain silhouette */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1001;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sky-gradient);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--praise-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--praise-purple);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.2;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

/* Hamburger Icon */
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--praise-purple);
}

/* Hero with Colorado mountains background */
.hero {
    background: var(--sky-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238B7355' fill-opacity='0.3' d='M0,192L48,176C96,160,192,128,288,138.7C384,149,480,203,576,213.3C672,224,768,192,864,165.3C960,139,1056,117,1152,133.3C1248,149,1344,203,1392,229.3L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-verse {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-left: 4px solid var(--praise-purple);
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-verse p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.hero-verse cite {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    color: var(--praise-purple);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--praise-purple);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #6A4C93;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.3);
}

.btn-secondary {
    background-color: var(--mountain-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Featured content with praise theme */
.featured-content {
    padding: 4rem 0;
    background-color: var(--white);
    position: relative;
}

.featured-content::before {
    content: '✝️';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--praise-purple);
    opacity: 0.1;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-top: 3px solid transparent;
}

.feature-card:nth-child(1) {
    border-top-color: var(--mountain-green);
}

.feature-card:nth-child(2) {
    border-top-color: var(--praise-purple);
}

.feature-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--praise-purple);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Sections with alternating backgrounds */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.scripture-quote {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    border-left: 4px solid var(--praise-purple);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.scripture-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--praise-purple);
    font-weight: 600;
}

.mission-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

/* Power of Words Section */
.power-of-words-section {
    background-color: var(--white);
    padding: 5rem 0;
    position: relative;
}

.power-of-words-section h2 {
    color: var(--praise-purple);
    margin-bottom: 3rem;
}

.words-content {
    max-width: 1000px;
    margin: 0 auto;
}

.words-teaching .lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.words-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.words-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.life-words {
    list-style: none;
    padding: 0;
}

.life-words li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-style: italic;
    color: var(--praise-purple);
    font-size: 1.1rem;
    font-weight: 600;
}

.life-words li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mountain-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.fruit-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.fruit-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.fruit-list li::before {
    content: "🌱";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.declaration-box {
    background: linear-gradient(135deg, var(--praise-purple) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.declaration-box h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.declaration-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
}

/* Colorado Praise Section */
.colorado-praise-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--white) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.colorado-praise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234A5B8C' fill-opacity='0.05' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,181.3C1248,181,1344,235,1392,261.3L1440,288L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.praise-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.praise-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.praise-elements h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.praise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.praise-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.praise-item:hover {
    transform: translateY(-5px);
}

.praise-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.praise-item h4 {
    color: var(--praise-purple);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.praise-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-section {
    background-color: var(--white);
}

.pastor-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.pastor-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background-color: var(--secondary-color);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pastor-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: cover;
}

.pastor-story h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.pastor-story p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Helping section with Colorado mountain theme */
.helping-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 5rem 0;
    position: relative;
}

.helping-section::before {
    content: '🏔️';
    position: absolute;
    top: 3rem;
    right: 5%;
    font-size: 4rem;
    opacity: 0.1;
}

.helping-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    margin: 3rem 0;
}

.helping-text h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-family: 'Playfair Display', serif;
}

.services-list {
    list-style: none;
    margin: 1.5rem 0;
}

.services-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.services-list li::before {
    content: "🙏";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.helping-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.helping-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.helping-stats {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.helping-stats h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--praise-purple);
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

.helping-cta {
    background: linear-gradient(135deg, var(--praise-purple) 0%, var(--primary-color) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--white);
}

.helping-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.helping-cta p {
    color: var(--white);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.helping-cta .btn {
    background-color: var(--white);
    color: var(--praise-purple);
}

.helping-cta .btn:hover {
    background-color: var(--bg-cream);
}

/* Contact and donate sections */
.contact-content,
.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info ul,
.donate-info ul {
    list-style-position: inside;
    margin-left: 1rem;
    line-height: 2;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.donation-method {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.donation-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

address {
    font-style: normal;
    line-height: 1.8;
    margin-top: 1rem;
}

.tax-info {
    background-color: var(--bg-cream);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.paypal-donation {
    text-align: center;
    padding: 2rem 0;
}

.paypal-donation p {
    margin-bottom: 1.5rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.donation-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-result {
    margin-top: 1rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

/* Praise page specific */
.praise-hero {
    background: var(--sky-gradient);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.praise-hero::after {
    content: '✝️';
    position: absolute;
    bottom: 2rem;
    right: 5%;
    font-size: 8rem;
    opacity: 0.1;
}

.praise-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.praise-hero .lead {
    color: var(--white);
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.praise-content {
    background-color: var(--white);
    padding: 4rem 0;
}

.praise-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hebrew-words {
    margin: 3rem 0;
}

.hebrew-words h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.praise-word {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--praise-purple);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.praise-word:hover {
    transform: translateX(5px);
}

.praise-word h3 {
    color: var(--praise-purple);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.praise-word p:first-of-type {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.praise-teaching {
    max-width: 800px;
    margin: 3rem auto 0;
}

.praise-teaching h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.praise-teaching ul {
    list-style-position: inside;
    line-height: 2;
    margin: 1.5rem 0;
}

/* Footer with mountain silhouette */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232C3E50' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

footer p {
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    text-align: left;
}

.footer-donate {
    text-align: right;
}

.footer-donate p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-donate .btn {
    margin-top: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive styles remain the same but with updated colors */
/* Tablet styles (iPad) */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .helping-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .praise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pastor-content {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }
    
    /* Prevent iOS zoom on form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Better tap targets for mobile */
    .mobile-menu-toggle {
        min-width: 80px;
        min-height: 44px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Safe area for iPhone notch */
    header {
        padding-top: env(safe-area-inset-top);
    }
    
    /* Header and Navigation */
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding-right: 80px; /* Space for fixed menu button */
    }
    
    .logo {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .site-title {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.65rem;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 10000;
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.95);
        border: 2px solid #333;
        border-radius: 5px;
        cursor: pointer;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .mobile-menu-toggle .hamburger {
        background-color: #333;
        width: 30px;
        height: 3px;
        margin: 5px auto;
    }
    
    /* Animate hamburger to X */
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Styles */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        display: flex !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: var(--bg-light);
        padding-left: 1.5rem;
    }
    
    .nav-link.donate-btn {
        background-color: var(--praise-purple);
        color: var(--white) !important;
        text-align: center;
        border-radius: 8px;
        margin: 1rem;
        display: block;
    }
    
    .nav-link.donate-btn:hover {
        background-color: var(--primary-color);
        color: var(--white) !important;
        padding-left: 1rem !important;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 998;
        pointer-events: auto;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Other mobile styles */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    /* All buttons mobile styles */
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0;
        display: block;
        text-align: center;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    .video-container {
        margin-top: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pastor-content {
        grid-template-columns: 1fr;
    }
    
    .pastor-photo {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .helping-content {
        grid-template-columns: 1fr;
    }
    
    .praise-grid {
        grid-template-columns: 1fr;
    }
    
    .words-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-content,
    .donate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .scripture-quote {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .helping-stats {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Form submit button mobile */
    .contact-form button[type="submit"],
    form button[type="submit"] {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    
    /* Add extra padding to sections with forms */
    .contact-section {
        padding-bottom: 4rem !important;
    }
    
    .donate-section {
        padding-bottom: 4rem !important;
    }
    
    /* Contact form specific spacing */
    .contact-form {
        margin-bottom: 2rem;
    }
    
    /* Ensure footer doesn't overlap content */
    main {
        padding-bottom: 3rem;
    }
    
    .praise-hero h1 {
        font-size: 2rem;
    }
    
    .praise-word {
        padding: 1.5rem;
    }
    
    /* Footer mobile styles */
    footer {
        padding: 2rem 0;
    }
    
    footer p {
        font-size: 0.9rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        width: 100%;
    }
    
    .footer-info p {
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .footer-donate {
        width: 100%;
        text-align: center;
    }
    
    .footer-donate .btn {
        width: 100%;
        max-width: 250px;
        margin: 0.5rem auto;
        display: block;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .site-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .tagline {
        display: none;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .nav-menu {
        width: 250px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-verse {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-verse p {
        font-size: 0.95rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        gap: 0.3rem 0.8rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .pastor-photo {
        max-width: 220px;
    }
    
    .helping-cta {
        padding: 1.5rem 1rem;
    }
    
    .helping-cta h3 {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .praise-item {
        padding: 1.5rem 1rem;
    }
    
    .praise-icon {
        font-size: 2rem;
    }
    
    .praise-item h4 {
        font-size: 1.1rem;
    }
    
    .words-column h3 {
        font-size: 1.3rem;
    }
    
    .life-words li {
        font-size: 0.95rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }
    
    .declaration-box {
        padding: 2rem 1.5rem;
    }
    
    .declaration-box h3 {
        font-size: 1.5rem;
    }
    
    .declaration-box p {
        font-size: 1rem;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    footer {
        padding: 1rem 0;
    }
    
    footer p {
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-info p,
    .footer-donate {
        text-align: center;
    }
    
    .footer-donate p {
        font-size: 0.8rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .video-placeholder {
        height: 200px;
    }
    
    .navbar {
        position: relative;
    }
}

/* iPad Pro and larger tablets */
@media (min-width: 769px) and (max-width: 1366px) {
    .container {
        max-width: 90%;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Beliefs Page Styles */
.beliefs-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.beliefs-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.beliefs-section .lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.beliefs-summary {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.beliefs-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.beliefs-list {
    list-style: none;
    padding: 0;
}

.beliefs-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.beliefs-list li::before {
    content: "✝";
    position: absolute;
    left: 0;
    color: var(--praise-purple);
    font-weight: bold;
}

.beliefs-detailed {
    background-color: var(--bg-cream);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.beliefs-detailed h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.belief-article {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.belief-article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.belief-article p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.belief-article p:last-child {
    margin-bottom: 0;
}

.beliefs-cta {
    text-align: center;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.beliefs-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beliefs-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive styles for beliefs page */
@media (max-width: 768px) {
    .beliefs-section h1 {
        font-size: 2rem;
    }
    
    .beliefs-summary,
    .beliefs-detailed,
    .beliefs-cta {
        padding: 2rem 1.5rem;
    }
    
    .belief-article {
        padding: 1.5rem;
    }
    
    .belief-article h3 {
        font-size: 1.25rem;
    }
    
    .beliefs-detailed h2 {
        font-size: 1.75rem;
    }
}