:root {
    --primary-color: #2c3e50;
    --secondary-color: #FF9900;
    --secondary-color-dark: #E88B00;
    --background-color: #000000;
    --text-color: #2c3e50;
    --border-color: #dcdde1;
    --hover-color: #c0af7f;
    --mobile-breakpoint: 768px;
    --small-mobile-breakpoint: 480px;
    --modal-bg: #2a2a2a;
    --modal-header-bg: #3a3a3a;
    --modal-text: #ffffff;
    --modal-shadow: rgba(0, 0, 0, 0.3);
    --modal-border: rgba(255, 255, 255, 0.1);
    --modal-close-hover: #ff4444;    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, serif;
}

html, body {
    color: white;
    background-color: #000000;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

html {
    font-size: 18pt;
}

body {
    font-size: 1rem;
}

p {
    white-space: normal;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.marcellus-sc-regular {
    font-family: "Marcellus SC", serif;
    font-weight: 400;
    font-style: normal;
  }
  
/* headers */
h1 {
    font-family: 'Marcellus SC', 'Helvetica Neue', Helvetica, Arial, serif;
    color: white;
    font-weight: bolder;
    font-size: clamp(14px, 6vw, 24px);
}

h2{
    font-family: 'Marcellus SC', 'Helvetica Neue', Helvetica, Arial, serif;
    color: white;
    font-weight: bold;
    font-size: clamp(12px, 6vw, 22px);
}

h3{
    font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
    color: #CCCCCC;
    font-weight: normal;
    font-size: clamp(8px, 6vw, 18px);
}

/* delete this eventually */
h1.hb {
    font-family: 'Marcellus SC', 'Helvetica Neue', Helvetica, Arial, serif;
    color: rgb(255, 254, 254);
    font-weight: bolder;
    font-size: 1.5rem;
    text-align: center;
}

/* Title Bar Styles */
.title-bar {
    display: flex;
    align-items: center;
    background-color: #232F3E; /* AWS Navy */
    padding: 10px 20px;
    border-bottom: 3px solid #FF9900; /* AWS Orange accent */
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 60px;
}

.title-bar-logo {
    flex: 0 0 33.333%; /* One third width */
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.title-bar-logo img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.title-bar-menu {
    flex: 1; /* Takes remaining space (two thirds) */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.title-bar-menu nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.title-bar-menu nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.title-bar-menu nav a:hover {
    background-color: #FF9900;
    color: #232F3E;
}

.title-bar-menu nav a:visited {
    color: white;
}

.title-bar-menu nav a:hover:visited {
    color: #232F3E;
}

.title-bar-menu nav a.active {
    background-color: #FF9900;
    color: #232F3E;
}

/* Social Media Icons in Title Bar */
.title-bar .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
}

.title-bar .social-icons a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.title-bar .social-icons a:hover {
    color: #FF9900;
    background-color: rgba(255, 153, 0, 0.2);
    transform: scale(1.1);
}

.title-bar .social-icons a:visited {
    color: white;
}

.title-bar .social-icons a:hover:visited {
    color: #FF9900;
}

/* Sponsors Section Styles */
.sponsor-tier {
    margin: 40px 0;
}

.sponsor-tier h2 {
    color: #FF9900;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.sponsor-card:hover {
    transform: translateY(-8px);
    border-color: #FF9900;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.sponsor-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-card:hover .sponsor-logo img {
    transform: scale(1.05);
}

.sponsor-info h3 {
    color: #232F3E;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: bold;
}

/* Mobile adjustments for sponsor grid */
@media (max-width: 768px) {
    .sponsor-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .sponsor-card {
        padding: 20px;
        min-height: 180px;
    }
    
    .sponsor-logo {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .sponsor-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-tier h2 {
        font-size: 1.2rem;
    }
}

/* Resources Page Styles */
.resources-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Discord Link */
.discord-link {
    color: #5865F2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.discord-link:hover {
    color: #FF9900;
    text-decoration: underline;
}

.discord-link i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Modern Discord CTA Button */
.discord-cta-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.discord-cta-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 16px;
    padding: 20px 25px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

/* Rotating border glimmer effect */
.discord-cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        transparent 60deg,
        rgba(255, 153, 0, 0.8) 90deg,
        rgba(255, 255, 255, 0.9) 100deg,
        rgba(255, 153, 0, 0.8) 110deg,
        transparent 140deg,
        transparent 360deg
    );
    animation: border-rotate 3s linear infinite;
    border-radius: 16px;
}

/* Inner content mask to show only the border glimmer */
.discord-cta-button::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 14px;
    z-index: 1;
}

/* Ensure content is above the pseudo-elements */
.discord-icon-wrapper,
.discord-cta-text,
.discord-arrow {
    position: relative;
    z-index: 2;
}

@keyframes border-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.discord-cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #FF9900;
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.4), 0 0 40px rgba(88, 101, 242, 0.3);
}

.discord-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.discord-cta-button:hover .discord-icon-wrapper {
    background: rgba(255, 153, 0, 0.3);
    transform: rotate(10deg) scale(1.1);
}

.discord-icon-wrapper i {
    font-size: 28px;
    color: white;
}

.discord-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.discord-cta-main {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    font-family: 'Marcellus SC', serif;
}

.discord-cta-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.discord-arrow {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.discord-cta-button:hover .discord-arrow {
    background: #FF9900;
    transform: translateX(5px);
}

.discord-arrow i {
    font-size: 16px;
    color: white;
}

/* Pulse animation for extra attention */
@keyframes discord-pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5), 0 0 20px rgba(255, 153, 0, 0.2);
    }
}

.discord-cta-button {
    animation: discord-pulse 3s ease-in-out infinite;
}

.discord-cta-button:hover {
    animation: none;
}

/* Mobile adjustments for Discord CTA */
@media (max-width: 768px) {
    .discord-cta-button {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .discord-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .discord-icon-wrapper i {
        font-size: 24px;
    }
    
    .discord-cta-main {
        font-size: 1.1rem;
    }
    
    .discord-cta-sub {
        font-size: 0.75rem;
    }
    
    .discord-arrow {
        width: 30px;
        height: 30px;
    }
    
    .discord-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .discord-cta-button {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .discord-cta-text {
        text-align: center;
    }
    
    .discord-arrow {
        transform: rotate(90deg);
    }
    
    .discord-cta-button:hover .discord-arrow {
        transform: rotate(90deg) translateX(5px);
    }
}

/* News Section Styles */
.news-section {
    padding: 10px;
}

.news-item {
    background: linear-gradient(135deg, rgba(102, 8, 8, 0.9), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(255, 153, 0, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.news-item h3 {
    color: #FF9900;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-date {
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 10px;
}

.news-item p {
    line-height: 1.6;
    margin: 5px 0;
}

.news-item a {
    color: #FF9900;
    text-decoration: none;
    font-weight: bold;
}

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

.news-posted-date {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    text-align: right;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 153, 0, 0.2);
}

/* Events Page Styles */
.events-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Community Days Horizontal Cards */
.community-days-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.community-day-card {
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.9), rgba(44, 62, 80, 0.9));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.community-day-card:hover {
    transform: translateY(-5px);
    border-color: #FF9900;
    box-shadow: 0 8px 16px rgba(255, 153, 0, 0.2);
}

.community-day-content h2 {
    color: #FF9900;
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
}

.community-day-content p {
    line-height: 1.6;
}

.community-day-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-day-content ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.community-day-content ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #FF9900;
    font-weight: bold;
}

.community-day-content a {
    color: #FF9900;
    text-decoration: none;
    transition: color 0.2s ease;
}

.community-day-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .community-day-card {
        padding: 20px;
    }
    
    .community-day-content h2 {
        font-size: 1.4rem;
    }
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.9), rgba(44, 62, 80, 0.9));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: #FF9900;
    box-shadow: 0 8px 16px rgba(255, 153, 0, 0.2);
}

.resource-card h2 {
    color: #FF9900;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-card ul li {
    margin: 12px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.resource-card ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #FF9900;
    font-weight: bold;
}

.resource-card a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.resource-card a:hover {
    color: #FF9900;
    text-decoration: underline;
}

.resource-link-separator {
    color: #FF9900;
    margin: 0 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-card h2 {
        font-size: 1.2rem;
    }
}

/* Header Bar Styles */
.header-bar {
    display: block;
    /* Base layout */
    min-width: 320px;
    max-height: 30vh;
    height: 30vh; /* Set height based on viewport height for flexible scaling */
    margin: 5px;

    /* Prevent overflow */
    overflow: hidden;

    /* Content alignment */
    align-items: center;

    /* Background styling */
    background-color: #000000;
    background-image: linear-gradient(rgba(15, 11, 11, 0.7), rgba(30, 30, 30, 0.8));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-bar-content {
    display: flex;
    position: relative;
    flex-direction: column; /* Stack items vertically */
    overflow: hidden;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo-image {
    width: 100%; /* Make image width match container width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevents image from exceeding container width */
}

.presenter-image {
    height: 80%; 
    align-content: center;
    justify-content: center;
    padding:5px;
}

/* Main Container */
.container {
    display: flex;
    margin: 10px;
    padding: 0 10px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 20px;
}

.left {
    flex: 1.33;
    background-color: var(--background-color);
    font-size: clamp(12px, 2vw, 16px);
    min-width: 0;
}

.middle {
    flex: 2;
    background-color: var(--background-color);
    font-size: clamp(12px, 2vw, 16px);
    min-width: 0;
}

.right {
    flex: 1;
    background-color: var(--background-color);
    font-size: clamp(12px, 2vw, 16px);
    min-width: 320px;
    overflow: visible;
    padding-right: 10px;
}

.pad-right {
    flex: 0.33;
    background-color: var(--background-color);
    font-size: clamp(12px, 2vw, 16px);
    min-width: 0;
    overflow: visible;
    padding-right: 10px;
}

/* links */
a {
    color: white;
}

a:visited {
    color: white;
}

/* images */
.swagimage {
    border-radius: 10%;
    transition: transform 0.3s ease;
    max-width: 300px;
    max-height: 300px;
    justify-content: center;
    align-items: center;
}

.discordinviteimage {
    transition: transform 0.3s ease;
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    overflow-y: auto;
    z-index: 1000;
}

.modal-body {
    padding: 1rem;
}

.modal-header {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem;
    z-index: 1;
    border-bottom: 1px solid var(--border-color);
}

.modal-content {
    background: rgb(255, 255, 255);
    margin: 5vh auto;
    padding: 1rem;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: black;
}

/* discord widget */
    .discord-widget {
    /*min-width: 5vw;
    max-width: 10vw;
    height: 500;*/
    width: 100%;
    max-width: 500px;
    min-height: 600px;
    justify-content: center;
    align-items: center;
}

.circle-image {
    width: 100px;  /* Adjust size as needed */
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    margin: 20px;
}

.circle-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Glowing effect */
.circle-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        #FF9900, /* AWS Orange */
        #232F3E, /* AWS Navy */
        #FF9900, 
        #232F3E
    );
    z-index: 0;
    animation: glow 3s linear infinite;
}

/* Sparkle overlay */
.circle-image::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255,255,255,0.8) 2%, 
        transparent 6%),
        radial-gradient(circle at 20% 20%, 
        rgba(255,255,255,0.8) 1%, 
        transparent 4%),
        radial-gradient(circle at 80% 80%, 
        rgba(255,255,255,0.8) 1%, 
        transparent 4%);
    animation: sparkle 2s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* Animations */
@keyframes glow {
    0% {
        transform: rotate(0deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Optional hover effect */
.circle-image:hover::before {
    animation: glow 1.5s linear infinite;
}

.circle-image:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.errorModal {
    display: none;
}
.error-area {
    margin-top: 20px;
    padding: 10px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.error-area:empty {
    display: none;
}

/* Media Queries for different screen sizes - Responsive Layout */

/* Tablet and below (iPad and smaller) */
@media screen and (max-width: 1110px) {
    .title-bar {
        flex-direction: row;
        padding: 10px 15px;
        min-height: 70px;
    }

    .title-bar-logo {
        flex: 0 0 40%;
        padding-right: 15px;
    }
    
    .title-bar-logo img {
        max-height: 60px;
    }

    .title-bar-menu {
        flex: 1;
        justify-content: flex-end;
    }

    .title-bar-menu nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .title-bar-menu nav a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .container {
        flex-direction: column;
        margin: 5px;
        overflow: visible;
    }
    
    .left, .middle, .right {
        flex: 1;
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .pad-right {
        flex: 1;
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .calendar-container {
        grid-template-columns: repeat(4, minmax(80px, 1fr));
    }

    .header-bar-content {
        flex-direction: column;
    }
    
    .presenter-image {
        height: auto; 
        width: 100vw;
        align-content: center;
        justify-content: center;
        padding: 5px;
    }

    h1.hb {
        font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
        color: rgb(255, 254, 254);
        font-weight: bolder;
        font-size: 1rem;
        align-content: center;
        justify-content: center;
    }
    
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .discord-widget {
        min-width: 100%;
        width: 100%;
    }
}

/* Mobile phones (iPhone and similar) */
@media (max-width: 768px) {
    html {
        font-size: 16pt;
    }
    
    .title-bar {
        flex-direction: column;
        padding: 10px;
        min-height: auto;
        align-items: center;
    }

    .title-bar-logo {
        flex: 1;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        text-align: center;
    }
    
    .title-bar-logo img {
        max-height: 50px;
    }

    .title-bar-menu {
        width: 100%;
        justify-content: center;
    }

    .title-bar-menu nav {
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .title-bar-menu nav a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .title-bar .social-icons {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
        gap: 20px;
    }
    
    .title-bar .social-icons a {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    
    .container {
        margin: 5px;
    }
    
    .left, .middle, .right {
        padding: 5px;
    }
    
    .pad-right {
        padding: 5px;
    }
    
    h1 {
        font-size: clamp(16px, 5vw, 20px);
    }
    
    h2 {
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .circle-image {
        width: 80px;
        height: 80px;
    }
    
    .discord-link {
        font-size: 0.9rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .resource-card {
        padding: 15px;
    }
    
    .resource-card h2 {
        font-size: 1.1rem;
    }
    
    .swagimage {
        max-width: 200px;
        max-height: 200px;
    }
    
    .discord-widget {
        min-width: 100%;
        min-height: 400px;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .title-bar-menu nav {
        gap: 8px;
    }

    .title-bar-menu nav a {
        font-size: 11px;
        padding: 4px 6px;
    }

    .container {
        overflow: auto;
    }

    .calendar-container {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
    
    .header-bar-content {
        flex-direction: column;
    }
    
    .presenter-column-1,
    .presenter-column-2,
    .presenter-column-3 {
        flex: 1 1 100%;
    }
    
    .header-bar {
        display: block;
        min-width: 320px;
        max-height: 20vh;
        height: 20vh;
    }
    
    .resource-card ul li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .circle-image {
        width: 60px;
        height: 60px;
    }
}

/* About Page Submenu Styles */
.about-submenu {
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.9), rgba(44, 62, 80, 0.9));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.about-submenu h3 {
    color: #FF9900;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
}

.about-submenu nav {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.about-submenu nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.about-submenu nav a:hover {
    background-color: rgba(255, 153, 0, 0.2);
    transform: translateX(5px);
    color: #FF9900;
}

.about-submenu nav a.active {
    background-color: #FF9900;
    color: #232F3E;
    font-weight: bold;
}

#about-content {
    min-height: 400px;
}

/* Mobile adjustments for about submenu */
@media (max-width: 768px) {
    .about-submenu {
        padding: 15px;
    }
    
    .about-submenu h3 {
        font-size: 1.1rem;
    }
    
    .about-submenu nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* About Page Left Column - Narrower than default */
.about-left {
    flex: 0.5;
    background-color: var(--background-color);
    font-size: clamp(12px, 2vw, 16px);
    padding-right: 12px;
    min-width: 0;
}

@media (max-width: 768px) {
    .about-left {
        flex: 1;
        width: 100%;
        padding: 5px;
        margin-bottom: 20px;
    }
}

/* Committee Members Grid */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.committee-card {
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.9), rgba(44, 62, 80, 0.9));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.committee-card:hover {
    transform: translateY(-8px);
    border-color: #FF9900;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.committee-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FF9900;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
    position: relative;
}

.committee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.committee-card:hover .committee-photo img {
    transform: scale(1.1);
}

.committee-info {
    margin-top: 15px;
}

.committee-name {
    color: #FF9900;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.committee-role {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Mobile adjustments for committee grid */
@media (max-width: 768px) {
    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .committee-card {
        padding: 20px;
    }
    
    .committee-photo {
        width: 120px;
        height: 120px;
    }
    
    .committee-name {
        font-size: 1rem;
    }
    
    .committee-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .committee-grid {
        grid-template-columns: 1fr;
    }
}

/* Meetups Grid Styles */
.meetups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.meetup-card {
    background: linear-gradient(135deg, rgba(102, 8, 8, 0.9), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.meetup-card:hover {
    transform: translateY(-8px);
    border-color: #FF9900;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.meetup-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.meetup-name {
    color: #FF9900;
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
}

.meetup-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.meetup-details {
    margin-top: auto;
}

.meetup-details p {
    color: #ffffff;
    margin: 10px 0;
    line-height: 1.6;
}

.meetup-details strong {
    color: #FF9900;
}

/* Mobile adjustments for meetups grid */
@media (max-width: 768px) {
    .meetups-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .meetup-card {
        padding: 20px;
    }
    
    .meetup-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .meetup-card {
        padding: 15px;
    }
    
    .meetup-name {
        font-size: 1.1rem;
    }
    
    .meetup-description {
        font-size: 0.9rem;
    }
}

/* Sponsors Carousel Styles */
.sponsors-carousel-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.sponsors-carousel {
    display: flex;
    animation: carousel-scroll 30s linear infinite;
}

.sponsors-carousel:hover {
    animation-play-state: paused;
}

.sponsor-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    padding-top: 50px;
    min-height: 120px;
    position: relative;
}

.sponsor-level-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    z-index: 10;
    border-radius: 10px 10px 0 0;
}

.sponsor-level-badge.platinum {
    background: linear-gradient(135deg, #E5E4E2, #BCC6CC);
    color: #2c3e50;
}

.sponsor-level-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
}

.sponsor-level-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #2c3e50;
}

.sponsor-level-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: #ffffff;
}

.sponsor-slide img {
    max-width: 80%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.sponsor-slide img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    14% {
        transform: translateX(0);
    }
    16.66% {
        transform: translateX(-100%);
    }
    30.66% {
        transform: translateX(-100%);
    }
    33.33% {
        transform: translateX(-200%);
    }
    47.33% {
        transform: translateX(-200%);
    }
    50% {
        transform: translateX(-300%);
    }
    64% {
        transform: translateX(-300%);
    }
    66.66% {
        transform: translateX(-400%);
    }
    80.66% {
        transform: translateX(-400%);
    }
    83.33% {
        transform: translateX(-500%);
    }
    97.33% {
        transform: translateX(-500%);
    }
    100% {
        transform: translateX(-600%);
    }
}

/* Mobile adjustments for sponsors carousel */
@media (max-width: 768px) {
    .sponsors-carousel-container {
        max-width: 100%;
    }
    
    .sponsor-slide {
        min-height: 100px;
    }
    
    .sponsor-slide img {
        max-height: 80px;
    }
}

/* Temporary hiding - Work in Progress */
/* Hide swag/merch section while under development */
.merch-section {
    display: none !important;
}
