/* Miranda The Wise - GeoCities Style CSS */

/* Import fun fonts */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FECA57);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #000;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border: 5px solid #FF1493;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Header Styles */
.main-header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #FF1493, #00FFFF, #FF1493);
    border-bottom: 5px solid #FFD700;
    position: relative;
}

.flashing-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 3px 3px 0px #000, 6px 6px 10px rgba(0,0,0,0.5);
    animation: flash 2s infinite;
    margin-bottom: 10px;
}

@keyframes flash {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 15px;
}

.blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.visitor-counter {
    margin-top: 15px;
}

/* Navigation */
.nav-menu {
    display: flex;
    justify-content: center;
    background: #000;
    padding: 15px;
    border-bottom: 3px solid #FFD700;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-link {
    color: #00FF00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 8px 15px;
    border: 2px solid #00FF00;
    border-radius: 10px;
    background: rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #00FF00;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px #00FF00;
}

/* Main Content */
main {
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FF69B4, #87CEEB);
    border: 5px solid #FFD700;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-image {
    border: 5px solid #FF1493;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.rainbow-text {
    background: linear-gradient(45deg, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #9400D3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: rainbow 3s linear infinite;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #FF1493;
}

/* Buttons */
.button-3d {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 25px;
    border-radius: 10px;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.button-3d:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px #000;
}

.button-3d.large {
    font-size: 1.3rem;
    padding: 15px 30px;
}

.button-3d.secondary {
    background: linear-gradient(45deg, #9B59B6, #E74C3C);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gradient-text {
    background: linear-gradient(45deg, #FF1493, #00BFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 0, 0.3);
    border: 5px solid #FF1493;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.credentials {
    background: rgba(0, 255, 255, 0.2);
    border: 3px solid #00FFFF;
    border-radius: 10px;
    padding: 20px;
}

.credentials h4 {
    font-size: 1.5rem;
    color: #FF1493;
    margin-bottom: 15px;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    background: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
    padding: 10px 15px;
    border-left: 5px solid #FF1493;
    border-radius: 5px;
    font-weight: bold;
}

.credentials li:before {
    content: "⭐ ";
    color: #FFD700;
}

/* Wisdom Section */
.wisdom-section {
    background: rgba(147, 112, 219, 0.3);
    border: 5px solid #9370DB;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.wisdom-card {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #FF69B4;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.wisdom-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

.wisdom-card h4 {
    color: #9370DB;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.wisdom-card blockquote {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.wisdom-card cite {
    font-weight: bold;
    color: #FF1493;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(255, 215, 0, 0.3);
    border: 5px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.testimonial-marquee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #FF6347;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: testimonialGlow 4s ease-in-out infinite alternate;
}

@keyframes testimonialGlow {
    from { box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3); }
    to { box-shadow: 0 5px 25px rgba(255, 99, 71, 0.8); }
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-weight: bold;
    color: #FF1493;
    font-style: normal;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #FF4500, #FFD700);
    border: 5px solid #FF0000;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
}

.cta-title {
    font-size: 2.5rem;
    color: #FFF;
    text-shadow: 3px 3px 0px #000;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 3px dashed #FF0000;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    background: rgba(0, 255, 255, 0.3);
    border: 5px solid #00FFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
}

.contact-details a {
    color: #FF1493;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
    color: #FF69B4;
}

/* Footer */
.footer {
    background: #000;
    color: #00FF00;
    text-align: center;
    padding: 20px;
    border-top: 5px solid #FFD700;
}

.footer-content p {
    margin: 5px 0;
}

.disclaimer {
    font-size: 0.8rem;
    color: #FFFF00;
    font-style: italic;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #00FFFF;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #FF1493;
}

.geocities-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Music Notice */
.music-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 20, 147, 0.9);
    color: #FFF;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    border: 2px solid #FFD700;
    animation: pulse 2s infinite;
    z-index: 1000;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .flashing-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .wisdom-grid,
    .testimonial-marquee {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        margin: 10px;
        border-radius: 10px;
    }
}

/* Additional 90s Effects */
.sparkle {
    position: relative;
    overflow: hidden;
}

.sparkle::before {
    content: "✨";
    position: absolute;
    top: 10px;
    right: 10px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
}

/* Scrolling text effect */
.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
