/* Inner Pages Styles - Extends main styles.css */

/* Common Page Header Styles */
.page-hero {
    background-color: var(--blue);
    background-image: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: var(--header-height);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/pattern-overlay.png');
    opacity: 0.1;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.page-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs a {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 1;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* Page-specific hero backgrounds */
.about-hero {
    background-image: linear-gradient(135deg, var(--blue) 0%, #0056a3 100%);
}

.events-hero {
    background-image: linear-gradient(135deg, #4a8eff 0%, var(--blue) 100%);
}

.news-hero {
    background-image: linear-gradient(135deg, var(--blue) 0%, #164b79 100%);
}

.partnership-hero {
    background-image: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
}

/* Common section styles */
section {
    padding: 5rem 0;
}

section:nth-child(odd) {
    background-color: var(--background);
}

section:nth-child(even) {
    background-color: var(--white);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--dark);
}

.about-image {
    position: relative;
}

.about-image .main-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    gap: 1.5rem;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Team Section */
/* Team Section - Updated with better image ratio */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    padding-top: 100%; /* Creates a 1:1 aspect ratio */
    position: relative;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Position focus at the top for portraits */
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.2rem;
    flex: 1; /* Allows info section to expand if needed */
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.position {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: var(--blue);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: auto; /* Pushes social links to bottom of info section */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .member-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--blue);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--blue);
    color: var(--white);
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--blue);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: rgba(0, 139, 189, 0.2);
    border-radius: 50%;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-date {
    position: absolute;
    top: -35px;
    color: var(--blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: 0;
}

.timeline-item:nth-child(even) .timeline-date {
    left: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/pattern-overlay.png');
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Events Page Styles */
.featured-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.featured-event-image {
    position: relative;
    height: 100%;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--blue);
    border-radius: var(--border-radius);
    padding: 0.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.event-date .year {
    font-size: 0.9rem;
}

.featured-event-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.event-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.featured-event-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.event-meta {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.event-meta i {
    margin-right: 0.5rem;
    color: var(--blue);
}

.event-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight {
    text-align: center;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--border-radius);
}

.highlight i {
    display: block;
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.highlight span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Event Filters */
.event-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.filter-group select {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    background: var(--white);
    min-width: 180px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 139, 189, 0.1);
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-date-compact {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--white);
    color: var(--blue);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.event-date-compact .month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.event-date-compact .day {
    font-size: 1.2rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.event-card-content {
    padding: 1.5rem;
}

.event-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.event-type.workshop {
    background: rgba(0, 139, 189, 0.1);
    color: var(--blue);
}

.event-type.webinar {
    background: rgba(0, 168, 101, 0.1);
    color: var(--green);
}

.event-type.hackathon {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
}

.event-type.networking {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.event-type.conference {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.event-details i {
    color: var(--blue);
    margin-right: 0.5rem;
}

.event-excerpt {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-button {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-button:hover {
    background: var(--blue);
    color: var(--white);
}

.secondary-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    margin-top: 2rem;
}

.secondary-button:hover {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
}

/* Past Events Carousel */
.past-events-carousel {
    position: relative;
    margin-top: 3rem;
}

.carousel-wrapper {
    overflow: hidden;
    margin: 0 50px;
}

.past-events-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.past-event-slide {
    min-width: calc(25% - 1.5rem);
}

.past-event-content {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.past-event-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.past-event-content img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.past-event-content h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.event-date-simple {
    padding: 0 1rem;
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.past-event-content .event-description {
    padding: 0 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.event-gallery-link {
    display: block;
    padding: 0.8rem 1rem;
    background: var(--background);
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.event-gallery-link:hover {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
}

.event-gallery-link i {
    margin-left: 0.5rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.carousel-button:hover {
    background: var(--blue);
    color: var(--white);
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

/* Host Event Section */
.host-event-section {
    background: var(--background);
}

.host-event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.host-event-text h2 {
    color: var(--blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.host-event-text p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.host-benefits {
    margin-bottom: 2rem;
}

.host-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.host-benefits i {
    color: var(--green);
    margin-right: 1rem;
}

.host-event-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .cta-button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.form-check a {
    color: var(--white);
    text-decoration: underline;
}

/* News Page Styles */
.news-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.news-categories {
    display: flex;
    gap: 1rem;
}

.category {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.category.active, .category:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.news-search {
    position: relative;
}

.news-search input {
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    width: 250px;
    transition: var(--transition);
}

.news-search input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 139, 189, 0.1);
    width: 300px;
}

.news-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

/* Featured News */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.news-featured-image {
    height: 100%;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-content {
    padding: 3rem;
}

.news-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.news-featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.news-meta i {
    margin-right: 0.5rem;
    color: var(--blue);
}

.news-excerpt {
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-source {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0.4rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.source-logo {
    height: 25px;
    object-fit: contain;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.news-card-tag.press {
    background: rgba(0, 139, 189, 0.1);
    color: var(--blue);
}

.news-card-tag.announcement {
    background: rgba(0, 168, 101, 0.1);
    color: var(--green);
}

.news-card-tag.success {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-card-meta {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.news-card-excerpt {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Press Kit Section */
.press-kit-section {
    background: var(--background);
}

.press-kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.press-kit-text h2 {
    color: var(--blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.press-kit-text p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.press-kit-downloads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px var(--shadow);
    transition: var(--transition);
}

.download-item:hover {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.download-item i {
    font-size: 1.2rem;
    color: var(--blue);
}

.download-item:hover i {
    color: var(--white);
}

.press-contact {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
}

.press-contact h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.press-kit-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Partnership Page Styles */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overview-content .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.impact-stats {
    display: flex;
    margin-top: 3rem;
    gap: 2rem;
}

.impact-stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 300px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-quote i {
    color: var(--blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-quote p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Partnership Tabs */
.partnership-tabs {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--gray);
}

.tab-button.active, .tab-button:hover {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.tab-content-container {
    position: relative;
    min-height: 400px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

.tab-text h3 {
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tab-text p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tab-text h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefits-list i {
    color: var(--green);
    margin-top: 0.2rem;
}

.featured-partners {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.featured-partners img {
    height: 40px;
    object-fit: contain;
}

/* Partnership Process */
.process-steps {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 34px;
    width: 2px;
    height: calc(100% - 60px);
    background: var(--blue);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--blue);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    flex: 1;
}

.step-content h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Partnership Inquiry Form */
.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
}

.inquiry-text {
    padding: 3rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.inquiry-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.inquiry-text p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
}

.inquiry-form {
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 139, 189, 0.1);
}

/* Current Partners Section */
.partners-categories {
    margin-top: 3rem;
}

.partner-category {
    margin-bottom: 3rem;
}

.partner-category h3 {
    color: var(--blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.partner-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 200px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

/* Text Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .overview-grid,
    .featured-event,
    .press-kit-content,
    .tab-grid,
    .inquiry-content {
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-card {
        right: -20px;
        bottom: -20px;
        width: 280px;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .overview-grid,
    .featured-event,
    .press-kit-content,
    .tab-grid,
    .host-event-content,
    .inquiry-content {
        grid-template-columns: 1fr;
    }
    
    .news-featured {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }
    
    .past-event-slide {
        min-width: calc(33.333% - 1.5rem);
    }
    
    .stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .news-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .event-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .past-event-slide {
        min-width: calc(50% - 1.5rem);
    }
    
    .impact-stats {
        flex-direction: column;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-button {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .press-kit-downloads {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .past-event-slide {
        min-width: 100%;
    }
    
    .event-date {
        top: 10px;
        left: 10px;
        padding: 0.5rem 0.8rem;
    }
    
    .event-date .month {
        font-size: 0.8rem;
    }
    
    .event-date .day {
        font-size: 1.2rem;
    }
    
    .event-date .year {
        font-size: 0.7rem;
    }
    
    .news-categories {
        flex-wrap: wrap;
    }
    
    .category {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
        padding: 0.5rem 0.8rem;
    }
    
    .news-search input {
        width: 100%;
    }
    
    .news-search input:focus {
        width: 100%;
    }
}