/**
 * Main CSS file for Juno Cassandra
 * Contains custom styling for the application
 */

/* Color Palette - Professional Blue Theme */
:root {
    --primary-dark: #1e3a5f;
    --primary-medium: #2c5282;
    --primary-light: #3182ce;
    --accent-blue: #4299e1;
    --dark-background: #2c3e50;
    --light-background: #f7fafc;
}

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);
    color: white;
}

.banner-section p {
    font-size: 1rem;
}

/* Carousel Section */
.carousel-section {
    background-color: #f8f9fa;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

/* Carousel Controls - Make arrows more visible */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: white;
}

/* Carousel Indicators - Make them more visible */
.carousel-indicators {
    margin-bottom: 0;
    padding-bottom: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: var(--primary-light);
    opacity: 1;
    border-color: white;
}

/* Features Section */
.features-section {
    background-color: #ffffff;
}

.features-section .card {
    border: 1px solid #d0d5dd;
    box-shadow: none;
}

.features-section .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-background) 100%);
}

.contact-section .form-control {
    border-radius: 0.25rem;
}

.contact-section .btn-primary {
    background-color: var(--accent-blue);
    border: none;
    border-radius: 0.25rem;
}

.contact-section .btn-primary:hover {
    background-color: var(--primary-light);
}

/* Footer */
.footer {
    background-color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-section h1 {
        font-size: 2rem;
    }
    
    .banner-section p {
        font-size: 1rem;
    }
    
    .carousel-item img {
        height: 300px;
    }
}

/* Navbar Customization */
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.navbar-dark .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-blue) !important;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-blue) !important;
}
