/* Home Page Styles */

:root {
    --accent-color: #e8b923;
    --color-photo: #e8b923;
    --color-aqua: #00d4ff;
    --color-music: #e91e63;
    --color-reading: #d4a574;
    --color-tech: #00ff41;
    --color-wh40k: #d4af37;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--accent-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(232, 185, 35, 0.2);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-style: italic;
    margin: 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Intro Section */
.intro-section {
    margin-bottom: 4rem;
    line-height: 1.8;
}

.intro-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    text-align: justify;
}

.signature {
    font-style: italic;
    margin-top: 2rem;
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Interests Section */
.interests-section {
    margin-bottom: 4rem;
}

.interests-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.interest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(232, 185, 35, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 185, 35, 0.1), transparent);
    transition: left 0.3s ease;
    pointer-events: none;
}

.interest-card:hover::before {
    left: 100%;
}

.interest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(232, 185, 35, 0.25);
    border-color: var(--accent-color);
    background: rgba(26, 26, 26, 0.9);
}

.interest-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.interest-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-align: center;
}

.interest-card p {
    font-size: 0.95rem;
    color: #a0a0a0;
    text-align: center;
    margin: 0;
}

.interest-card:hover h3 {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(232, 185, 35, 0.3);
}

/* Individual Card Hover Colors */
.interest-card:has(h3:contains("Photography")):hover,
.interest-card:nth-child(1):hover {
    border-color: var(--color-photo);
    box-shadow: 0 12px 40px rgba(232, 185, 35, 0.3);
}

.interest-card:nth-child(2):hover {
    border-color: var(--color-aqua);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.interest-card:nth-child(3):hover {
    border-color: var(--color-music);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.3);
}

.interest-card:nth-child(4):hover {
    border-color: var(--color-reading);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.3);
}

.interest-card:nth-child(5):hover {
    border-color: var(--color-tech);
    box-shadow: 0 12px 40px rgba(0, 255, 65, 0.2);
}

.interest-card:nth-child(6):hover {
    border-color: var(--color-wh40k);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

/* Credits Section */
.credits-section {
    text-align: center;
    padding: 2rem;
    background: rgba(232, 185, 35, 0.05);
    border: 1px solid rgba(232, 185, 35, 0.2);
    border-radius: 8px;
    margin-top: 3rem;
}

.credits-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.credits-section p {
    margin: 0.5rem 0;
}

.neocities-link {
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.neocities-link:hover {
    transform: scale(1.05);
}

.neocities-link img {
    max-height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.neocities-link:hover img {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .interests-section h2 {
        font-size: 2rem;
    }

    .interests-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-container {
        padding: 2rem 1rem;
    }

    .intro-section p {
        text-align: left;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .interests-section h2 {
        font-size: 1.5rem;
    }

    .interest-card {
        padding: 1.5rem 1rem;
    }

    .interest-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .interest-card h3 {
        font-size: 1.2rem;
    }

    .interest-card p {
        font-size: 0.85rem;
    }
}
