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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #000;
    line-height: 1.6;
}

body {
    background: #fafafa;
    animation: backgroundFlicker 1s infinite alternate;
}

@keyframes backgroundFlicker {
    0%   { background:#fafafa; }
    40%  { background:#f5f5f5; }
    60%  { background:#ffffff; }
    70%  { background:#f0f0f0; }
    100% { background:#fafafa; }
}

.about-hero h1 {
    text-shadow:
        -2px 0 red,
        2px 0 cyan;
    animation: glitch 6s infinite;
}

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

.vision-point {
    transform: rotate(-0.6deg);
}

.vision-point:nth-child(2n) {
    transform: rotate(0.8deg);
}

.bio-section p:nth-child(2n) {
    transform: translateX(20px);
}

.vision-point,
.bio-section h3,
.vision-section h3 {
    border-color: black;
    box-shadow: 8px 8px 0 black;
    background: white;
}
.back-button {
    transform: rotate(-2deg);
    box-shadow: 6px 6px 0 black;
}

.back-button:hover {
    transform: rotate(2deg) translateX(-5px);
}

p:hover,
h4:hover {
    letter-spacing: 2px;
    transform: skewX(-5deg);
    transition: 0.2s;
}

.about-container {
    animation: breathe 10s infinite ease-in-out;
}

@keyframes breathe {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.01); }
    100% { transform: scale(1); }
}





/* Back Button */
.back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1000;
    padding: 1rem 1.5rem;
    border: 2px solid #000;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s;
}

.back-button:hover {
    background: #000;
    color: #fff;
    transform: translateX(-5px);
}

/* About Container */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
}

/* Hero Section */
.about-hero {
    margin-bottom: 6rem;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 1rem;
}

.about-hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    opacity: 0.6;
}

/* Vision Section */
.vision-section {
    margin-bottom: 6rem;
}

.vision-section h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    border-bottom: 4px solid #000;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.vision-point {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid #000;
}

.vision-point h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vision-point p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* Bio Section */
.bio-section {
    margin-bottom: 6rem;
}

.bio-section h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    border-bottom: 4px solid #000;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.bio-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #000;
    color: #fff;
    margin: 0 -2rem -4rem -2rem;
}

.contact-section h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.contact-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-section a {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
}

.contact-section a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        padding: 6rem 1.5rem 2rem 1.5rem;
    }
    
    .back-button {
        top: 1rem;
        left: 1rem;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .about-hero {
        margin-bottom: 4rem;
    }
    
    .vision-point {
        padding-left: 1rem;
    }
    
    .vision-point h4 {
        font-size: 1.2rem;
    }
    
    .vision-point p {
        font-size: 1rem;
    }
    
    .contact-section {
        margin: 0 -1.5rem -2rem -1.5rem;
    }
    
}
