html {
    font-size: 14px;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    min-height: 100vh;
    margin: 0;
    background: #F8F4EF;
    color: #4A3B3F;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    transition: 0.25s ease;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(122, 30, 58, 0.18);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.art-navbar {
    min-height: 90px;
    background: rgba(248, 244, 239, 0.90);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(122, 30, 58, 0.10);
    box-shadow: 0 8px 32px rgba(122, 30, 58, 0.06);
}

@media (min-width: 992px) {
    .art-navbar {
        max-height: 100px;
    }
}

.art-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7A1E3A !important;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, #7A1E3A, #A14B68);
    box-shadow: 0 12px 28px rgba(122, 30, 58, 0.22);
}

.art-link {
    color: #4A3B3F !important;
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
}

    .art-link:hover {
        color: #7A1E3A !important;
        background: #E9DED2;
    }

.auth-area .nav-link {
    color: #4A3B3F !important;
    font-weight: 600;
}

    .auth-area .nav-link:hover {
        color: #7A1E3A !important;
    }

.auth-area form button {
    border: 0;
    background: transparent;
    color: #4A3B3F;
    font-weight: 600;
    padding: 8px 0;
}

    .auth-area form button:hover {
        color: #7A1E3A;
    }

.main-container {
    padding-top: 32px;
    padding-bottom: 72px;
}

.main-full {
    width: 100%;
    min-height: calc(100vh - 90px - 64px);
}

.art-footer {
    min-height: 64px;
    display: flex;
    align-items: center;
    background: rgba(233, 222, 210, 0.75);
    border-top: 1px solid rgba(122, 30, 58, 0.10);
    color: #8B6A75;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

    .footer-content a {
        color: #7A1E3A;
        text-decoration: none;
        font-weight: 700;
    }

        .footer-content a:hover {
            color: #A14B68;
        }

.footer-dot {
    color: #D9A5B3;
}

.art-toggler {
    border: 1px solid rgba(122, 30, 58, 0.18);
    border-radius: 14px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 18px 0;
    }

    .auth-area {
        padding-top: 12px;
        border-top: 1px solid rgba(122, 30, 58, 0.10);
        margin-top: 12px;
    }
}

.notification-dropdown {
    position: relative;
}

.notification-btn {
    position: relative;
    border: none;
    background: #E9DED2;
    color: #7A1E3A;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 19px;
    box-shadow: 0 10px 25px rgba(122, 30, 58, 0.08);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #7A1E3A;
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-menu {
    width: 360px;
    max-height: 440px;
    overflow-y: auto;
    border: 1px solid #E9DED2;
    border-radius: 22px;
    padding: 10px;
    background: #F8F4EF;
    box-shadow: 0 25px 70px rgba(122, 30, 58, 0.12);
}

@media (max-width: 480px) {
    .notification-menu {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: 84px !important;
        width: auto;
        max-width: none;
    }
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    color: #4A3B3F;
    border-bottom: 1px solid #E9DED2;
    margin-bottom: 8px;
}

    .notification-header span {
        color: #7A1E3A;
        font-size: 13px;
        font-weight: 700;
    }

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 6px;
    background: white;
}

    .notification-item.unread {
        background: #F5EDE9;
        border-left: 4px solid #7A1E3A;
    }

.notification-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E9DED2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(122, 30, 58, 0.07);
}

.notification-item p {
    margin: 0;
    font-size: 14px;
    color: #4A3B3F;
    font-weight: 600;
}

.notification-item small {
    color: #8B6A75;
    font-size: 12px;
}

.notification-empty {
    text-align: center;
    padding: 25px 10px;
    color: #8B6A75;
}
