﻿/* --- EVENSYS CORE STYLES (NO SIDEBAR) --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --ev-navy: #0B2447;
    --ev-blue: #19376D;
    --ev-teal: #00D2D3;
    --ev-light-teal: #A5F1E9;
    --bg-body: #F8F9FA;
    --text-main: #2D3748;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
}

/* NAVBAR */
.navbar-evensys .nav-link {
    transition: all 0.2s;
    font-size: 0.95rem;
}

    .navbar-evensys .nav-link:hover {
        color: var(--ev-navy) !important;
        background-color: rgba(11, 36, 71, 0.05);
        border-radius: 8px;
    }

/* BRAND LOGO TYPOGRAPHY */
.brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.text-even-navy {
    color: #0B2447;
}

.text-sys-gradient {
    background: linear-gradient(135deg, #00D2D3 20%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00D2D3;
}

/* BUTTONS */
.btn-primary-ev {
    background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
    color: white;
    border: none;
    transition: all 0.3s;
}

    .btn-primary-ev:hover {
        background: linear-gradient(135deg, #19376D 0%, #00D2D3 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 210, 211, 0.3);
    }

/* CARDS */
.card-ev {
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card-ev:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

/* FOOTER */
footer {
    background: var(--ev-navy);
    color: white;
}

/* UTILS */
.text-navy {
    color: var(--ev-navy) !important;
}

.text-teal {
    color: var(--ev-teal) !important;
}

.bg-light-indigo {
    background-color: rgba(11, 36, 71, 0.05);
}

.shadow-glow {
    box-shadow: 0 0 15px rgba(0, 210, 211, 0.3);
}
/* --- MODERN HEADER STYLES --- */
.navbar-modern {
    background-color: rgba(255, 255, 255, 0.95); /* Trắng mờ */
    backdrop-filter: blur(12px); /* Hiệu ứng kính mờ */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Hiệu ứng Link Menu */
.nav-link-modern {
    font-weight: 600;
    color: #475569 !important; /* Màu xám xanh hiện đại */
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

    .nav-link-modern:hover, .nav-link-modern.active {
        color: var(--ev-navy) !important;
        background-color: rgba(0, 210, 211, 0.1); /* Nền xanh ngọc nhạt */
    }

/* Dropdown Menu đẹp hơn */
.dropdown-menu-modern {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px !important; /* Cách xa header chút */
    animation: fadeInUp 0.2s ease-out forwards;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
}

    .dropdown-item:hover {
        background-color: rgba(0, 210, 211, 0.1);
        color: var(--ev-navy);
    }

/* Nút Sign In / Register trên Header */
.btn-header-outline {
    border: 2px solid #e2e8f0;
    color: var(--ev-navy);
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 24px;
}

    .btn-header-outline:hover {
        border-color: var(--ev-navy);
        background-color: var(--ev-navy);
        color: white;
    }

.btn-header-primary {
    background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 24px;
    box-shadow: 0 4px 10px rgba(11, 36, 71, 0.2);
    border: none;
}

    .btn-header-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(11, 36, 71, 0.3);
        color: white;
    }
/* --- AUTH PAGES STYLING --- */
/* --- TRANG ĐĂNG NHẬP / ĐĂNG KÝ MỚI (FULL SCREEN) --- */
.full-screen-bg {
    /* Ảnh nền sự kiện mờ ảo */
    background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=2670&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    /* Căn giữa mọi thứ */
    min-height: 100vh; /* Chiếm toàn bộ chiều cao màn hình */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

    /* Lớp phủ màu Navy trong suốt đè lên ảnh để làm nổi chữ */
    .full-screen-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(11, 36, 71, 0.85); /* Màu Navy (#0B2447) độ mờ 85% */
        z-index: 1;
    }

/* Nội dung nổi lên trên lớp phủ */
.auth-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}
.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Custom Input Fields */
.form-floating > .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background-color: #f8fafc;
}

    .form-floating > .form-control:focus {
        border-color: var(--ev-teal);
        box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.1);
        background-color: #fff;
    }

.form-floating > label {
    color: #64748b;
}