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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #042467;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.emory-logo {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #042467;
}

.nav-link.active {
    color: #042467;
    font-weight: 600;
    border-bottom: 2px solid #042467;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/8Y0A3277.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/8Y0A3277.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0.1px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

/* Mobile background */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/8Y0A3277.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #fff;
    color: #042467;
    border-color: #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #042467;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #042467;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about-content p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-logo-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.about-logo {
    flex-shrink: 0;
}

.ssgg-logo {
    height: 180px;
    width: auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #042467;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #042467;
}

/* Key Dates Section */
.key-dates {
    background-color: #fff;
}

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

.date-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #042467;
    transition: all 0.3s ease;
}

.date-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.date-icon {
    margin-right: 1.5rem;
    font-size: 2rem;
    color: #042467;
}

.date-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #042467;
}

.date {
    font-weight: 600;
    color: #042467;
    font-size: 1.1rem;
}

.registration-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.registration-note p {
    margin: 0;
    color: #042467;
    font-size: 1.1rem;
}

.dates-simple {
    max-width: 600px;
    margin: 0 auto;
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.date-row:last-child {
    border-bottom: none;
}

.date-label {
    font-weight: 500;
    color: #333;
}

.date-value {
    font-weight: 600;
    color: #042467;
    font-size: 1.1rem;
}

/* Registration Section */
.registration {
    background-color: #f8f9fa;
}

.registration-info h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #042467;
}

.registration-info > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registration-rates {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: left;
}

.registration-rates h4 {
    color: #042467;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.rate-list,
.included-items {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.rate-list li,
.included-items li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.5;
}

.rate-list li:last-child,
.included-items li:last-child {
    border-bottom: none;
}

.rate-list li strong {
    color: #042467;
    font-weight: 600;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #042467;
    transform: scale(1.05);
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #042467;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #042467;
    margin-bottom: 0.5rem;
}

.deadline {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card li:before {
    content: "✓";
    color: #042467;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.hotel-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.hotel-link .btn {
    margin-bottom: 0.5rem;
}

.hotel-booking {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.hotel-booking h3 {
    color: #042467;
    margin-bottom: 1rem;
}

.hotel-booking .hotel-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #042467;
}

.hotel-booking .hotel-item.featured-hotel {
    background: #e8f4fd;
    border-left-color: #eaab30;
}

.hotel-booking .hotel-item h4 {
    color: #042467;
    margin-bottom: 0.5rem;
}

.hotel-booking .hotel-item p {
    margin-bottom: 0.5rem;
    color: #666;
}

.hotel-booking .btn {
    margin-top: 1rem;
}

.hotel-note {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.note {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

.btn.disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

.tba-text {
    font-size: 1.2rem;
    color: #042467;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

/* Schedule Section */
.schedule {
    background-color: #fff;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 10px 20px;
    border: 2px solid #042467;
    background: transparent;
    color: #042467;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #042467;
    color: white;
}

.schedule-day {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-day.active {
    display: block;
}

.schedule-item {
    display: flex;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.schedule-item:hover {
    background-color: #f8f9fa;
}

.time {
    min-width: 200px;
    font-weight: 600;
    color: #042467;
}

.event {
    flex: 1;
    color: #042467;
}

.event-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.25rem;
    padding-left: 1rem;
}

/* Speakers Section */
.speakers {
    background-color: #f8f9fa;
}

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

.speaker-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
}

.speaker-image {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    color: #ccc;
}

.speaker-info {
    padding: 1.5rem;
}

.speaker-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #042467;
}

.affiliation {
    color: #042467;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #666;
    line-height: 1.6;
}

/* Venue Section */
.venue {
    background-color: #fff;
}

.venue-top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.venue-content {
    display: block;
}

.venue-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-info h3,
.accommodation h3,
.about-atlanta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #042467;
}

.venue-info p,
.accommodation p,
.about-atlanta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.venue-address {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #042467;
}

.venue-address h4 {
    color: #042467;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.venue-image {
    margin: 2rem 0;
    text-align: center;
}

.venue-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.atlanta-features {
    list-style: none;
    padding-left: 0;
}

.atlanta-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.atlanta-features li strong {
    color: #042467;
    font-weight: 600;
}

.about-atlanta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

/* Hotel Styling */
.hotel-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #042467;
}

.hotel-item.featured-hotel {
    background: #fff;
    border: 2px solid #042467;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hotel-item h4 {
    color: #042467;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hotel-item p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hotel-item .btn {
    margin-top: 1rem;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Transportation and Parking */
.transportation-parking,
.dining-options,
.local-attractions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.transportation-parking h3,
.dining-options h3,
.local-attractions h3 {
    color: #042467;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.transportation-parking h4,
.dining-options h4,
.local-attractions h4 {
    color: #042467;
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem 0;
}

.transportation-parking h5,
.dining-options h5,
.local-attractions h5 {
    color: #042467;
    font-size: 1.1rem;
    margin: 0.5rem 0 0.25rem 0;
    font-weight: 600;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.transport-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #042467;
}

.parking-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    border-left: 4px solid #eaab30;
}

.dining-location {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.attraction-category {
    margin: 2rem 0;
}

.attraction-category ul {
    list-style: none;
    padding-left: 0;
}

.attraction-category li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.attraction-category li:last-child {
    border-bottom: none;
}

.attraction-category li strong {
    color: #042467;
    font-weight: 600;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.feature-item i {
    color: #042467;
    font-size: 1.2rem;
}

/* Committee Section */
.committee {
    background-color: #f8f9fa;
}

.committee-section {
    margin-bottom: 3rem;
}

.committee-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #042467;
    text-align: center;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.committee-member {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.committee-member.featured {
    border: 2px solid #042467;
    position: relative;
}

.committee-member.featured::before {
    content: "Co-Chair";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #042467;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.committee-member.chair::before {
    content: "Chair" !important;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #042467;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #042467;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #042467;
}

.member-info h4 a {
    color: #042467;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-info h4 a:hover {
    color: #eaab30;
    text-decoration: underline;
}

.member-info .title {
    color: #042467;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.member-info .department {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.member-info .university {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

    .member-info .bio {
        text-align: center;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Sponsors Section */
.sponsors {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.sponsors-grid {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.sponsor-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 200px;
}

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

.sponsor-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
}

/* Contact Section */

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #042467;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background: #eaab30;
    transform: translateY(-2px);
}

/* Simple committee members (without photos) */
.committee-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #042467;
    font-weight: 600;
}

.committee-member p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    justify-content: center;
}

.contact-item i {
    color: #042467;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #042467;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background-color: #fff;
    color: #042467;
    padding: 3rem 0 1rem;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-rsph-logo {
    height: 60px;
    width: auto;
}

.footer-address p {
    margin: 0;
    line-height: 1.4;
    color: #042467;
    font-size: 1rem;
}

.footer-contact h4 {
    color: #042467;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-contact a {
    color: #042467;
    text-decoration: underline;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #eaab30;
}

.footer-communications h4 {
    margin-bottom: 1rem;
}

.footer-communications h4 a {
    color: #042467;
    text-decoration: underline;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-communications h4 a:hover {
    color: #eaab30;
}

.footer-communications p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-intranet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-intranet a {
    color: #042467;
    text-decoration: underline;
    font-weight: 500;
}

.footer-intranet a:hover {
    color: #eaab30;
}

.footer-intranet i {
    color: #042467;
    font-size: 0.8rem;
}

.footer-intranet span {
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #042467;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-atlanta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-branding {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .committee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .committee-member.featured::before {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .encore-logo {
        height: 30px;
    }
    
    .nav-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .venue-image img {
        max-width: 100%;
    }
}

/* Sponsors Section */
.sponsors {
    background-color: #fff;
    padding: 60px 0;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.sponsor-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
}

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

.sponsor-item a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sponsor-item a:hover {
    opacity: 0.8;
}

    .sponsor-logo {
        max-height: 40px;
        max-width: 100px;
        width: auto;
        height: auto;
        margin-bottom: 1rem;
        object-fit: contain;
    }.sponsor-item h4 {
    color: #042467;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.sponsor-item p {
    color: #666;
    font-size: 1rem;
}

    .venue-features {
        grid-template-columns: 1fr;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .hotel-item .btn {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .date-item {
        flex-direction: column;
        text-align: center;
    }
    
    .date-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .time {
        min-width: auto;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        padding-top: 100px;
        min-height: calc(100vh - 100px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .tab-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

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

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .about-logo-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
            .ssgg-logo {
                height: 200px;
            }
    
    .about-text p {
        text-align: center;
    }
}

/* Scroll animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animation.show {
    opacity: 1;
    transform: translateY(0);
}
