


@import url('https://fonts.googleapis.com/css?family=Droid+Sans:400,700&subset=latin,latin-ext');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext');
@import url('https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic&subset=latin,latin-ext');


body {
    font-family: 'Droid Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==');
}


* {
    box-sizing: border-box;
}


.header {
    background: #2a2a2a;
    border-bottom: 1px solid #444;
    padding: 10px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #da4444;
    font-family: 'Oswald', sans-serif;
}

.social-info {
    font-size: 14px;
    color: #ccc;
}


.nav {
    background: #333333;
    border-bottom: 1px solid #555;
    padding: 15px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    font-family: 'Droid Sans', Arial, sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #da4444;
    font-weight: bold;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border: 1px solid #444;
}

.content {
    line-height: 1.6;
    color: #ffffff;
}


.footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #444;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
}


.paragraph {
    text-align: center;
    line-height: 1.6;
    margin: 20px 0;
    font-family: 'Droid Sans', Arial, sans-serif;
    color: #ffffff;
}

.paragraph strong {
    color: #da4444;
}

.paragraph h1 {
    color: #da4444;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.paragraph h2 {
    color: #da4444;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.paragraph p {
    margin: 15px 0;
    color: #ffffff;
}

.paragraph a {
    color: #da4444;
    text-decoration: underline;
}

.paragraph a:hover {
    color: #ff6666;
}


.team-photos {
    margin: 40px 0;
}

.team-photos h2 {
    color: #da4444;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
}

.wsite-multicol {
    margin: 30px 0;
}

.wsite-multicol-table-wrap {
    margin: 0 -15px;
}

.wsite-multicol-table {
    width: 100%;
    border-collapse: collapse;
}

.wsite-multicol-col {
    width: 50%;
    padding: 0 15px;
    vertical-align: top;
}

.wsite-image {
    text-align: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8);
    border: 2px solid #444;
    background: #333;
}

.wsite-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    display: block;
}

.wsite-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(218, 68, 68, 0.3);
}


@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .wsite-multicol-col {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
    
    .wsite-multicol-table {
        display: block;
    }
    
    .wsite-multicol-tr {
        display: block;
    }
    
    .container {
        padding: 20px;
    }
    
    .paragraph h1 {
        font-size: 24px;
    }
    
    .paragraph h2 {
        font-size: 20px;
    }
}


body.tall-header-page.wsite-theme-light.wsite-page-index {
    font-family: 'Droid Sans', Arial, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
}


.spectre-base, .spectre-base * {
    color: inherit !important;
    background: transparent !important;
}


:root {
    --arizona-red: #da4444;
    --arizona-light-red: #ff6666;
    --text-light: #ffffff;
    --text-muted: #ccc;
    --background-dark: #1a1a1a;
    --background-darker: #2a2a2a;
    --background-nav: #333333;
    --border-dark: #444;
    --border-darker: #555;
}


h1, h2, h3, h4, h5, h6 {
    color: #da4444 !important;
}

p, div, span, a {
    color: #ffffff !important;
}

a {
    color: #da4444 !important;
}

a:hover {
    color: #ff6666 !important;
}


.imageGallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.imageGallery > div {
    flex: 1 1 calc(20% - 10px);
    min-width: 200px;
    max-width: 300px;
}

.galleryImageHolder {
    position: relative;
    width: 100%;
    padding-bottom: 75%; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8);
    border: 2px solid #444;
    background: #333;
}

.galleryInnerImageHolder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galleryImageHolder img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

.galleryImageHolder img:hover {
    transform: scale(1.05);
}

.galleryImageBorder {
    border: none !important;
    padding: 0 !important;
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    top: auto !important;
    left: auto !important;
}


.imageGallery a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.imageGallery a:hover {
    text-decoration: none;
}


@media (max-width: 1200px) {
    .imageGallery > div {
        flex: 1 1 calc(25% - 10px);
    }
}

@media (max-width: 900px) {
    .imageGallery > div {
        flex: 1 1 calc(33.333% - 10px);
    }
}

@media (max-width: 600px) {
    .imageGallery > div {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }
}

@media (max-width: 400px) {
    .imageGallery > div {
        flex: 1 1 100%;
        min-width: auto;
    }
}


input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    transition: all 0.3s ease !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus, textarea:focus {
    border-color: #da4444 !important;
    box-shadow: 0 0 10px rgba(218, 68, 68, 0.3) !important;
    outline: none !important;
}

button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(218, 68, 68, 0.4) !important;
    background: linear-gradient(135deg, #ff6666, #da4444) !important;
}

button[type="submit"]:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(218, 68, 68, 0.3) !important;
}


.recruitment-form-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4) !important;
}


.sponsor-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important;
}

.sponsor-item img {
    transition: transform 0.3s ease;
}

.sponsor-item:hover img {
    transform: scale(1.05);
}