﻿.hero-title {
    text-align: center;
    padding: 30px 10px 20px;
}

    .hero-title h1 {
        font-size: 3.2rem;
        font-weight: 900;
        background: linear-gradient(90deg, #003d73, #005fa3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
        text-shadow: 1px 1px 0 #7fa6d9, 2px 2px 0 #6c94c9, 3px 3px 0 #5a82b8, 4px 4px 0 #4a70a7, 5px 5px 10px rgba(0,0,0,0.25);
        letter-spacing: 1px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeSlideUp 1.2s ease-out forwards;
    }

    .hero-title p {
        font-size: 1.2rem;
        color: #2c2c2c;
        margin-top: 12px;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 1.2s;
    }

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .hero-title h1 {
        font-size: 2.2rem;
    }

    .hero-title p {
        font-size: 1rem;
    }
}


/*منوی پایین صفحه */
/* === استایل منوی پایین صفحه === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #e6f0ff;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 75px;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: appear 0.8s ease-out forwards;
}

    .bottom-nav a {
        text-decoration: none;
        color: #444;
        font-size: 11px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: color 0.3s;
    }

        .bottom-nav a .bi {
            font-size: 20px;
            margin-bottom: 3px;
        }

        .bottom-nav a.active,
        .bottom-nav a:hover {
            color: #0d6efd;
        }

        .bottom-nav a.post {
            position: relative;
            top: -30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: #0d6efd !important;
        }

            .bottom-nav a.post .icon-wrapper {
                background-color: #0d6efd;
                border-radius: 50%;
                width: 55px;
                height: 55px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
                border: 2px solid #0d6efd;
            }

            .bottom-nav a.post .bi {
                font-size: 22px;
                color: #fff;
            }

            .bottom-nav a.post .label {
                margin-top: 6px;
                font-size: 11px;
                color: #0d6efd;
                font-weight: bold;
            }

@keyframes appear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* === حذف سایه از Collapse === */
.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* === استایل لینک‌های داخل Collapse === */
.accordion-body ul {
    list-style: none;
    padding-right: 0;
    margin: 0;
}

.accordion-body a {
    display: block;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

    .accordion-body a:hover {
        color: #0d6efd;
        text-decoration: none;

    }

    /* ناحیه کاربری */

.profile-section {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 24px;
}

.profile-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

    .profile-option:last-child {
        border-bottom: none;
    }

    .profile-option:hover {
        background-color: #f1f1f1;
    }

    .profile-option i {
        font-size: 20px;
        margin-left: 12px;
        color: #0d6efd;
    }

    .profile-option span {
        font-size: 15px;
    }
