﻿:root {
    --shames-main: #4B1B35;
    --shames-soft: #F7E6EC;
    --shames-bg: #f8f5f9;
    --shames-text: #2b2b2b;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--shames-bg);
}

/* ===== Navbar (Glass + Clean) ===== */
.main-navbar {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(75,27,53,.10);
}

/* Brand */
.navbar-brand {
    font-family: 'Pacifico', cursive;
    color: var(--shames-main) !important;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-decoration: none;
}

/* Sun icon next to brand */
.sun-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(255,225,170,.95) 30%, rgba(255,190,120,.55) 55%, rgba(255,190,120,0) 75%);
    box-shadow: 0 10px 20px rgba(75,27,53,.15);
    border: 1px solid rgba(75,27,53,.10);
    flex: 0 0 auto;
}

    .sun-logo::before {
        content: "";
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        background: repeating-conic-gradient( from 0deg, rgba(255,210,140,.35) 0deg, rgba(255,210,140,.35) 7deg, transparent 7deg, transparent 18deg );
        opacity: .55;
    }

.navbar-nav .nav-item {
    margin-left: 5px;
    margin-right: 5px;
}

/* Links */
.navbar-nav .nav-link {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.15rem;
    color: var(--shames-main) !important;
    position: relative;
    padding: 0 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    height: 60px;
    border-radius: 12px;
}

    .navbar-nav .nav-link:hover {
        background-color: var(--shames-main);
        color: #fff !important;
        text-decoration: none;
        transform: translateY(-1px);
    }

/* Make form buttons look like links */
.logout-button {
    padding: 0 15px !important;
    height: 60px;
    border-radius: 12px !important;
    text-decoration: none !important;
}

    .logout-button:hover {
        background-color: var(--shames-main) !important;
        color: #fff !important;
        transform: translateY(-1px);
    }

/* Dashboard button as primary (more noticeable) */
.dashboard-primary {
    background: var(--shames-main) !important;
    color: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 24px rgba(75,27,53,.18);
}

    .dashboard-primary:hover {
        opacity: .95;
    }
/* Footer */
footer.footer {
    background-color: #fff;
    border-top: 3px solid var(--shames-main);
    font-family: 'Tajawal', sans-serif;
    color: var(--shames-main);
    text-align: center;
    padding: 14px 0;
    margin-top: 20px;
}

    footer.footer a {
        color: var(--shames-main);
        text-decoration: none;
        transition: 0.3s;
    }

        footer.footer a:hover {
            text-decoration: underline;
            color: #000;
        }

@media (max-width: 991px) {
    .navbar-nav .nav-link, .logout-button {
        height: auto;
        padding: 10px 14px !important;
        justify-content: flex-start;
        width: 100%;
    }

    .navbar-collapse {
        padding-top: 12px;
    }
}

/* ===== Shames Footer ===== */
.shames-footer {
    background: linear-gradient(180deg, #4B1B35, #3A1328);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
}

    .shames-footer .footer-title {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #F7E6EC;
    }

    .shames-footer .footer-title-sm {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #F7E6EC;
    }

    .shames-footer .footer-text {
        line-height: 1.8;
        color: #f1dbe4;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #f1dbe4;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #ffffff;
            padding-right: 6px;
        }

.footer-contact {
    color: #f1dbe4;
    line-height: 1.7;
}

.phone-link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

    .phone-link:hover {
        text-decoration: underline;
    }

.footer-bottom {
    background-color: #2b0d1d;
    font-size: 0.95rem;
    color: #f1dbe4;
}
/* Fix phone number direction in RTL */
.phone-ltr {
    direction: ltr;
    unicode-bidi: bidi-override;
    display: inline-block;
    text-align: left;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
