/* Base Styles */
:root {
    --primary-color: #965AA4;
    --secondary-color: #401C5A;
    --dark-blue: #16163F;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #777777;
    --black: #000000;
    --container-width: 1170px;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --main-font: 'Work Sans', sans-serif;
    --avenir-font: 'Avenir Light', 'Avenir Next', 'Avenir', 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 90px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 80;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    height: 50px;
    width: 154px;
    display: inline;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--dark-blue);
    color: var(--white);
    border: 2px solid var(--dark-blue);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--dark-blue);
}

.btn-sponsor {
    background-color: transparent;
    border-color: transparent;
    padding: 1px 5px;
    color: var(--white);
    border: 0px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration-line: underline;
    font-family: var(--avenir-font);
    transition: transform 0.1s ease, font-size 0.1s ease;
    position: relative;
    z-index: 1;
}

.btn-sponsor:hover {
    background-color: transparent;
    color: var(--white);
    border-color: transparent;
        text-decoration-line: none;
    transform: scale(1.1);
    transform-origin: center center;
}

.arrow-icon {
    margin-left: 10px;
    font-size: 20px;
}

/* Header */
#site-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 49px;
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    position: relative;
    margin-right: 15px;
}

.nav-menu li a {
    display: block;
    padding: 15px;
    font-weight: 500;
}

.nav-menu li.active a {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 15px;
}

/* Active Dropdown Item Styling */
.dropdown-menu li.active a {
    color: var(--primary-color);
    font-weight: bold;
}

.dropdown-menu li.active {
    background-color: rgba(158, 63, 253, 0.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--dark-blue);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 760px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* Sponsor Banner */
.sponsor-banner {
    background-color: #323232;
    height: 56px;
    padding: 5px 10px;
    text-align: center;
    color: var(--white);
}

.sponsor-flex {
    display: flex;
    padding-top: 9px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.sponsor-label {
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    padding-right: 20px;
    font-family: var(--avenir-font);
}

.sponsor-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--avenir-font);
}

.sponsor-button-container {
    position: relative;
    margin: 0 5px;
    height: 30px; 
    display: flex;
    align-items: center;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.news-tag {
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.partnership-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--avenir-font);
}

.sponsor-logo {
    margin: 30px auto;
    max-width: 225px;
}

.partner-quotes {
    margin-top: 20px;
    text-align: left;
    font-family: var(--avenir-font);
    font-weight: 300;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.purple-circle {
    background-color: var(--primary-color);
    border-radius: 50%;
}

.purple-line {
    position: relative;
    background-color: var(--secondary-color);
}

.purple-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: translateY(-50%) rotate(45deg);
}

.purple-square {
    background-color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center 40%; 
    position: relative;
    color: var(--white);
    text-align: center;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); 
}

.stats-title {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
    font-size: 36px;
}

.stats-row {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.stat-plus {
    font-size: 50px;
    margin-left: 5px;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.about-content, .connect-content {
    padding: 20px 0;
}

.social-links {
    display: flex;
    margin: 20px 0 30px;
}

.social-icon {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.partner-logo {
    display: block;
    margin: 15px 30px;
    max-width: 200px;
    height: 80px;
    transition: var(--transition);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.main-partner {
    max-width: 400px;
}

/* Footer */
#site-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

/* Enhanced Header Styles */
#site-header {
    transition: all 0.3s ease;
}

#site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Make the logo container flexible but preserve space */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0; /* Removes extra space below image */
}

.logo img {
    height: auto;
    transition: all 0.3s ease;
    display: block; /* Prevents image spacing issues */
}

/* Give more space between logo and navigation on smaller screens */
@media only screen and (max-width: 991px) {
    .header-container {
        padding: 0 15px;
    }
}
/* Enhanced Sponsor Banner Styles */
.sponsor-banner {
    background-color: #323232;
    min-height: 56px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.sponsor-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sponsor-label {
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    padding-right: 20px;
    font-family: var(--avenir-font);
    flex-shrink: 0; /* Prevents the text from shrinking */
}

.sponsor-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-family: var(--avenir-font);
}

.sponsor-button-container {
    position: relative;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

.btn-sponsor {
    background-color: transparent;
    border-color: transparent;
    padding: 5px 10px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration-line: underline;
    font-family: var(--avenir-font);
    transition: transform 0.1s ease, color 0.1s ease;
    white-space: nowrap;
}

.btn-sponsor:hover {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
    text-decoration-line: none;
    transform: scale(1.05);
}