/* Page-specific styles for about.php */
.hero {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 10rem 2rem;
    background-image: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.6)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #333;
    position: relative;
    overflow: hidden;
}

/* Moving Disco Light Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 127, 0.4), rgba(0, 255, 255, 0.4), rgba(121, 40, 202, 0.4), rgba(255, 255, 0, 0.4));
    background-size: 400% 400%;
    animation: discoLighting 10s ease infinite;
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    color: #fff;
    animation: neonPulse 2s infinite alternate;
}

.content {
    padding: 4rem 2rem;
}

.content .container {
    max-width: 900px;
    margin: 0 auto;
}

.content .container::after {
    content: "";
    display: table;
    clear: both;
}

.content h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .content-img {
        max-width: 45%;
    }
    .img-right {
        float: right;
        margin-left: 2rem;
    }
}