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

:root {
    /* Pink and Blue Sky Theme Colors */
    --sky-pink: #FFB6D9;
    --sky-blue: #89CFF0;
    --sky-purple: #C5A3D9;
    --deep-blue: #4A90E2;
    --soft-pink: #FFC9E3;
    --warm-orange: #FFD4A3;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --text-dark: #2C3E50;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section with Animated Sky Background */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* First sky image - orange sunset (base layer) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Second sky image - blue sunset (animated fade) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 40px 20px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--deep-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.btn-link {
    background: var(--deep-blue);
    color: var(--white);
}

.btn-link:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

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

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.story-section {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

blockquote {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-purple) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: var(--white);
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

/* Offerings Section */
.offerings-section {
    background: linear-gradient(135deg, var(--sky-pink) 0%, var(--sky-purple) 50%, var(--sky-blue) 100%);
    color: var(--white);
}

.offerings-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.offering-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.offering-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.offering-item .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.offering-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.offerings-note {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Location Section */
.location-section {
    background: var(--light-gray);
}

.location-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-info h3 {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.address {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.directions {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.hours-box {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-purple) 100%);
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
    text-align: center;
}

.hours-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hours-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-image {
    display: flex;
    flex-direction: column;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: var(--medium-gray);
}

.map-container {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.map-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* Impact Section */
.impact-section {
    background: var(--white);
}

.impact-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.impact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--deep-blue) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.stat-source {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.impact-note {
    background: linear-gradient(135deg, var(--sky-pink) 0%, var(--sky-purple) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    color: var(--white);
}

.impact-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.impact-note strong {
    font-size: 1.2rem;
}

.citation {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
}

.citation a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation a:hover {
    opacity: 0.8;
}

.featured-article {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.featured-article h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 30px;
}

.article-quote {
    background: var(--white);
    margin: 30px auto;
    max-width: 800px;
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, var(--sky-pink) 0%, var(--sky-purple) 100%);
    color: var(--white);
}

.support-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.support-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--deep-blue);
}

.support-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.donation-list {
    list-style: none;
    margin: 20px 0;
}

.donation-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.donation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--deep-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 20px;
}

.social-btn {
    display: inline-block;
    background: var(--deep-blue);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--sky-blue);
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding: 80px 0;
}

.gallery-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    max-width: 100%;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--deep-blue);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--sky-blue);
}

.gallery-item {
    flex: 0 0 400px;
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}



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

.resources-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.resources-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
}

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

.resource-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h4 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.resource-card a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: var(--sky-blue);
}



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

.contact-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-message h3 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--deep-blue);
}

.contact-item a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--deep-blue);
}

.contact-message {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-purple) 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
}

.promise-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.promise-signature {
    font-size: 2.5rem;
    text-align: center;
}

/* Subscribe Form Styles */
.subscribe-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.subscribe-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.subscribe-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
}

.subscribe-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid rgba(244, 67, 54, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--sky-pink);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sky-pink);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .location-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-item {
        flex: 0 0 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--sky-pink);
    color: var(--white);
}