/* About Us Section Styles */

/* Page Container */
#about-section .about-page {
    margin-top: 0px;
    padding-top: 130px;
    margin-bottom: 100px;
}

#about-section .page-header {
    text-align: center;
}

#about-section .page-header h1 {
    background-color: red;
    background-image: linear-gradient(90deg, #E85E53, #C633A3, #8E31BB, #2C68D6, #66ADD6);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0rem;
    font-family: Inter;
    font-size: 99px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1;
}

#about-section .page-header .subtitle {
    font-family: 'Overpass', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* About Content */
#about-section .about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 30px;
}

/* ========================================
   Interactive Poem Experience
   ======================================== */

.poem-experience {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poem-container {
    text-align: center;
    max-width: 900px;
    margin-bottom: 2rem;
}

.poem-line {
    font-family: 'Overpass', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #444;
    line-height: 1.3;
    margin: 0.3rem 0;
    padding: 0.3rem 0.6rem;
    display: block;
    text-align: center;
}

.poem-keyword {
    font-style: italic;
    font-weight: 500;
}

.poem-phrase {
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.poem-phrase:hover {
    color: #222;
}

/* ========================================
   Service Reveal Cards - Organic Layout
   ======================================== */

.service-reveal-container {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    position: relative;
}

.service-reveal {
    flex: 0 0 auto;
    width: 260px;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

/* Organic staggered positions */
.service-reveal[data-service="workshop"] {
    transform: translateY(-15px) rotate(-1.5deg);
}

.service-reveal[data-service="kit"] {
    transform: translateY(20px) rotate(1deg);
}

.service-reveal[data-service="team"] {
    transform: translateY(-8px) rotate(-0.8deg);
}

.service-reveal:hover {
    opacity: 0.8;
}

/* Hover states with organic movement */
.service-reveal[data-service="workshop"]:hover {
    transform: translateY(-20px) rotate(-0.5deg) scale(1.02);
}

.service-reveal[data-service="kit"]:hover {
    transform: translateY(15px) rotate(0.3deg) scale(1.02);
}

.service-reveal[data-service="team"]:hover {
    transform: translateY(-12px) rotate(-0.3deg) scale(1.02);
}

.service-reveal.active {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 252, 0.95));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Active states maintain organic positions but pop out more */
.service-reveal[data-service="workshop"].active {
    transform: translateY(-22px) rotate(-1deg) scale(1.03);
}

.service-reveal[data-service="kit"].active {
    transform: translateY(12px) rotate(0.5deg) scale(1.03);
}

.service-reveal[data-service="team"].active {
    transform: translateY(-14px) rotate(-0.4deg) scale(1.03);
}

.service-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Service-specific icon colors */
.service-reveal[data-service="workshop"] .service-icon {
    background: linear-gradient(135deg, rgba(232, 94, 83, 0.15), rgba(198, 51, 163, 0.15));
    color: #E85E53;
}

.service-reveal[data-service="kit"] .service-icon {
    background: linear-gradient(135deg, rgba(198, 51, 163, 0.15), rgba(142, 49, 187, 0.15));
    color: #8E31BB;
}

.service-reveal[data-service="team"] .service-icon {
    background: linear-gradient(135deg, rgba(142, 49, 187, 0.15), rgba(44, 104, 214, 0.15));
    color: #2C68D6;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.service-reveal[data-service="workshop"] .service-title {
    background: linear-gradient(90deg, #E85E53, #C633A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-reveal[data-service="kit"] .service-title {
    background: linear-gradient(90deg, #C633A3, #8E31BB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-reveal[data-service="team"] .service-title {
    background: linear-gradient(90deg, #8E31BB, #2C68D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-family: 'Overpass', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Progress indicator dots */
.poem-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: linear-gradient(90deg, #E85E53, #C633A3);
    transform: scale(1.2);
}

.progress-dot:hover {
    transform: scale(1.3);
}

/* Read More Link */
#about-section .about-read-more {
    margin-top: 2rem;
    text-align: center;
}

#about-section .about-blog-link {
    font-family: 'Overpass', sans-serif;
    font-size: 1.1rem;
    color: #2C68D6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#about-section .about-blog-link:hover {
    color: #C633A3;
    text-decoration: underline;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    #about-section .page-header h1 {
        font-size: 2.5rem;
    }
    
    #about-section .about-page {
        padding-top: 100px;
    }

    #about-section {
        padding-top: 20px;
        margin-bottom: 80px;
    }

    #about-section .about-content {
        padding: 1rem;
        margin-top: 50px;
    }
    
    .poem-line {
        font-size: 1.05rem;
        line-height: 1.5;
        padding: 0.3rem 0.5rem;
    }
    
    .poem-container {
        padding: 0 0.5rem;
    }
    
    .service-reveal-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .service-reveal {
        width: 100%;
        max-width: 320px;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    /* Subtler organic positions on mobile */
    .service-reveal[data-service="workshop"] {
        transform: translateX(-8px) rotate(-0.8deg);
    }
    
    .service-reveal[data-service="kit"] {
        transform: translateX(10px) rotate(0.5deg);
    }
    
    .service-reveal[data-service="team"] {
        transform: translateX(-5px) rotate(-0.5deg);
    }
    
    .service-reveal[data-service="workshop"]:hover,
    .service-reveal[data-service="workshop"].active {
        transform: translateX(-8px) rotate(-0.3deg) scale(1.02);
    }
    
    .service-reveal[data-service="kit"]:hover,
    .service-reveal[data-service="kit"].active {
        transform: translateX(10px) rotate(0.2deg) scale(1.02);
    }
    
    .service-reveal[data-service="team"]:hover,
    .service-reveal[data-service="team"].active {
        transform: translateX(-5px) rotate(-0.2deg) scale(1.02);
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.2rem;
    }
    
    .service-title {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
}











