/* ========================================
   INDEX/HOME PAGE STYLES
   ======================================== */

   .home-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* -------- Hero Section -------- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    animation: fadeIn 1s ease;
}

.profile-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    z-index: 1;
    animation: pendulum 6s ease-in-out infinite;
    transform-origin: center center;
}

/* Pendulum oscillation animation */
@keyframes pendulum {
    0%, 100% {
        transform: rotate(-9deg);
    }
    50% {
        transform: rotate(9deg);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover {
    animation: glitch 0.5s ease;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.bio-short {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* -------- Quick Links Section -------- */
.quick-links {
    padding: 4rem 2rem;
    background: var(--bg-medium);
}

.quick-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: var(--font-display);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.link-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* -------- Featured Quote -------- */
.featured-quote {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.featured-quote::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    color: rgba(147, 51, 234, 0.1);
    font-family: var(--font-display);
    line-height: 1;
}

.featured-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.featured-quote p {
    font-size: 1.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.featured-quote cite {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: normal;
}

/* -------- Responsive Design -------- */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .bio-short {
        font-size: 1rem;
    }
    
    .quick-links h2 {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-quote p {
        font-size: 1.3rem;
    }
    
    .featured-quote::before {
        font-size: 6rem;
    }
}