/* About Page Styling - Looksyy Theme */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f6f8; /* Soft plum-tinted white */
    color: #e6e6e6;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.about-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2.5rem 3rem;
    background-color: #2d001f; /* Deep bark background for cards */
    border-radius: 22px;
    box-shadow: 0 0 30px rgba(144, 0, 100, 0.25); /* Plum glow */
    line-height: 1.8;
    transition: all 0.3s ease-in-out;
}

.about-container h1 {
    font-size: 2.75rem;
    color: #ffb7ef; /* Lavender pink-purple */
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.about-container section {
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.about-container section:hover {
    transform: translateY(-3px);
}

.about-container h2 {
    font-size: 1.7rem;
    color: #ff8ad9; /* Softer neon pink */
    margin-bottom: 0.8rem;
    border-left: 4px solid #ffc6f4; /* Pastel pink border */
    padding-left: 0.7rem;
}

.about-container p {
    font-size: 1.1rem;
    color: #f5f5f5; /* Soft white for readability */
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.about-container a {
    color: #ff99cc; /* Light pink */
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-container a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 2rem;
        margin: 3rem 1.5rem;
    }

    .about-container h1 {
        font-size: 2.2rem;
    }

    .about-container h2 {
        font-size: 1.4rem;
    }

    .about-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .about-container h1 {
        font-size: 1.9rem;
    }

    .about-container h2 {
        font-size: 1.2rem;
    }

    .about-container p {
        font-size: 0.95rem;
    }
}
