.logo {
    position: absolute;
    top: 10%;
    left: 20px;
    transform: none;
    z-index: 2;
    max-width: 315px;
    max-height: 105px;
    display: block; /* Show by default for home page */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .logo {
        max-width: 210px;
        max-height: 73.5px;
        left: 15px;
        top: 8%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 157.5px;
        max-height: 52.5px;
        left: 10px;
        top: 6%;
    }
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* Background for non-home pages */
body:not(:has(.video-background)) {
    background-image: url('./images/landing_page.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    background-color: rgba(30, 58, 138, 0.5);
    color: white;
    padding: 20px 0;
    text-align: center;
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

nav ul li a:hover::before {
    width: 80%;
}

nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

main {
    padding-top: 120px;  /* Add space for fixed header */
    text-align: center;
}

footer {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: right;
}

footer p {
    margin: 0;
    margin-bottom: 10px;
}

footer a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer img {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 10px;
}

.about-text {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.specs-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 10px;
}

.specs-card {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.specs-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 1.8em;
}

.specs-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}

.specs-images-left, .specs-images-right {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specs-images-right {
    align-items: flex-end;
}

.specs-details {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.specs-image {
    width: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.specs-image:hover {
    transform: scale(1.05);
}

.specs-section {
    margin-bottom: 20px;
}

.specs-section h3 {
    color: #4a9eff;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.specs-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.specs-section li {
    margin-bottom: 5px;
    font-size: 1.1em;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .specs-layout {
        flex-direction: column;
    }
    
    .specs-images-left, .specs-images-right {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .specs-images-left {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .specs-images-left .specs-image {
        width: 48%;
        max-height: none;
    }
    
    .specs-images-right {
        margin-top: 20px;
    }
    
    .specs-images-right .specs-image {
        max-height: none;
    }
}

@media (max-width: 576px) {
    .specs-images-left {
        flex-direction: column;
    }
    
    .specs-images-left .specs-image {
        width: 100%;
        max-height: none;
    }
    
    .specs-images-right .specs-image {
        max-height: none;
    }
}

/* Swag Page Styles */
.swag-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.swag-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.swag-intro h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    object-fit: cover;
    aspect-ratio: 1;
}

.product-card h3 {
    color: #1e3a8a;
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.product-card p {
    color: #4a5568;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.product-card .price {
    color: #2c5282;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0.8rem 0;
}

.buy-button {
    background-color: #2c5282;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
}

.buy-button:hover {
    background-color: #1a365d;
}

.swag-notice {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.newsletter-form input[type="email"] {
    padding: 0.8rem 1.2rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    min-width: 300px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: #2c5282;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.newsletter-form button:hover {
    background-color: #1a365d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        max-width: 300px;
    }
}

/* Sponsorship Page Styles */
.sponsorship-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.sponsorship-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sponsorship-card h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sponsorship-card h3 {
    color: #2c5282;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.sponsorship-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sponsorship-card ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.sponsorship-card ul li {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.sponsorship-card ul li:before {
    content: "•";
    color: #2c5282;
    position: absolute;
    left: 0;
}

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

.tier {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.tier h4 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.tier ul {
    margin: 0;
}

.tier ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .sponsorship-content {
        padding: 1rem;
    }

    .tier-section {
        grid-template-columns: 1fr;
    }

    .sponsorship-card h2 {
        font-size: 2rem;
    }

    .sponsorship-card h3 {
        font-size: 1.5rem;
    }
}

/* Blog Page Styles */
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-intro p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.blog-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.blog-post img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.blog-post h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.blog-post .post-date {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-post .post-excerpt {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post .read-more {
    display: inline-block;
    color: #2c5282;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}

.blog-post .read-more:hover {
    color: #1a365d;
}

.blog-subscribe {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
}

.blog-subscribe h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-subscribe p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

    .blog-intro h2 {
        font-size: 2rem;
    }

    .blog-post {
        margin: 0 1rem;
    }
}

.social-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-icon a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.home-section {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    color: #ffffff;
    margin-top: 20vh;
}

.home-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                 -2px -2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 2px;
}

.home-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7),
                 -2px -2px 3px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-section {
        margin-top: 15vh;
        padding: 1rem;
    }

    .home-section h1 {
        font-size: 2.5rem;
    }

    .home-section p {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .home-section {
        margin-top: 10vh;
    }

    .home-section h1 {
        font-size: 2rem;
    }

    .home-section p {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
} 