/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ch-primary: #A4234C;
    --ch-secondary: #681C32;
    --ch-black: #000000;
    --ch-warm-gray: #D7D1CA;
    --pure-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #A4234C 0%, #681C32 100%);
    --gradient-secondary: linear-gradient(135deg, #681C32 0%, #A4234C 100%);
    --gradient-accent: linear-gradient(135deg, #D7D1CA 0%, #ffffff 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-brand: 0 8px 25px -5px rgba(164, 35, 76, 0.15);
    
    /* The H Hotel Colors */
    --h-primary: #ebe9df;
    --h-terracotta: #a85443;
    --h-brown: #502c1d;
    --h-teal: #003b4c;
    --h-gold: #bc955b;
    --h-warm-gray: #b6ada5;
    --h-gradient: linear-gradient(135deg, #a85443 0%, #502c1d 100%);
    --h-shadow: 0 8px 25px -5px rgba(168, 84, 67, 0.15);
}

body {
    font-family: 'Abhaya Libre', serif;
    line-height: 1.7;
    color: var(--ch-black);
    background-color: var(--pure-white);
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Header and Navigation */
.header {
    background: var(--ch-black);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--ch-black);
    box-shadow: var(--shadow-medium);
}

.nav {
    padding: 0 40px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-logo {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: none !important;
    transform: none !important;
}

.main-logo:hover {
    transform: none !important;
    scale: none !important;
    filter: brightness(0) invert(1) !important;
}

.brand-divider {
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, var(--ch-warm-gray), transparent);
    opacity: 0.6;
}

.summit-year {
    font-family: 'Heebo', sans-serif;
    color: var(--pure-white);
    font-size: 0.95rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.host-hotel-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(215, 209, 202, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--ch-primary);
}

.host-label {
    font-size: 0.75rem;
    color: var(--ch-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.host-logo-img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.host-hotel-logo:hover .host-logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: 'Abhaya Libre', serif;
    text-decoration: none;
    color: var(--ch-warm-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--ch-primary);
    background: rgba(164, 35, 76, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ch-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.cta {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-brand);
}

.nav-link.cta:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.nav-link.cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 8rem 0 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('assets/h-hotel-interior.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

.hero-logo {
    max-width: 450px;
    width: 75%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(1px);
}

/* Event Details Section */
.event-details-section {
    padding: 3rem 2rem;
}


.event-details-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 4rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 2px 16px rgba(164, 35, 76, 0.1);
    /* backdrop-filter: blur(10px); - Removed to prevent text distortion on mobile */
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-details-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2), 0 4px 20px rgba(164, 35, 76, 0.15);
}

.event-info-group {
    text-align: center;
    flex: 1;
    position: relative;
    transition: transform 0.2s ease;
}

.event-info-group:hover {
    transform: scale(1.02);
}


.info-label {
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    position: relative;
}

.info-label::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 1px;
}

.info-value {
    font-family: 'Abhaya Libre', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    opacity: 0.8;
    font-style: italic;
}

.event-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    height: 80px;
    position: relative;
}

.event-divider::before {
    content: '';
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
                transparent, 
                rgba(164, 35, 76, 0.3) 20%, 
                rgba(164, 35, 76, 0.6) 50%, 
                rgba(164, 35, 76, 0.3) 80%, 
                transparent);
    position: absolute;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 0 0 5px rgba(164, 35, 76, 0.2);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-self: flex-start;
    box-shadow: var(--shadow-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}



/* Section Styles */
.section-title {
    font-family: 'Heebo', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--ch-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--ch-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.3rem;
    color: var(--ch-secondary);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Agenda Section */
.agenda-section {
    padding: 8rem 0 4rem 0;
    background: #fafbfc;
    position: relative;
    margin-top: 0;
}

.agenda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(164, 35, 76, 0.02) 0%, rgba(215, 209, 202, 0.04) 100%);
}

.agenda-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.agenda-day {
    margin-bottom: 4rem;
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.agenda-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.day-title {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    letter-spacing: -0.01em;
}

.day-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ch-warm-gray);
}

.agenda-items {
    padding: 2.5rem;
}

.agenda-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.agenda-item:hover {
    background: rgba(164, 35, 76, 0.02);
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-time {
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ch-primary);
    text-align: right;
    padding-top: 0.1rem;
}

.agenda-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.agenda-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ch-black);
    margin: 0;
    line-height: 1.3;
}

.agenda-details {
    font-size: 0.9rem;
    color: var(--ch-secondary);
    font-family: 'Abhaya Libre', serif;
    line-height: 1.2;
}

.event-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-details p {
    color: var(--warm-gray);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.speaker {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    background: rgba(212, 165, 116, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
}



/* Vendors Section */
.vendors-section {
    padding: 3.5rem 0;
    background: var(--pure-white);
    position: relative;
}

.vendor-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.vendor-scroll {
    display: flex;
    gap: 3rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.vendor-logo {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.vendor-logo img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) contrast(1.2) brightness(0.8);
}

.vendor-logo img[alt="RoomKeyPMS"] {
    max-height: 80px;
}

.vendor-logo img[alt="Adams Keegan"] {
    max-height: 80px;
}


/* Venue Section - The H Hotel Branding */
.venue-section {
    padding: 2rem 0;
    background: var(--h-primary);
    position: relative;
}

.venue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('assets/chem_pattern.svg') repeat,
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(182, 173, 165, 0.1) 100%);
    background-size: 80px 80px, cover;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.venue-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.venue-logo {
    height: 160px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 25px rgba(168, 84, 67, 0.4));
}

.venue-label {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--h-brown);
    margin: 0;
    background: rgba(235, 233, 223, 0.85);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    display: inline-block;
}

.venue-content {
    position: relative;
    z-index: 2;
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: var(--h-shadow);
    border: 1px solid rgba(168, 84, 67, 0.1);
}

/* Hero Image - Large and Prominent */
.venue-hero-image {
    margin-bottom: 2rem;
}

.venue-hero-photo {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

/* Compact Info Grid */
.venue-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.venue-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--h-terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.venue-description h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--h-brown);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.venue-intro {
    font-size: 0.95rem;
    color: var(--h-warm-gray);
    line-height: 1.5;
}

/* Compact Hotel Details */
.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-group h4 {
    font-family: 'Abhaya Libre', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--h-brown);
    margin-bottom: 0.5rem;
}

.detail-group p {
    font-size: 0.85rem;
    color: var(--h-warm-gray);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

/* Integrated Travel Section - Inside White Card */
.travel-section-integrated {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ch-warm-gray);
}

.travel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.travel-column {
    display: flex;
    flex-direction: column;
}

.travel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--ch-primary);
}

.travel-icon {
    font-size: 1.2rem;
    color: var(--ch-primary);
}

.travel-header h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ch-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.travel-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.travel-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.25rem 0;
}

.travel-item.primary {
    border-left: 2px solid var(--ch-primary);
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

.travel-item.secondary {
    border-left: 2px solid var(--ch-secondary);
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

.item-name {
    font-family: 'Abhaya Libre', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ch-black);
}

.item-detail {
    font-family: 'Heebo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ch-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Functional Map Container */
.location-map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--ch-warm-gray);
    position: relative;
    z-index: 10;
}

.map-header {
    background: var(--ch-primary);
    color: var(--pure-white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-header h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.map-actions {
    display: flex;
    gap: 0.75rem;
}

.map-btn {
    background: var(--pure-white);
    color: var(--ch-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.map-btn:hover {
    background: var(--ch-warm-gray);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    font-size: 0.9rem;
}

.location-map {
    position: relative;
}

.location-map iframe {
    display: block;
    border: none;
}



.venue-info-section {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

.venue-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.amenity-group h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ch-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.amenity-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-group li {
    font-family: 'Abhaya Libre', serif;
    font-size: 0.9rem;
    color: var(--ch-black);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    line-height: 1.4;
}

.amenity-group li:last-child {
    border-bottom: none;
}

.hotel-info {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hotel-info h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ch-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.info-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-family: 'Heebo', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ch-secondary);
}

.info-text {
    font-family: 'Abhaya Libre', serif;
    font-size: 0.85rem;
    color: var(--ch-black);
    line-height: 1.3;
}

.map-embed-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--h-shadow);
    border: 2px solid rgba(168, 84, 67, 0.1);
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.map-directions {
    text-align: center;
    margin-top: 1rem;
}

.venue-caption {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(168, 84, 67, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(168, 84, 67, 0.2);
}

.venue-caption span {
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--h-brown);
    font-weight: 400;
}

/* Travel Section within Venue */
.travel-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(168, 84, 67, 0.2);
    position: relative;
    z-index: 2;
}

.travel-title {
    color: var(--h-brown);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.travel-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.travel-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.travel-card {
    background: var(--pure-white);
    border-radius: 12px;
    border: 1px solid rgba(168, 84, 67, 0.15);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.travel-card.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--h-terracotta);
}

.travel-card.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--h-teal);
}

.travel-card:hover {
    box-shadow: var(--h-shadow);
    transform: translateY(-2px);
}

.travel-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.travel-header h4 {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--h-brown);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.distance {
    font-size: 0.9rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
}

.distance.primary {
    color: var(--h-terracotta);
}

.distance.secondary {
    color: var(--h-teal);
}

.travel-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.travel-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.method-label {
    font-family: 'Abhaya Libre', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ch-black);
}

.method-desc {
    font-size: 0.85rem;
    color: var(--h-warm-gray);
    font-family: 'Heebo', sans-serif;
}

.driving-directions {
    background: var(--pure-white);
    border-radius: 12px;
    border: 1px solid rgba(168, 84, 67, 0.15);
    padding: 2rem;
}

.driving-directions h4 {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--h-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.city-directions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(168, 84, 67, 0.1);
}

.direction-item:last-child {
    border-bottom: none;
}

.direction-item .city {
    font-family: 'Abhaya Libre', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--h-brown);
}

.direction-item .drive-time {
    font-size: 0.9rem;
    color: var(--h-terracotta);
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--h-shadow);
}

.travel-option strong {
    color: var(--ch-black);
    font-size: 1.2rem;
    font-weight: 700;
}

.travel-option p {
    color: var(--ch-secondary);
    margin: 0.25rem 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.parking-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--ch-primary);
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.parking-info h4 {
    color: var(--ch-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.parking-info p {
    color: var(--ch-black);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #2c5aa0;
    font-size: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #666;
}

.directions-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.directions-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #2c5aa0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.emergency-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dc3545;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.emergency-contact h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: #666;
    margin-bottom: 1rem;
}

.emergency-number {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #dc3545 !important;
}

.emergency-number a {
    color: #dc3545;
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--ch-black);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-hero-image {
    margin-bottom: 1.5rem;
}


.footer-hero-img:hover {
    opacity: 1;
}

.footer-hero-img {
    height: 160px;
    width: auto;
    max-width: 400px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.9;
    box-shadow: var(--shadow-medium);
    transition: opacity 0.3s ease;
}

.footer-previous-summits {
    margin-top: 2rem;
}

.previous-summits-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.previous-summit-logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

.previous-summit-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
    filter: grayscale(0);
}

.footer-brand h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: 'Abhaya Libre', serif;
    color: var(--ch-warm-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--ch-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--ch-warm-gray);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--ch-primary);
}

/* QR Code Styles */
.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
}

.qr-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.2);
}

.qr-link:hover {
    background: rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: white;
    padding: 8px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.qr-label {
    font-family: 'Abhaya Libre', serif;
    font-size: 0.8rem;
    color: var(--ch-warm-gray);
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid var(--ch-secondary);
    padding-top: 1rem;
    text-align: center;
    color: var(--ch-warm-gray);
    font-family: 'Abhaya Libre', serif;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav-container {
        padding: 1.5rem 0;
        margin: 0 auto;
        max-width: none;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        gap: 1rem;
    }

    .main-logo {
        height: 40px;
        max-width: 150px;
    }

    .summit-year {
        font-size: 0.85rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: var(--ch-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--ch-secondary);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        padding: 12px 16px;
        margin-right: 0;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
    }

    .nav-toggle:active {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .bar {
        width: 30px;
        height: 3px;
        margin: 4px 0;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero {
        background-attachment: scroll;
        padding-top: 10rem; /* Increased to account for fixed nav header */
    }

    .hero-content {
        padding: 0 20px;
        height: 100vh;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 90%;
    }
    
    .event-details-section {
        padding: 3rem 0;
    }
    
    .event-details-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .detail-item i {
        font-size: 1.3rem;
    }

    .venue-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .time {
        font-size: 0.9rem;
    }

    .vendors-grid {
        grid-template-columns: 1fr;
    }

    .venue-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.15rem;
        margin-bottom: 3rem;
    }

    .hero-details {
        align-items: center;
    }

    .detail-item {
        justify-content: center;
    }

    .cta-button {
        align-self: center;
    }
    
    /* Enhanced Event Details Mobile */
    .event-details-banner {
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .event-info-group {
        min-width: 100%;
    }
    
    
    .info-value {
        font-size: 1.8rem;
    }
    
    .info-subtitle {
        font-size: 0.9rem;
    }
    
    .event-divider {
        width: 80%;
        height: 1px;
        margin: 0;
        justify-content: center;
    }
    
    .event-divider::before {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, 
                    transparent, 
                    rgba(164, 35, 76, 0.3) 20%, 
                    rgba(164, 35, 76, 0.6) 50%, 
                    rgba(164, 35, 76, 0.3) 80%, 
                    transparent);
    }
    
    .divider-dot {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 8rem 0 2rem 0; /* Increased top padding for mobile nav */
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .agenda-items,
    .contact-card,
    .vendor-card {
        padding: 1.5rem;
    }

    .venue-placeholder,
    .map-placeholder {
        height: 300px;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Vendor Carousel Styles */
.vendor-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 60px;
}

.vendor-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem 0;
}

.vendor-slide {
    min-width: 300px;
    flex-shrink: 0;
    text-align: center;
    background: var(--pure-white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(164, 35, 76, 0.08);
    position: relative;
    overflow: hidden;
}

.vendor-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vendor-slide:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-large);
    border-color: var(--ch-primary);
}

.vendor-slide:hover::before {
    transform: scaleX(1);
}

.vendor-logo-placeholder {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vendor-logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.vendor-slide:hover .vendor-logo-placeholder::before {
    left: 100%;
}

.vendor-slide:hover .vendor-logo-placeholder {
    background: var(--gradient-secondary);
    transform: scale(1.05) rotateY(5deg);
}

.vendor-slide h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ch-black);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    background: rgba(164, 35, 76, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--ch-secondary);
    transform: scale(1.1);
    box-shadow: var(--shadow-large);
}

.carousel-btn.prev {
    margin-left: -25px;
}

.carousel-btn.next {
    margin-right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(164, 35, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--ch-primary);
    transform: scale(1.2);
}

/* Mobile responsive styles for footer logos */
@media (max-width: 768px) {
    .footer-hero-img {
        height: 120px;
        max-width: 280px;
    }
    
    .previous-summit-logo {
        height: 60px;
        max-width: 120px;
    }
    
    /* QR Code mobile styles */
    .footer-qr {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .qr-code {
        width: 60px;
        height: 60px;
    }
    
    .qr-label {
        font-size: 0.7rem;
    }
    
    .previous-summits-logos {
        gap: 1rem;
    }
    
    /* Mobile agenda responsive styles */
    .agenda-item {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .agenda-time {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .agenda-title {
        font-size: 1rem;
    }
    
    .agenda-details {
        font-size: 0.85rem;
    }
    
    /* Mobile event details banner */
    .event-details-section {
        bottom: 40px;
        padding: 0 1rem;
    }
    
    .event-details-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        max-width: 90%;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        backdrop-filter: blur(12px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }
    
    .event-divider {
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
        margin: 0 auto;
    }
    
    .info-label {
        font-size: 0.8rem;
        /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8); - Removed text shadow */
    }
    
    .info-value {
        font-size: 1.4rem;
        /* text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9); - Removed text shadow */
    }
    
    .agenda-section {
        padding-top: 6rem;
    }
    
    /* Mobile travel section */
    .travel-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .travel-card {
        padding: 1.5rem;
    }
    
    .travel-header h4 {
        font-size: 1.2rem;
    }
    
    .travel-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }
    
    .driving-directions {
        padding: 1.5rem;
    }
    
    .travel-title {
        font-size: 1.5rem;
    }
    
    /* Mobile venue section */
    .venue-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .venue-logo {
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .venue-label {
        font-size: 1.3rem;
        padding: 0.4rem 1.5rem;
    }
    
    .venue-content {
        padding: 1.5rem;
    }
    
    .venue-hero-photo {
        height: 200px;
    }
    
    .venue-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-description h3 {
        font-size: 1.3rem;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .travel-header {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    
    .travel-header h4 {
        font-size: 0.75rem;
    }
    
    .travel-icon {
        font-size: 1rem;
    }
    
    .item-name {
        font-size: 0.85rem;
    }
    
    .item-detail {
        font-size: 0.7rem;
    }
    
    /* Mobile Map Styles */
    .map-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .map-header h4 {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .map-actions {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .map-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    
    .info-item {
        grid-template-columns: 70px 1fr;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .info-label {
        font-size: 0.75rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
}

/* Sponsors Page Styles */
.sponsors-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ch-primary) 0%, var(--ch-secondary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sponsors-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/chem_pattern.svg') repeat;
    opacity: 0.05;
}

.sponsors-hero-content {
    position: relative;
    z-index: 2;
}

.sponsors-hero-badge {
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.page-title {
    font-family: 'Heebo', sans-serif;
    font-size: 3rem;
    color: var(--pure-white);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 1.25rem;
    color: var(--ch-warm-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-info-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    color: var(--pure-white);
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.event-separator {
    color: var(--ch-warm-gray);
    font-size: 1.2rem;
}

/* Sponsor Tier Sections */
.sponsor-tier {
    padding: 80px 0;
    position: relative;
}

.sponsor-tier::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ch-warm-gray), transparent);
}

.sponsor-tier:last-of-type::after {
    display: none;
}

.tier-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Heebo', sans-serif;
    position: relative;
    border: 2px solid;
    background: var(--pure-white);
    transition: all 0.4s ease;
}

.tier-badge i {
    font-size: 1.25rem;
    transition: all 0.4s ease;
}

.tier-badge h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Diamond Tier */
.diamond-tier {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.diamond-tier::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(185, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tier-badge.diamond {
    border-color: #7dd3fc;
    color: #0369a1;
    background: #f0f9ff;
    box-shadow: 0 4px 20px rgba(125, 211, 252, 0.2);
}

.tier-badge.diamond i {
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.9; }
}

.diamond-sponsors-grid {
    display: flex;
    justify-content: center;
    position: relative;
}

.diamond-sponsor-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    position: relative;
    border: 1px solid rgba(125, 211, 252, 0.2);
    transition: all 0.4s ease;
}

.diamond-sponsor-card::before {
    content: 'PREMIER PARTNER';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Heebo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #0369a1;
    opacity: 0.6;
}

.diamond-sponsor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border-color: rgba(125, 211, 252, 0.4);
}

.sponsor-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--pure-white);
    width: 100%;
    min-height: 180px;
}

.sponsor-logo-wrapper.diamond {
    background: var(--pure-white);
    border: none;
    padding: 3rem;
    margin-top: 1rem;
}

.sponsor-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(10%);
    transition: all 0.4s ease;
}

.diamond-sponsor-card .sponsor-logo {
    max-height: 180px;
    filter: none;
}

.sponsor-logo-wrapper:hover .sponsor-logo {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Special background for white/light logos */
.needs-dark-bg {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb) !important;
    border: 1px solid #d1d5db;
}

.silver-sponsor-logo.needs-dark-bg {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 0.75rem;
    border-radius: 8px;
}

.sponsor-details h3 {
    font-family: 'Old Standard TT', serif;
    font-size: 2.5rem;
    margin: 2rem 0 0;
    color: var(--ch-black);
    font-weight: 400;
}

.sponsor-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.sponsor-contact {
    display: flex;
    gap: 1rem;
}

.sponsor-website,
.sponsor-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--ch-primary);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sponsor-website:hover,
.sponsor-email:hover {
    background: var(--ch-secondary);
    transform: translateY(-2px);
}

/* Platinum Tier */
.platinum-tier {
    background: #fafafa;
}

.tier-badge.platinum {
    border-color: #94a3b8;
    color: #475569;
    background: #f8fafc;
}

.platinum-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.platinum-sponsor-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.platinum-sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.sponsor-logo-wrapper.platinum {
    background: var(--pure-white);
    border: none;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platinum-sponsor-card h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ch-black);
}

.sponsor-tagline {
    font-family: 'Abhaya Libre', serif;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
}

.sponsor-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--ch-primary);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sponsor-link:hover {
    background: var(--ch-secondary);
    transform: translateY(-2px);
}

/* Gold Tier */
.gold-tier {
    background: #fffef9;
}

.tier-badge.gold {
    border-color: #f59e0b;
    color: #92400e;
    background: #fffbeb;
}

.gold-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.gold-sponsor-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #fed7aa;
    transition: all 0.4s ease;
}

.gold-sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #fbbf24;
}

.sponsor-logo-wrapper.gold {
    background: var(--pure-white);
    border: none;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.gold-sponsor-card h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--ch-black);
}

.gold-sponsor-card p {
    font-family: 'Abhaya Libre', serif;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Silver Tier */
.silver-tier {
    background: #fafafa;
}

.tier-badge.silver {
    border-color: #9ca3af;
    color: #4b5563;
    background: #f9fafb;
}

.silver-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.silver-sponsor-card {
    background: var(--pure-white);
    border-radius: 10px;
    padding: 1.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.silver-sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.silver-sponsor-logo {
    width: 140px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.silver-sponsor-card h5 {
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ch-black);
    margin: 0;
    text-align: left;
}

/* Bronze Tier */
.bronze-tier {
    background: #fffdfb;
}

.tier-badge.bronze {
    border-color: #d97706;
    color: #92400e;
    background: #fef3c7;
}

.bronze-sponsors-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.bronze-sponsor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--pure-white);
    border-radius: 8px;
    border: 1px solid #fde68a;
    transition: all 0.4s ease;
}

.bronze-sponsor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    border-color: #fbbf24;
}

.bronze-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.bronze-sponsor-item span {
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    color: var(--ch-black);
    font-weight: 500;
}

/* Sponsorship CTA Section */
.sponsorship-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ch-primary) 0%, var(--ch-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.sponsorship-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/chem_pattern.svg') repeat;
    opacity: 0.05;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-family: 'Old Standard TT', serif;
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: 'Abhaya Libre', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--ch-warm-gray);
    margin-bottom: 2rem;
}

.accent-text {
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    font-weight: 400;
}

.sponsor-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--pure-white);
    color: var(--ch-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sponsor-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--ch-warm-gray);
    color: var(--ch-black);
}

/* Responsive Design for Sponsors Page */
@media (max-width: 1024px) {
    .diamond-sponsor-card {
        padding: 3rem 2rem;
    }
    
    .platinum-sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gold-sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .silver-sponsors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sponsors-hero {
        padding: 120px 0 60px;
    }
    
    .sponsors-hero-badge {
        width: 80px;
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .event-info-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .event-separator {
        display: none;
    }
    
    .sponsor-tier {
        padding: 60px 0;
    }
    
    .tier-header {
        margin-bottom: 2.5rem;
    }
    
    .tier-badge {
        padding: 0.5rem 1rem;
    }
    
    .tier-badge i {
        font-size: 1rem;
    }
    
    .tier-badge h2 {
        font-size: 1rem;
    }
    
    .diamond-sponsor-card {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
    }
    
    .diamond-sponsor-card::before {
        font-size: 0.65rem;
    }
    
    .sponsor-details h3 {
        font-size: 1.75rem;
    }
    
    .diamond-sponsor-card .sponsor-logo {
        max-height: 130px;
    }
    
    .platinum-sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platinum-sponsor-card {
        padding: 2rem 1.5rem;
    }
    
    .gold-sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .gold-sponsor-card {
        padding: 1.5rem 1rem;
    }
    
    .silver-sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .silver-sponsor-card {
        padding: 1.25rem;
    }
    
    .bronze-sponsors-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .bronze-sponsor-item {
        padding: 1rem;
    }
    
    .sponsor-logo {
        max-height: 100px;
    }
}