/* ========================================
   Hydro Custom Styles - Bordeaux Theme
   ======================================== */

/* Global Styles */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #2d3748;
}

a {
    text-decoration: none;
    transition: color 0.2s;
}

/* Color Utilities */
.bg-bordeaux {
    background-color: #800020 !important;
}

.text-bordeaux {
    color: #800020 !important;
}

.text-accent {
    color: #198754 !important;
}

.bg-accent {
    background-color: #198754 !important;
}

/* Navbar Styles */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    transition: all 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Avatar Circle */
.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Custom Button Styles */
.btn-primary {
    background-color: #800020;
    border-color: #800020;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    transition: all 0.3s;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.btn-primary:hover {
    background-color: #a31538;
    border-color: #a31538;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    transition: all 0.3s;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.btn-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: #800020;
    border-color: #800020;
    border-radius: 50rem;
}

.btn-outline-primary:hover {
    background-color: #800020;
    border-color: #800020;
    color: white;
}

.btn-outline-secondary {
    border-radius: 50rem;
}

/* Card Styles */
.card {
    border: 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    background-color: white;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Form Controls */
.form-control:focus {
    border-color: #800020;
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.15);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    animation: slideIn 0.2s ease-out forwards;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-3xl {
    border-radius: 1.5rem !important;
}

/* Hover Effects */
.hover\:shadow-xl:hover {
    box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.2) !important;
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}