@charset "utf-8";
/* CSS Document */

/* Brand Colors */
:root {
    --wbbaa-blue: #1b2e5a;
    --wbbaa-gold: #c19b59;
    --wbbaa-gold-hover: #a48145;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Typography & Utilities */
.text-gold { color: var(--wbbaa-gold) !important; }
.text-blue { color: var(--wbbaa-blue) !important; }
.bg-blue { background-color: var(--wbbaa-blue) !important; }
.border-gold { border-color: var(--wbbaa-gold) !important; }
.tracking-wide { letter-spacing: 2px; }

/* Navbar */
/* Navbar Logo - Overlapping Effect */
.nav-logo {
    max-height: 110px; /* Makes the logo larger */
    width: auto;
    margin-bottom: -40px; /* Pulls the logo down over the edge of the navbar */
    position: relative; 
    z-index: 1050; /* Ensures the logo sits ON TOP of the hero image */
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.4)); /* Adds a slight shadow so it pops */
    transition: all 0.3s ease;
}

/* On smaller mobile screens, shrink it slightly so it doesn't take up the whole screen */
@media (max-width: 991px) {
    .nav-logo {
        max-height: 80px;
        margin-bottom: -20px;
    }
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 1rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--wbbaa-gold) !important;
}

/* Custom Gold Button */
.btn-gold {
    background-color: var(--wbbaa-gold);
    border-color: var(--wbbaa-gold);
    color: white;
    transition: all 0.3s ease;
}
.btn-gold:hover, .btn-gold:focus {
    background-color: var(--wbbaa-gold-hover);
    border-color: var(--wbbaa-gold-hover);
    color: white;
}

/* Hero Section with Stadium Image */
/* Hero Section */
.hero-section {
    position: relative;
    /* Deleted the background-image line from here! */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: calc(100vh - 90px);
    min-height: 500px;
}

/* Dark blue overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 46, 90, 0.65); /* Blue tint overlay */
    z-index: 0;
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Event Cards Hover Effect */
.event-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.event-card img {
    width: 100%;
    height: 200px; 
    object-fit: contain; /* Changed from cover to contain */
    object-position: center;
    padding: 10px; /* Added a little padding so the image doesn't touch the edges */
}

/* Footer border */
.border-4 {
    border-width: 4px !important;
}
/* Custom Nav Links (Mockup Styling) */
.custom-nav-link {
    color: #f8f9fa !important; /* Very light grey/white */
    letter-spacing: 1.5px;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
}

.custom-nav-link:hover, .custom-nav-link:focus {
    color: var(--wbbaa-gold) !important;
}

/* Footer Icon Hover */
.hover-gold {
    transition: color 0.3s ease;
}
.hover-gold:hover {
    color: var(--wbbaa-gold) !important;
}

