/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #e9e9e9 !important;
    padding: 0.5rem 1rem;
}

/* Logo/Brand Styles */
.navbar-brand {
    font-weight: 600;
    font-size: 1.4rem;
    color: #ffffff !important;
    background-color: #1a237e;
    padding: 0.7rem 1rem 0.7rem 1rem;
    margin: -0.5rem;
    margin-right: 2rem;
    margin-left: -2rem;
}

.navbar-brand img {
    margin-right: 10px;
}

/* Navigation Links */
.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    color: #000000 !important;
    position: relative;
}

.nav-link:hover {
    color: #007bff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Buttons */
.navbar .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light {
    border-width: 2px;
    color: #1a237e;
    border-color: #1a237e;
}

.navbar .btn-outline-light:hover {
    background-color: #1a237e;
    color: #ffffff;
    transform: translateY(-1px);
}

.navbar .btn-primary {
    background-color: #1a237e;
    border: none;
}

.navbar .btn-primary:hover {
    background-color: #0d1642;
    transform: translateY(-1px);
}

/* ==========================================================================
   Carousel/Slider Styles
   ========================================================================== */
.carousel {
    margin: 0 7% 2rem;
}

.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 30%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.5rem;
}

/* ==========================================================================
   Events Section Styles
   ========================================================================== */
#events {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 300px;
    object-fit: scale-down;
}

.card-title {
    font-weight: 600;
    color: #2c3e50;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer {
    margin-top: auto;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar .d-flex {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    
    .navbar .btn {
        margin: 0.25rem 0;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .card-img-top {
        height: 180px;
    }
} 