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

:root {
    /* Super Moms Brand Colors */
    --navy: hsla(23, 100%, 36%, 0.825);
    --charcoal: hsl(0, 0%, 15%);
    --light-grey: hsl(0, 0%, 96%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --gray-400: hsl(0, 0%, 63%);
    --gray-600: hsl(0, 0%, 45%);
    --gray-800: hsl(0, 0%, 27%);
    
    /* Typography */
    --font-sans: 'Times New Roman', sans-serif;
    --radius: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

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

/* Navigation Styles */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(20px);
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.floating-nav.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-container {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--charcoal);
    font-style: italic;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links button {
    background: none;
    border: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-family: 'Times New Roman', Times, serif;
}

.nav-links button:hover {
    color: var(--navy);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--navy);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}

.mobile-menu button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    font-family: 'Times New Roman', Times, serif;
}

.mobile-menu button:hover {
    color: var(--navy);
}

/* Hero Slideshow Styles */
.slideshow-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(50deg, hsla(23, 98%, 41%, 0.764) 30%, 
        rgba(255, 201, 147, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
}

.slide-text {
    max-width: 64rem;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.slide-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.slide-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.7s both;
}

.slide-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 0.9s both;
}

@media (min-width: 640px) {
    .slide-buttons {
        flex-direction: row;
    }
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: hsla(38, 100%, 56%, 0.453);
    transform: scale(1.05);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: scale(1.05);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: scale(1.05);
}

/* Pulse Glow Animation */
.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
    }
}

/* Slide Navigation */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slide-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.25);
}

.indicator:hover {
    transform: scale(1.3);
}

.play-pause-btn {
    position: absolute;
    bottom: 10rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.mission-content {
    text-align: center;
}

.mission-content h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.25rem;
    color: var(--charcoal);
    line-height: 1.8;
    max-width: 64rem;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--charcoal);
    max-width: 48rem;
    margin: 0 auto;
}

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

.value-card {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.25);
}

.value-icon {
    background: rgba(30, 58, 138, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--navy);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* Our Programs Section */
.programs-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.programs-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.program-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.25);
}

/* Program Image */
.program-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

/* Program Content */
.program-content {
    padding: 2rem;
    text-align: center;
}

.program-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, hsl(53, 83%, 40%) 100%);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.3s ease 0.2s both;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

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

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Founders Section */
.founders-section {
    padding: 6rem 0;
    background: var(--light-grey);
}

.founders-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 75rem;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.5s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.founder-image {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

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

.founder-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.founder-credentials {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.specialties-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.specialties-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.specialty-tag {
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, hsl(53, 83%, 40%) 100%);
    color: var(--white);
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.contact-section .btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 2rem;
    text-decoration: none;
    display: inline-block;
}

.contact-section .btn-primary:hover {
    background: var(--light-grey);
    transform: scale(1.05);
}

.contact-section .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    text-decoration: none;
    display: inline-block;
}

.contact-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}


/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.footer-logo p {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--gray-400);
    margin: 0;
}

.footer-brand > p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-support h4,
.footer-social h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li,
.footer-support li {
    margin-bottom: 0.5rem;
}

.footer-links button,
.footer-links a,
.footer-support a {
    color: var(--gray-400);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: left;
    padding: 0;
}

.footer-links button:hover,
.footer-links a:hover,
.footer-support a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: hsl(31, 72%, 71%);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
    }
    
    .prev-btn,
    .next-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .play-pause-btn {
        right: 1rem;
        bottom: 8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
}

/* Donation Section */
.donation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, hsl(53, 83%, 40%) 100%);
    color: var(--white);
    text-align: center;
}

.donation-section .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.donation-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.donation-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.donation-box p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

#copy-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: var(--navy);
    color: var(--white);
}

#copy-btn:hover {
    background: hsla(38, 100%, 56%, 0.453);
    transform: scale(1.05);
}

.donation-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.donation-note a {
    color: var(--white);
    text-decoration: underline;
}

.donation-note a:hover {
    color: hsla(38, 100%, 56%, 0.453);
    transform: scale(1.05);
}

.donation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .donation-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
