/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazir', sans-serif;
    background-color: #f9f1e9; /* رنگ پس‌زمینه کرم گرم */
    color: #333;
    line-height: 1.8;
    direction: rtl;
}

/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}

.about-container {
    max-width: 90%;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: right;
    animation: fadeIn 1s ease-in-out;
}

/* Headings */
h1 {
    font-size: 2.2rem;
    color: #6b4e31; /* قهوه‌ای گرم */
    margin-bottom: 20px;
    text-align: center;
}

/* Content */
.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    color: #555;
    border-right: 4px solid #6b4e31;
    padding-right: 15px;
    margin-bottom: 30px;
}

.signature {
    font-weight: bold;
    color: #6b4e31;
    text-align: left;
    margin-top: 20px;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    text-align: center;
}

.social-links p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links a {
    font-size: 1.8rem;
    margin: 0 10px;
    color: #6b4e31;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #d4a373; /* رنگ طلایی در هاور */
    transform: scale(1.2);
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 1rem;
}

.contact-info a {
    color: #6b4e31;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #d4a373;
}

/* Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 20px;
        margin: 0 15px;
        max-width: 90%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}