/* public/assets/css/style.css */

:root {
    --primary-color: #0ea5e9;
    --secondary-color: #10b981;
    --dark-color: #0f172a;
    --dark-custom: #1e293b;
    --light-color: #f8fafc;
    --font-family: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-color);
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #0284c7, #1e3a8a) !important;
}

.bg-dark-custom {
    background-color: var(--dark-custom) !important;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0284c7);
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #0284c7, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.transition {
    transition: all 0.3s ease;
}

.hover-text-white:hover {
    color: #ffffff !important;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bg-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.transition-nav {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Custom Carousel height */
.carousel-item-img {
    height: 70vh;
    min-height: 400px;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-caption {
    bottom: 20%;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-para {
    font-size: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.glass-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Auth Cards */
.aut-card img {
    border: 3px solid var(--primary-color);
    padding: 3px;
    background: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Custom Styles */
.nav-link-custom {
    position: relative;
    color: #475569 !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link-custom:hover, .nav-link-custom.active, .dropdown:hover .nav-link-custom {
    color: var(--primary-color) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link-custom:hover::after, .nav-link-custom.active::after, .dropdown:hover .nav-link-custom::after {
    width: 80%;
}

.hover-bg-light:hover {
    background-color: #f8fafc !important;
    color: var(--primary-color) !important;
}

.hover-text-info:hover {
    color: #38bdf8 !important;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4) !important;
}
