/* 
  ABOUT/STORY SECTION STYLES (from streakerswindow)
  Two-column layout with text and image
*/

/* Variables - customize these! */
:root {
    --primary: #FF9F1C;
    --secondary: #2D3047;
    --primary-color: #2D3047;
    --accent-color: #FF9F1C;
}

/* About Section */
.about-why {
    background: linear-gradient(120deg, #fff 70%, #f8f8f8 100%);
    padding: 3.5rem 1rem 3.5rem 1rem;
    margin-bottom: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(32,58,103,0.06);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.about-why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Text Column */
.about-why-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-why-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Benefits List */
.about-why-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.about-why-benefits li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--secondary);
    font-weight: 500;
}

/* Custom Bullet */
.about-why-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Photo Column */
.about-why-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-why-photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(32,58,103,0.12);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-why-photo img:hover {
    transform: scale(1.02);
}

/* Fade in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.about-why-benefits li:nth-child(1) { animation-delay: 0.1s; }
.about-why-benefits li:nth-child(2) { animation-delay: 0.2s; }
.about-why-benefits li:nth-child(3) { animation-delay: 0.3s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-why {
        padding: 2.5rem 1rem;
        border-radius: 12px;
    }
    
    .about-why-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-why-text h2 {
        font-size: 1.6rem;
    }
    
    .about-why-text p {
        font-size: 1rem;
    }
    
    .about-why-benefits li {
        font-size: 1rem;
    }
    
    .about-why-photo {
        order: -1; /* Put photo above text on mobile */
    }
    
    .about-why-photo img {
        max-width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .about-why-benefits li {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .about-why-photo img:hover {
        transform: none;
    }
}


