/* Egbe Arobayo Custom Styles */

:root {
    --primary-blue: #2596be;
    --accent-yellow: #f3d40a;
    --accent-red: #af2f2e;
    --light-cream: #fefefc;
    --secondary-blue: #4b95c4;
    --dark-text: #333333;
}

/* Typography */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Slider Section */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(37, 150, 190, 0.3) 0%,
        rgba(75, 149, 196, 0.2) 100%
    );
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem 1rem 0.5rem 0;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(243, 212, 10, 0.9);
    border-color: var(--accent-yellow);
    color: #333;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Floating Elements */
.floating-stats {
    position: absolute;
    bottom: 80px;
    right: 30px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-stats .stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.floating-stats .stat-item:last-child {
    margin-bottom: 0;
}

.floating-stats .stat-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #333;
    font-weight: bold;
}

.floating-stats .stat-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Legacy Hero Section (keeping for compatibility) */
.hero-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 150, 190, 0.1);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    margin-right: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
    transform: translateY(-1px);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.3);
}

.btn-accent-yellow {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #333;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-accent-yellow:hover {
    background-color: #d4b800;
    border-color: #d4b800;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 212, 10, 0.3);
}

/* Cards */
.card-hover {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 150, 190, 0.2) !important;
}

.vision-mission-card {
    border-left: 4px solid var(--accent-yellow);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    border-left-color: var(--primary-blue);
    border-left-width: 6px;
}

/* Colors */
.text-primary-custom {
    color: var(--primary-blue) !important;
}
.text-accent-yellow {
    color: var(--accent-yellow) !important;
}
.text-accent-red {
    color: var(--accent-red) !important;
}

.bg-primary-custom {
    background-color: var(--primary-blue) !important;
}
.bg-secondary-custom {
    background-color: var(--secondary-blue) !important;
}
.bg-accent-yellow {
    background-color: var(--accent-yellow) !important;
}
.bg-light-cream {
    background-color: var(--light-cream) !important;
}

/* Icons */
.icon-accent {
    color: var(--accent-yellow);
}
.icon-primary {
    color: var(--primary-blue);
}
.icon-red {
    color: var(--accent-red);
}

/* Badges */
.badge.bg-primary-custom {
    background-color: var(--primary-blue) !important;
    border-radius: 20px;
}

.badge.bg-warning {
    background-color: var(--accent-yellow) !important;
    color: #333 !important;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--secondary-blue) 100%
    );
    color: white;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 150, 190, 0.05);
    z-index: 1;
}

.footer > .container {
    position: relative;
    z-index: 2;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Executive Cards */
.executive-card .rounded-circle {
    border: 4px solid var(--accent-yellow);
    transition: all 0.3s ease;
}

.executive-card:hover .rounded-circle {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

/* Event Cards */
.event-card {
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 150, 190, 0.2);
}

.event-card .card-img-top {
    transition: transform 0.3s ease;
}

.event-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Form Enhancements */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 150, 190, 0.25);
}

.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 150, 190, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
    .floating-stats {
        position: static;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-slider,
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin: 0.25rem 0.5rem 0.25rem 0;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .floating-stats {
        padding: 1rem;
        min-width: 200px;
    }

    .hero-section {
        height: 60vh !important;
        text-align: center;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-slider,
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem;
    }

    .slider-nav {
        bottom: 15px;
        gap: 10px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }

    .hero-section {
        height: 50vh !important;
    }

    .display-4 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
