/* How Does He Feel About Me - Specific Styles */
/* ============================================ */

/* Page Hero Styles */
.page-hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.05));
    border-radius: 30px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    animation: gentleRotate 40s linear infinite;
    z-index: -1;
}

@keyframes gentleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff1744, #c2185b, #8e24aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3em;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.2em;
    font-weight: 700;
    color: #c44569;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
    font-weight: 500;
}

/* Card Selection Styles */
.reading-container {
    max-width: 1000px;
    margin: 0 auto;
}

.card-selection {
    text-align: center;
    margin-bottom: 80px;
}

.card-selection h3 {
    font-size: 2.2em;
    color: #c44569;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.selection-guidance {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    justify-content: center;
}

.tarot-card {
    position: relative;
    width: 120px;
    height: 180px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
}

.card-back {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44569, #8b2635);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.card-back::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: cardShine 3s linear infinite;
}

@keyframes cardShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-pattern {
    font-size: 2em;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.card-number {
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    z-index: 1;
    position: relative;
}

.tarot-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

/* Reading Result Styles */
.reading-result {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
}

.result-card {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(196, 69, 105, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.15);
}

.card-reveal h3 {
    font-size: 2.5em;
    color: #c44569;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.card-icon {
    font-size: 4em;
    margin-bottom: 25px;
    display: block;
}

.card-meaning {
    font-size: 1.3em;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

/* Detailed Interpretation Styles */
.detailed-interpretation {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 157, 0.15);
}

.detailed-interpretation h4 {
    font-size: 2em;
    color: #c44569;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.interpretation-content {
    margin-bottom: 40px;
}

.interpretation-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #666;
}

/* Feelings Breakdown Styles */
.feelings-breakdown {
    margin-bottom: 40px;
}

.feelings-breakdown h5 {
    font-size: 1.5em;
    color: #c44569;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.feeling-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feeling-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feeling-label {
    min-width: 180px;
    font-weight: 600;
    color: #666;
    font-size: 1em;
}

.feeling-bar {
    flex: 1;
    height: 25px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.feeling-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd1dc, #ffb3d1);
    border-radius: 15px;
    width: 0%;
    transition: all 0.8s ease;
    position: relative;
}

.feeling-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: barShine 2s ease-in-out infinite;
}

@keyframes barShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feeling-percent {
    min-width: 50px;
    font-weight: 700;
    color: #c44569;
    text-align: right;
}

/* Next Steps Styles */
.next-steps {
    background: rgba(255, 107, 157, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 157, 0.15);
}

.next-steps h5 {
    font-size: 1.5em;
    color: #c44569;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: #666;
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li::before {
    content: '💫';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Understanding Section Styles */
.understanding-section {
    padding: 80px 0;
    background: rgba(255, 107, 157, 0.03);
    border-radius: 30px;
    margin: 80px 0;
}

.understanding-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #c44569;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.understanding-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.understanding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.card-header {
    margin-bottom: 20px;
}

.card-emoji {
    font-size: 3em;
    margin-bottom: 15px;
}

.understanding-card h3 {
    font-size: 1.6em;
    color: #c44569;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.understanding-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #c44569;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.15);
}

.faq-item h3 {
    font-size: 1.3em;
    color: #666;
    padding: 25px 30px;
    margin: 0;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    color: #c44569;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item h3.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
    color: #666;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Related Readings Section */
.related-readings {
    padding: 80px 0;
    background: rgba(255, 107, 157, 0.03);
    border-radius: 30px;
    margin: 80px 0;
}

.related-readings h2 {
    text-align: center;
    font-size: 2.5em;
    color: #c44569;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.readings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reading-card-small {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.reading-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.reading-card-small .card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.reading-card-small h4 {
    font-size: 1.4em;
    color: #c44569;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.reading-card-small p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .tarot-card {
        width: 90px;
        height: 135px;
    }
    
    .reading-result {
        padding: 30px 20px;
    }
    
    .feeling-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .feeling-label {
        min-width: auto;
        text-align: center;
    }
    
    .understanding-grid {
        grid-template-columns: 1fr;
    }
    
    .readings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tarot-card {
        width: 100px;
        height: 150px;
    }
    
    .readings-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1em;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Loading Modal Override for This Page */
.loading-modal .loading-content h3 {
    color: #ff6b9d;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.loading-modal .loading-content p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
} 