#main-page-container .row {
    background: #f9f9f9 none repeat scroll 0 0 !important;
}
#main-navigation {display:none;}

.porch-event .card-grid .card-body {
    padding: 20px;
}
.card.event-list .event-list-item .event-date-container {
    width: 100% !important;
}

.card.event-list {
    margin-bottom: 0;
}
    
.card.event .card-date, .card.event .card-venue, .card.event .card-cost {
    margin-bottom: 5px !important;
}
    
.event .card-lead p {
    font-family: 'Montserrat', sans-serif !important;
}
.label-flag {
    color: var(--primary-color) !important;
}

.card-headline, .asset-header, h1, h2, h3, h4, .footer-bottom {
    font-family: 'Montserrat', sans-serif !important;
}

p a.tnt-asset-link.read-more-link {
    color: #FFF !important;
    text-transform: uppercase;
}
p a.tnt-asset-link.read-more-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

#site-footer-container {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    border-top: 0px !important;
    background-color: #1A1A1A !important;
}

/* Events asset pages */
.asset-body {
    margin-top: 20px;
}
    
.block-title .block-title-inner:before {
    box-shadow: 5rem 0 0 var(--secondary-color) inset !important;
}

.event-map-container {
    display: none;
}

.asset.event-default ul.event-dates-condensed {
    maring-left: 20px;
}

a.btn-schedule, .event-details.event-details-schedules {
    display:none;
}

@media (max-width: 768px) {
    .tnt-map-marker-alt, .tnt-clock {
        display: none;
    }
}

.asset .asset-body p {
    font-family: 'Montserrat', sans-serif !important;
}
    
/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #ffb328;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --transition: all 0.3s ease;
    --fade-duration: 0.5s;
}

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

body {
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity var(--fade-duration) ease-in-out;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 80vh;
    padding-bottom: 4rem;
}

/* Page Intro Section */
.page-intro {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.page-intro .container {
    max-width: 1020px;
    margin: 0 auto;
}

.page-intro p {
    /*font-size: 1.3rem;*/
    font-size: 2rem;
    line-height: 1.7;
    color: #555;
    margin: 0 auto;
    /*max-width: 700px;*/
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    background: transparent;
    height:100px;
}

.nav-left {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-end;
    flex: 1;
    /*padding-right: 1rem;*/
    padding-right: 4rem;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-start;
    flex: 1;
    /*padding-left: 1rem;*/
    padding-left: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .logo-img {
        max-height: 50px;
    }
}

.nav-link {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 179, 40, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
}

.donate-btn {
    background-color: var(--secondary-color);
    color: #2c3e50 !important; /* Dark text for better contrast */
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
    transition: var(--transition);
    text-shadow: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    border: 2px solid transparent;
}

.donate-btn:hover {
    background-color: transparent;
    color: white !important;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 179, 40, 0.4);
    text-shadow: 0 0 10px rgba(255, 179, 40, 0.5);
    text-decoration: none;
}

/* Events Section */
.events-section {
    padding: 5rem 5% 0 5%;
    background-color: #f9f9f9;
}

.section-title {
    font-family: 'Montserrat', sans-serif !important;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card, .card-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.event-card.featured {
    border: 2px solid var(--secondary-color);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

.event-details {
    /*padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;*/
    display: none !important; /*remove event deails from BLOX template */
}

.event-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.event-time,
.event-location {
    color: #666;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.event-time i,
.event-location i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 179, 40, 0.3);
}

.event-button, .read-more-link {
    display: flex;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    align-self: flex-start;
    border: 2px solid transparent;
    clear: both;
    width: 134px;
}

.event-button:hover, .read-more-link:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.read-more-link a:hover {
    color: var(--secondary-color);
    text-decoration:none;
}

.featured-tag, .label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: #FFF !important;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

/* About Page Hero */
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    min-height: 0 !important;
}

/* Events Page Hero */
.events-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

/* Contact Page Hero */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-main {
    padding: 5rem 0;
}

.about-section {
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-content {
    max-width: 1020px;
    margin: 0 auto;
    font-size: 1.85rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: 2rem;
}

.about-image {
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.about-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.85rem;
}

/* Footer Styles */
footer, #site-footer-container {
    background-color: #1a1a1a !important;
    color: #ffffff;
    padding: 5rem 0 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

footer::before, #site-footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffb328, #ff8a00);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    /*filter: brightness(0) invert(1);
    transition: all 0.3s ease;*/
}

.footer-logo:hover .footer-logo-img {
    /*filter: brightness(0) invert(0.9) drop-shadow(0 0 8px rgba(255, 179, 40, 0.6));*/
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
    font-size: 1.75rem;
}

.footer-links h3, .footer-contact h3 {
    color: #ffb328;
    margin-bottom: 1.8rem;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #ffb328;
    transition: width 0.3s ease;
}

.footer-links h3:hover::after, .footer-contact h3:hover::after {
    width: 60px;
}

.footer-links ul {
    /*list-style: none;*/
    padding: 0;
    margin-top: 1.5rem;
}


.footer-links li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.2rem;
}

.footer-links li::marker {
    color: #ffb328;
}

.footer-links li::before {
    /*content: '&bull;';*/
    color: #ffb328;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ffb328;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    color: #e0e0e0;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-contact p:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact i {
    color: #ffb328;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    transform: scale(1.2);
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 179, 40, 0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffb328, #ff8a00);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    color: #1a1a1a;
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 179, 40, 0.3);
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a i {
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    /*background-color: #111111;*/
    padding: 1.8rem 0;
    text-align: center;
    font-size: 1.2rem;
    color: #999999;
    border-top: 1px solid #2a2a2a;
    position: relative;
}


.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffb328, transparent);
}

.footer-bottom p {
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-bottom p a {
    color: #ffb328;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom p a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ffb328;
    transition: width 0.3s ease;
}

.footer-bottom p a:hover {
    color: #ffffff;
}

.footer-bottom p a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 0 1.5rem 2rem;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin: 0 auto 2.5rem;
        max-width: 100%;
        padding: 0;
    }
    
    .footer-logo {
        margin-bottom: 2.5rem;
    }
    
    .footer-logo-img {
        margin: 0 auto;
    }
    
    .footer-links h3, .footer-contact h3 {
        margin-bottom: 1.5rem;
    }
    
    /*.footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }*/
    
    .footer-links h3:hover::after, .footer-contact h3:hover::after {
        width: 40px;
    }
    
    .footer-links li {
        padding-left: 0;
    }
    
    .footer-links li::before {
        display: none;
    }
    
    /*.footer-contact p {
        justify-content: center;
    }*/
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo, .footer-links, .footer-contact {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-logo { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.2s; }
.footer-contact { animation-delay: 0.3s; }

/* Home Page Hero Text */
.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    font-weight: 700;
}
.hero-content p {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

/* Events Page Styles */
.events-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

/* Events Page Hero Text */
.events-hero .hero-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    font-weight: 700;
}

.events-main {
    padding: 0;
}

.events-section {
    padding: 5rem 0 0 0;
}

.events-section.upcoming-events {
    background-color: #fff;
}

.events-section.past-events {
    background-color: #f9f9f9;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Event cards now have no texture */
.event-card {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.event-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.event-card.past {
    opacity: 0.9;
}

.event-card.past:hover {
    opacity: 1;
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.event-month, .event-year {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.event-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-details h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.event-time, .event-location {
    color: #666;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.event-time i, .event-location i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.event-description {
    margin: 1.5rem 0;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

.event-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.event-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-top: 1.5rem;
    display: inline-block;
}

.event-button:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.event-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.event-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.newsletter-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .cta-button {
    margin: 0;
    white-space: nowrap;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 0;
}

.team-member {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3.5rem;
}

.team-photo i {
    opacity: 0.7;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-bio {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 4.8rem;
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-form-section {
    padding: 5rem 2rem;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Alternate background for form sections */
.contact-form-section:nth-child(even) {
    background-color: #f9f9f9;
}

.speaker-form .cta-button {
    background-color: var(--primary-color);
}

.speaker-form .cta-button:hover {
    background-color: #1a2f45;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .events-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .event-cta {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        max-width: 100%;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .logo {
        order: -1;
        margin: 1rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
}