/*---------- HOMEPAGE HEADER DESKTOP SECTION ------------*/
#Homepage-Header-Desktop {
    padding-top: 100px;
    padding-bottom: 130px;
    width: 100%;
    min-height: 600px; 
    background: url(../img/header.jpg) no-repeat top center scroll;
    background-size: cover;
    color: #0d0d0d;
    position: relative;
}

#Homepage-Header-Desktop .col-md-12 {
    position: static;
}

/* H1 now flows naturally under the image */
#Homepage-Header-Desktop h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    margin: 20px 0 0 0; 
    text-align: center;
}

/* Tagline takes over the absolute positioning at the bottom */
#Homepage-Header-Desktop .tagline {
    font-family: "Montserrat", sans-serif; 
    font-weight: 400; 
    font-size: 26px;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 15px; 
    text-align: center;
}

/* SMART RESPONSIVE OVERRIDES (Replaces your previous media query) */
@media(max-width:768px) {
    #Homepage-Header-Desktop {
        /* Relaxes the tight constraints so the container expands if text wraps heavily */
        min-height: auto; 
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    #Homepage-Header-Desktop h1 {
        font-size: 28px;
        line-height: 1.2;      /* Gives wrapped title lines breathing room */
        margin-top: 15px;
        margin-bottom: 15px;   /* Pushes the content below down naturally */
    }
    
    #Homepage-Header-Desktop .tagline {
        position: static;      /* CRUCIAL: Breaks out of absolute positioning to follow the H1 */
        font-size: 18px;       /* Scales down font slightly for mobile readability */
        line-height: 1.5;      /* Balances paragraph text wrapping */
        margin-top: 15px;      /* Generates clean spacing below the H1 */
        padding: 0 20px;       /* Keeps text safely away from glass screen edges */
    }
    #Homepage-Header-Desktop img {
        width: 150px;
        margin-top: 40px;
    }
    
}
/*------------- END HOMEPAGE HEADER DESKTOP -----------*/

/*-- Pages Header --*/
#Pages-Header {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: #191819; /* Core deep indigo branding anchor */
    width: 100%;
    height: auto;
}

/* Handles fluid asset constraints safely across responsive breakpoints */
#Pages-Header .page-header-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}
/*-- End Pages Header --*/

/*--------------- WELCOME SECTION --------------*/
#welcome {
    padding-top: 30px;
    padding-bottom: 20px;
    width: 100%;
    height: auto;
    background-color: #333333; /* Retains crisp edge-to-edge full width framing */
}

#welcome h2 {
    font-size: 36px;
    font-family: "Montserrat", sans-serif; /* Fixed string format capitalization and fallback stack */
    font-weight: 600;
    text-align: center;
    text-transform: none;
    color: #fff;
}

#welcome p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif; /* Fixed string format capitalization and fallback stack */
    font-weight: 400;
    text-align: left;
    text-transform: none;
    color: #fff;
    line-height: 1.6; /* Adds consistent semantic text baseline scaling */
}



/* Responsive Adaptive Viewports */
@media(max-width:768px) {
    #welcome h2 {
        font-size: 22px;
    }
    
    #welcome p {
        font-size: 16px;
    }
}
/*------------------- End Welcome -------------------*/




/*--------------- Events Section --------------*/
#events {
    padding-top: 30px;
    padding-bottom: 20px;
    width: 100%;
    height: auto;
    background-color: #191819; /* Full-width canvas flood color assignment */
}

/* Forces structural graphic alignment symmetry */
#events .image-center {
    display: inline-block;
    margin: 0 auto;
}

#events h2 {
    font-size: 36px;
    font-family: "Montserrat", sans-serif; /* Fixed string capitalization & system fallback stack */
    font-weight: 600;
    text-align: center;
    text-transform: none;
    color: #f2f2f2;
    margin-top: 20px;
    margin-bottom: 15px;
}

#events h3 {
    font-size: 26px;
    font-family: "Montserrat", sans-serif; /* Fixed string capitalization & system fallback stack */
    font-weight: 600;
    text-align: center;
    text-transform: none;
    color: #f2f2f2;
    margin-top: 20px;
    margin-bottom: 10px;
}

#events p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif; /* Fixed string capitalization & system fallback stack */
    font-weight: 400;
    text-align: center;
    text-transform: none;
    color: #f2f2f2;
    line-height: 1.6;          /* Standardized layout readability baseline */
    margin-bottom: 15px;
}

/* Preserves perfect text coloration for newly semantic communication anchors */
#events .event-link {
    color: #f2f2f2;
    text-decoration: none;
}
#events .event-link:hover,
#events .event-link:focus {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Adaptive Viewports */
@media(max-width:768px) {
    #events h2 {
        font-size: 26px;
    }
    
    #events h3 {
        font-size: 22px;
    }
    
    #events p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Adds spacing below the flyer image on mobile screens so it doesn't slam into the H2 title */
    #events .col-xs-12 {
        margin-bottom: 25px;
    }
    #events .col-xs-12:last-child {
        margin-bottom: 0;
    }
}
/*------------------- End Events -------------------*/






/*------------------ Quote Band ---------------*/
#quote-band {
    padding-top: 30px;
    padding-bottom: 0px;
    width: 100%;
    height: auto;
    background-color: #000101; /* Spans 100% full-screen width flawlessly */
    border: 1px solid #56E837;
}

#quote-band h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;       
    font-size: 36px;
    line-height: 1.3;          /* Line-height anchor ensures text wrapping protection */
    margin-top: 0;
    margin-bottom: 30px;       /* Acts as the bottom padding for the colored band */
    color: #56E837;
    text-transform: none;
}

/* Responsive Adaptive Viewports */
@media(max-width:768px) {
    #quote-band h2 {
        font-size: 28px;
        line-height: 1.2;      /* Snugs lines together cleanly if a title wraps on small screens */
    }
}
/*------------------ End Quote Band -----------------*/

/*--------------- Contact Homepage ---------------*/
/*--------------- CONTACT SECTION --------------*/
#contact {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    height: auto;
    background-color: #333333; /* Floods full viewport grid area cleanly */
}

#contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

#contact p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 0px;
    color: #fff;
    line-height: 1.6; /* Standard layout line-height baseline anchor */
}

/* Integrates native mobile click-to-call without disrupting visual text weights */
#contact .contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: inherit;
}

#contact .contact-link:hover,
#contact .contact-link:focus {
    text-decoration: underline;
}
/*---------------- End Contact Homepage ---------------*/




/*-- Director Page --*/
#director {
    padding-top: 60px;          /* Increased padding for an elegant editorial feel */
    padding-bottom: 60px;
    background-color: #333333;  /* Spans 100% full-screen width perfectly */
    width: 100%;
    height: auto;
}

#director h2 {
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    color: #fff;
    margin-top: 0;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

#director h3 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;  /* Clean professional sub-header style */
    color: #56E837;             /* Uses your corporate accent purple for typographic contrast */
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

#director .director-img {
    margin-bottom: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Soft image lift over the light background */
}

/* Container for text layout alignment safety */
#director .director-bio {
    max-width: 100%;
}

#director p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-align: left;
    text-transform: none;
    color: #fff;             /* Slightly softened black to reduce eye strain on long reads */
    line-height: 1.75;          /* Optimized line height for screen reading */
    margin-bottom: 22px;
}

/* Styled personal quote block */
#director .director-quote {
    margin: 40px 0 10px 0;
    padding: 10px 20px 10px 25px;
    border-left: 4px solid #56E837; /* Brand purple accent line anchoring the quote */
    background-color: rgba(49, 1, 159, 0.03); /* Extremely soft tinted background plate */
}

#director .director-quote p {
    font-style: italic;
    font-size: 19px;
    color: #f2f2f2;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Adaptive Viewports */
@media(max-width:768px) {
    #director {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    
    #director h2 {
        font-size: 28px;
        text-align: center;
    }
    
    #director h3 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    #director p {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 18px;
    }
    
    #director .director-quote {
        padding: 5px 15px 5px 15px;
        margin: 30px 0 0 0;
    }
    
    #director .director-quote p {
        font-size: 17px;
    }
}
/*-- End Director --*/





/*--------------- FOOTER SECTION --------------*/
footer {
    padding: 50px 0;
    background-color: #191819; /* Rich indigo brand color platform anchor */
}

/* Decoupled layout rule for responsive brand asset framing */
footer .footer-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    display: inline-block;
}

footer h3 {
    font-size: 18px;
    font-family: "Montserrat", sans-serif; /* Fixed string capitalization & system fallback stack */
    font-weight: 500;
    text-align: center;
    color: #f2f2f2;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer p {
    margin: 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif; /* Fixed string capitalization & system fallback stack */
    font-weight: 300;
    color: #f2f2f2;
    line-height: 1.6;
}

/* Abstracted structural margins replacing inline style declarations */
footer .footer-legal {
    margin-top: 20px;
}

footer .footer-copyright {
    margin-top: 20px;
}

footer a {
    color: #f2f2f2;
    text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

footer a:hover,
footer a:focus {
    text-decoration: underline;
    color: #a6a6a6;
}
/*-- End Footer --*/




body {
    width: 100%;
    height: 100%;
    font-family: montserrat;
    color: #fff;
    background-color: #000;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    color: #288DBC;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #a6a6a6;
}

.light {
    font-weight: 400;
}

/*--------------------------------------------------
  1. USER BASE NAV & JUSTIFIED GRID LAYOUTS
---------------------------------------------------*/

@media (max-width: 767px) {
    /* Ensures the brand text on mobile displays beautifully in white */
    .navbar-custom .navbar-text {
        color: #f2f2f2 !important;
    }
    
    /* Forces the burger-menu text string to remain visible white */
    .navbar-custom .navbar-toggle span {
        color: #f2f2f2 !important;
    }
}

.nav-justified {
    width: 98%;
}

.nav-justified > li {
    float: none;
}

@media (min-width: 768px) {
    .nav-justified {
        width: 97%;
    }
}

/*--------------------------------------------------
  2. NAVBAR CUSTOM GLOBAL STRUCTURE
---------------------------------------------------*/

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid #56E837;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif; /* Standardized format capitalization */
    background-color: #000101;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    text-transform: none;
    font-family: "Montserrat", sans-serif;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #f2f2f2;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

/* Base Top-Level Link Definitions */
.navbar-custom a {
    color: #f2f2f2;
    font-weight: 500;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    text-transform: none;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out, color .3s ease-in-out;
    -moz-transition: background .3s ease-in-out, color .3s ease-in-out;
    transition: background .3s ease-in-out, color .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: #a6a6a6;
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

/* Standard Active Page Hooks */
.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: #0d0d0d;
}

/*--------------------------------------------------
  3. INTEGRATED DIRECTORS DROPDOWN EXTENSIONS
---------------------------------------------------*/
/* Prevents menu box breaking across justified structural grids on desktop viewports */
@media (min-width: 768px) {
    .navbar-custom .nav li.dropdown {
        position: relative;
    }
}

/* Main Dropdown Container Box styling */
.navbar-custom .dropdown-menu {
    background-color: #333333;
    border: 2px solid #56E837; /* Synchronizes layout framing accents */
    min-width: 260px;
    padding: 6px 0;
    margin-top: 1px;
    border-radius: 4px;
    text-transform: none; /* Keeps nested personnel profiles naturally legible */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Nested Dropdown Profile Item Typography Definitions */
.navbar-custom .dropdown-menu > li > a {
    font-size: 16px; /* Scaled slightly down from 20px so long structural title nodes display beautifully */
    font-weight: 600;
    color: #f2f2f2 !important;
    padding: 10px 20px;
    line-height: 1.4;
    text-align: left;
    display: block;
}

/* Sub-Role Meta Description tags */
.navbar-custom .dropdown-menu > li > a .dropdown-title {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #a6a6a6;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Interaction Hover & Focus states inside active drawer list nodes */
.navbar-custom .dropdown-menu > li > a:hover,
.navbar-custom .dropdown-menu > li > a:focus {
    background-color: #000101 !important; /* Brand Identity Purple fill highlighting */
    color: #ffffff !important;
    background-image: none; /* Erases legacy default Bootstrap gradient masks */
}

.navbar-custom .dropdown-menu > li > a:hover .dropdown-title {
    color: #f2f2f2;
}

/* Structural Menu Line Divider rules */
.navbar-custom .dropdown-menu .divider {
    background-color: #56E837;
    margin: 4px 0;
}

/* Keeps top navigation bar node visually shaded while panel drawer window is actively open */
.navbar-custom .nav li.open > a,
.navbar-custom .nav li.open > a:hover,
.navbar-custom .nav li.open > a:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Custom styling for caret icon */
.navbar-custom .caret {
    border-top-color: #f2f2f2;
    margin-left: 4px;
}
.navbar-custom a:hover .caret {
    border-top-color: #a6a6a6;
}

/*--------------------------------------------------
  4. MOBILE RESPONSIVE CONSTRAINTS & COLLAPSES
---------------------------------------------------*/
@media (max-width: 767px) {
    /* Transforms floating absolute panel drawers into fluid relative expanding list views */
    .navbar-custom .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        background-color: #04000d; /* Slightly deeper tone block layout for tracking contrast */
        border: none;
        border-left: 4px solid #31019F; /* Provides clean visual nesting alignment indicators */
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
    }
    
    .navbar-custom .dropdown-menu > li > a {
        text-align: center; /* Aligns neatly with standard central text flows across mobile screens */
        padding: 12px 20px;
    }
}

/* Core Desktop Scroll Tracking Effects (Keep Last) */
@media(min-width:768px) {
    .navbar-custom {
        padding: 0px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: #000101;
        border-bottom: 2px solid #56E837;
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #000101;
        border-bottom: 2px solid #56E837;
    }
}
@media (max-width: 767px) {
    /* 1. REMOVE BOOTSTRAP'S HEIGHT CAP: Forces the entire menu to expand naturally */
    .navbar-custom .navbar-collapse,
    .navbar-custom .navbar-main-collapse {
        max-height: none !important;
    }

    /* 2. OPTIONAL TIGHTENING: Trims down the vertical padding slightly on mobile 
       so the menu is compact and neat without wasting screen real estate */
    .navbar-custom .dropdown-menu > li > a {
        padding: 8px 20px !important; /* Dropped from 12px to 8px */
    }
    
    .navbar-custom .dropdown-menu > li > a .dropdown-title {
        margin-top: 1px !important; /* Snugs the sub-title closer to the name */
    }
}
/*-- End Nav --*/





.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background: url(../img/header.jpg) no-repeat top center fixed;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
  font-family: montserrat;
  font-weight: 300;
}

@media(min-width:768px) {
    .intro {
        height: 70%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}



.content-section {
    padding-top: 100px;
}

.download-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 250px;
    }

    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    border-radius: 30px;
    text-transform: none;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #56E837;
    color: #000;
    background-color: #56E837;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #0d0d0d;
    outline: 0;
    color: #fff;
    background-color: #0d0d0d;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}



::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}
