/* about.css */

body {
    background: linear-gradient(135deg, #8c2a57 40%, #ffd800 100%);
    font-family: "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

/* Card-like container with glassmorphism */
.about-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #8c2a57;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-container h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #ffd800;
    font-weight: 700;
}

.about-container p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-container strong {
    color: #8c2a57;
}

/* Button */
.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #8c2a57, #a63c6e);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(140, 42, 87, 0.3);
}

.cta-button:hover {
    background: #ffd800;
    color: #8c2a57;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* -------------------- */
/* RESPONSIVE DESIGN */
/* -------------------- */

/* Tablets */
@media (max-width: 992px) {
    .about-container {
        max-width: 90%;
        padding: 40px;
    }

    .about-container h1 {
        font-size: 2.2rem;
    }

    .about-container h2 {
        font-size: 1.5rem;
    }

    .about-container p {
        font-size: 1.05rem;
    }
}

/* Mobile Phones */
@media (max-width: 600px) {
    .about-container {
        margin: 30px 15px;
        padding: 25px 20px;
    }

    .about-container h1 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }

    .about-container h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .about-container p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-button {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        border-radius: 40px;
    }
}
