/* Custom CSS for QuickFolks Website */

/* Base Styles */
* {
    font-family: 'Poppins', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Default Styles */
.section-default {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-alt {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f9fafb;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn-primary {
    background-color: #2563eb;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background-color: white;
    color: #2563eb;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #2563eb;
    transition: all 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-cta-primary {
    background-color: white;
    color: #2563eb;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    background-color: #f3f4f6;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid white;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, white, #eff6ff);
}

.hero-visual {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Pillar Cards (What We Do) */
.pillar-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.pillar-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #dbeafe;
}

.pillar-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.pillar-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.pillar-link {
    color: #2563eb;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.pillar-link:hover {
    color: #1e40af;
}

/* Problem & Solution Cards */
.problem-card, .solution-card {
    padding: 2rem;
    border-radius: 0.75rem;
    height: 100%;
}

.problem-card {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.solution-card {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.problem-icon, .solution-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.problem-icon {
    background-color: #fee2e2;
    color: #dc2626;
}

.solution-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

/* Audience Cards (Who It's For) */
.audience-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.audience-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #dbeafe;
    transform: translateY(-0.25rem);
}

.audience-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.audience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.audience-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.audience-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Timeline (How Learning Works) */
.timeline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .timeline-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #dbeafe;
    display: none;
}

@media (min-width: 768px) {
    .timeline-container::before {
        display: block;
    }
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .timeline-step {
        margin-bottom: 0;
    }
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 20rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 1.875rem;
    color: #2563eb;
}

/* Product Cards */
.product-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #2563eb;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 10;
}

.product-badge.coming-soon {
    background-color: #f59e0b;
}

.product-image {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.add-to-cart-btn {
    background-color: #2563eb;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background-color: #1d4ed8;
}

.notify-btn {
    background-color: #f59e0b;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.notify-btn:hover {
    background-color: #d97706;
}

/* Event Cards */
.event-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.event-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.event-date {
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 0.5rem;
    text-align: center;
    padding: 0.75rem;
    margin-right: 1rem;
    min-width: 4rem;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
}

.event-month {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-details {
    flex-grow: 1;
}

.event-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.event-description {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.event-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.event-tag {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: auto;
}

.event-tag.paid {
    background-color: #dbeafe;
    color: #1e40af;
}

.event-register-btn {
    background-color: #2563eb;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    margin-left: 1rem;
    border: none;
    cursor: pointer;
}

.event-register-btn:hover {
    background-color: #1d4ed8;
}

/* Impact Stats */
.impact-stat {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: #4b5563;
}

.stat-icon {
    position: absolute;
    top: -1.25rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Vision Box */
.vision-box {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
    color: white;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.vision-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.vision-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.25rem;
    line-height: 1.75;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #2563eb, #7c3aed);
}

/* Footer Styles */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: white;
}

.footer-contact li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #2563eb;
}

.newsletter-input {
    background-color: #374151;
    color: white;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border: none;
    outline: none;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.newsletter-btn {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.newsletter-btn:hover {
    background-color: #1d4ed8;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    max-width: 24rem;
    border: 1px solid #e5e7eb;
    transform: translateY(5rem);
    opacity: 0;
    transition: all 0.5s;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-notification.active {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-container::before {
        display: none;
    }
    
    .impact-stat {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
}

/* Animation styles */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animations for grid items */
.pillar-card:nth-child(1) { animation-delay: 0.1s; }
.pillar-card:nth-child(2) { animation-delay: 0.2s; }
.pillar-card:nth-child(3) { animation-delay: 0.3s; }

.audience-card:nth-child(1) { animation-delay: 0.1s; }
.audience-card:nth-child(2) { animation-delay: 0.2s; }
.audience-card:nth-child(3) { animation-delay: 0.3s; }
.audience-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.impact-stat:nth-child(1) { animation-delay: 0.1s; }
.impact-stat:nth-child(2) { animation-delay: 0.2s; }
.impact-stat:nth-child(3) { animation-delay: 0.3s; }
.impact-stat:nth-child(4) { animation-delay: 0.4s; }