/* ========================================
   AI SESSIONS PAGE STYLES - ai.css
   Styles for the AI inspiration sessions page
   ======================================== */

/* Header */
.header {
    text-align: center;
    margin-top: 5%;
    padding: 15px 0 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Genre Tags Section - COMPACT */
.genre-section {
    text-align: center;
    padding: 10px 0;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    max-width: 100%;
    margin: 0 auto;
}

.genre-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.genre-tag:hover {
    transform: scale(1.05);
}

.genre-tag.calming {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
}

.genre-tag.baby {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
}

/* Image placeholders - smaller */
.img-placeholder {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    vertical-align: middle;
    margin: 0 2px;
}

.img-placeholder.red { background: linear-gradient(135deg, #c44536, #8b2e23); }
.img-placeholder.orange { background: linear-gradient(135deg, #e07b39, #c9622a); }
.img-placeholder.blue { background: linear-gradient(135deg, #4a90a4, #367d91); }
.img-placeholder.purple { background: linear-gradient(135deg, #7b5ea7, #5c4580); }
.img-placeholder.pink { background: linear-gradient(135deg, #d4a5a5, #c08080); }
.img-placeholder.teal { background: linear-gradient(135deg, #5a9e9e, #458080); }
.img-placeholder.yellow { background: linear-gradient(135deg, #d4b062, #c9a040); }
.img-placeholder.green { background: linear-gradient(135deg, #6b8e6b, #4a6b4a); }
.img-placeholder.dark { background: linear-gradient(135deg, #3a3a3a, #1a1a1a); }
.img-placeholder.warm { background: linear-gradient(135deg, #c9a962, #a08040); }

/* Decorative icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.icon-flower {
    font-size: 12px;
}

.icon-sound {
    font-size: 11px;
    letter-spacing: -2px;
}

/* Highlighted text with badge style */
.highlight {
    position: relative;
    display: inline-block;
    padding: 10px 22px;
    margin: 4px 3px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Purple badge style (was yellow) */
.highlight-purple {
    background-color: rgba(180, 160, 220, 0.4);
    border: 2px solid rgb(130, 100, 190);
    color: rgb(100, 70, 160);
}

.highlight-purple:hover {
    background-color: rgba(180, 160, 220, 0.5);
}

/* Green badge style */
.highlight-green {
    background-color: rgba(140, 200, 170, 0.4);
    border: 2px solid rgb(90, 160, 120);
    color: rgb(60, 110, 80);
}

.highlights-container {
    margin-top: 15px;
}

/* Description */
.description {
    text-align: center;
    max-width: 750px;
    margin: 10px auto 15px;
    padding: 20px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2a2a2a;
    position: relative;
}

.description::before,
.description::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
}

.description::before {
    top: 0;
}

.description::after {
    bottom: 0;
}

/* Testimonials */
.testimonials {
    max-width: 800px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    position: absolute;
    left: 0;
    top: -8px;
    color: var(--text-gold);
    opacity: 0.6;
}

.testimonial.end-quote::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-gold);
    opacity: 0.6;
}

/* Contact */
.contact {
    text-align: center;
    padding: 20px 0 40px;
}

.contact a {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--text-gold);
}

/* Desktop Layout */
@media (min-width: 768px) {
    .ai-page .page-wrapper {
        display: flex;
        justify-content: center;
        padding: 30px;
        min-height: 100vh;
    }

    .ai-page .main-content {
        max-width: 900px;
    }

    .header {
        font-size: 20px;
    }

    .genre-tag {
        font-size: 14px;
    }

    .genre-tag.calming,
    .genre-tag.baby {
        font-size: 18px;
    }

    .img-placeholder {
        width: 32px;
        height: 32px;
    }

    .icon-flower {
        font-size: 14px;
    }

    .highlight {
        font-size: 14px;
        padding: 12px 28px;
    }

    .description {
        font-size: 18px;
    }

    .testimonials {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .testimonial {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .genre-tag {
        font-size: 16px;
    }

    .genre-tag.calming,
    .genre-tag.baby {
        font-size: 20px;
    }

    .img-placeholder {
        width: 38px;
        height: 38px;
    }

    .highlight {
        font-size: 15px;
        padding: 14px 32px;
    }

    .description {
        font-size: 20px;
        padding: 30px 20px;
    }

    .testimonial {
        font-size: 24px;
    }

    .contact a {
        font-size: 32px;
    }
}