/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 16-Sep-2025, 03:51:19
    Author     : Patrao
*/

:root {
--primary-color: #2DD4BF;
--secondary-color: #10B981;
--accent-color: #0891B2;
--dark-color: #1F2937;
--light-color: #F8FAFC;
--border-color: #E5E7EB;
--text-muted: #6B7280;
--gradient-primary: linear-gradient(135deg, #2DD4BF, #10B981);
--gradient-secondary: linear-gradient(135deg, #0891B2, #2DD4BF);
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--dark-color);
background-color: #ffffff;
}

/* Header Styles */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
transition: all 0.3s ease;
}

.navbar.scrolled {
background: rgba(255, 255, 255, 0.98);
box-shadow: var(--shadow-md);
}

.navbar-brand {
display: flex;
align-items: center;
font-weight: 700;
font-size: 1.5rem;
color: var(--dark-color);
text-decoration: none;
}

.navbar-brand:hover {
color: var(--primary-color);
}

.navbar-nav .nav-link {
font-weight: 500;
color: var(--dark-color);
padding: 0.5rem 1rem;
border-radius: 8px;
transition: all 0.3s ease;
margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
color: var(--primary-color);
background-color: rgba(45, 212, 191, 0.1);
}

.btn-primary-custom {
background: var(--gradient-primary);
border: none;
color: white;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
}

.btn-primary-custom:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
color: white;
}

.btn-outline-custom {
border: 2px solid var(--primary-color);
color: var(--primary-color);
background: transparent;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
}

.btn-outline-custom:hover {
background: var(--primary-color);
color: white;
transform: translateY(-2px);
}

/* Main Content */
.main-content {
min-height: calc(100vh - 80px);
}

/* Footer Styles */
.footer {
background: var(--dark-color);
color: white;
padding: 3rem 0 1rem;
margin-top: auto;
}

.footer h5 {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 1rem;
}

.footer a {
color: #D1D5DB;
text-decoration: none;
transition: color 0.3s ease;
}

.footer a:hover {
color: var(--primary-color);
}

.footer-bottom {
border-top: 1px solid #374151;
margin-top: 2rem;
padding-top: 1rem;
text-align: center;
color: #9CA3AF;
}

/* Utility Classes */
.text-gradient {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.bg-gradient-primary {
background: var(--gradient-primary);
}

.bg-gradient-secondary {
background: var(--gradient-secondary);
}

.shadow-custom {
box-shadow: var(--shadow-xl);
}

/* Login Card Styles */
.login-card {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    background: #ffffff;
    margin-top: 10px;
}

.login-card .card-body {
    position: relative;
}

/* Members360 Button */
.btn-members360 {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
}

.btn-members360:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.4);
    color: white;
}

.btn-members360:focus {
    background: var(--gradient-primary);
    box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.25);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
.navbar-nav {
    margin-top: 1rem;
}

.navbar-nav .nav-link {
    margin: 0.25rem 0;
}

.login-card::before,
.login-card::after {
    display: none;
}
}