﻿
:root {
    --primary-color: #330b43;
    --primary-container: #4a235a;
    --secondary-color: #775a19;
    --secondary-fixed: #ffdea5;
    --secondary-fixed-dim: #e9c176;
    --surface: #f8f9fa;
    --surface-container: #edeeef;
    --surface-container-low: #f3f4f5;
    --on-surface-variant: #4c444d;
    --outline-variant: #cfc3ce;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--surface);
    color: #191c1d;
    overflow-x: hidden;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Custom Header Styling */
./*navbar-custom {
    background-color: var(--primary-color);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-fixed) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--secondary-fixed-dim) !important;
    }

    .nav-link.active {
        color: var(--secondary-fixed) !important;
        border-bottom: 2px solid var(--secondary-fixed);
    }*/

.btn-portal {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
}

/* Sections */
.hero-section {
    background-color: var(--surface-container-low);
    padding: 80px 0;
    position: relative;
}

.hero-bg-icon {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 300px;
    opacity: 0.05;
    pointer-events: none;
}

.section-divider {
    height: 4px;
    width: 80px;
    background-color: var(--secondary-color);
}

/* Profile Image Styles */
.profile-container {
    position: relative;
}

    .profile-container::before {
        content: '';
        position: absolute;
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
        border: 1px solid var(--outline-variant);
        border-radius: 1rem;
        z-index: -1;
        transition: border-color 0.3s;
    }

    .profile-container:hover::before {
        border-color: var(--secondary-color);
    }

.profile-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--outline-variant);
}

.profile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(51, 11, 67, 0.9), transparent);
    color: white;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

/* Cards */
.card-custom {
    border-radius: 1rem;
    border: 1px solid rgba(119, 90, 25, 0.2);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card-custom:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

.card-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Form Icons */
.form-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--outline-variant);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .form-card:hover {
        border-color: var(--secondary-color);
        transform: translateY(-5px);
    }

/* News Cards */
.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--outline-variant);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

footer {
    background-color: white;
    border-top: 1px solid var(--outline-variant);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--on-surface-variant);
}


