body {
    font-family: 'Inter', sans-serif;
    background-color: #1a0033; /* Dark purple from the PDF */
    color: #ffffff;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative;
}

/* Pixel grid background effect */
.pixel-grid {
    position: fixed; /* Fixed so it covers the whole viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px; /* Adjust pixel size */
    z-index: 0;
    pointer-events: none; /* Allow clicks to pass through */
}

.section {
    min-height: 100vh; /* Each section takes full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem; /* Padding for content, top padding accounts for fixed nav */
    position: relative;
    z-index: 1; /* Ensure content is above pixel grid */
    scroll-snap-align: start; /* For potential scroll snapping */
}

.section-content {
    background-color: rgba(26, 0, 51, 0.8); /* Slightly transparent background for content */
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); /* Cyan glow */
    text-align: center;
    max-width: 90%;
    width: 800px; /* Increased width for more content */
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pixel-text {
    font-family: 'Press Start 2P', cursive;
    text-shadow: 2px 2px 0px #00e6e6, 4px 4px 0px #00b3b3; /* Pixelated shadow */
    color: #ffcc00; /* Yellow */
}

.logo-text {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #9933ff; /* Purple from PDF */
    text-shadow: 3px 3px 0px #6600cc;
}

.tagline {
    font-size: 1.25rem;
    color: #00e6e6; /* Cyan */
    margin-bottom: 2rem;
    text-shadow: 1px 1px 0px #009999;
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px #00e6e6;
}

.description, .list-item, .contact-info {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.description, .list-item, .contact-address-info {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.list-container {
    text-align: left;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none; /* Remove default list markers */
    padding-left: 0; /* Remove default padding */
}

.list-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 3px 3px 0px rgba(0, 255, 255, 0.2);
    list-style: none; /* Remove default list markers for each item */
    transition: transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), border-color 0.25s;
}
.list-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.35), 0 2px 8px 0 #ffcc00;
    border-color: #00e6e6;
    background-color: rgba(0, 0, 0, 0.45);
}

.list-item strong {
    color: #ffcc00;
    font-family: 'Press Start 2P', cursive;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #00e6e6;
    word-break: break-word;
    flex-wrap: wrap;
    text-align: left;
}

.contact-item svg {
    min-width: 24px;
    min-height: 24px;
    margin-top: 2px;
}

.contact-address-info, .contact-info {
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
    word-break: break-word;
    flex: 1;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-grid {
        gap: 1rem;
        max-width: 100%;
    }
    .contact-item {
        font-size: 0.95rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .contact-address-info, .contact-info {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 0.8rem;
        padding: 0 0.2rem;
    }
    .contact-item {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .contact-item svg {
        margin-bottom: 0.2rem;
    }
    .contact-address-info, .contact-info {
        font-size: 0.85rem;
        word-break: break-word;
    }
}

.btn {
    display: inline-block;
    background-color: #ff6600; /* Orange */
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 3px solid #cc5200;
    box-shadow: 5px 5px 0px #cc5200; /* Pixelated button shadow */
    margin-top: 2rem;
}

.btn:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 8px 8px 0px #cc5200;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker, slightly transparent */
    padding: 1rem 2rem;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3); /* Cyan shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #00e6e6;
}

.nav-brand {
    font-family: 'Press Start 2P', cursive;
    color: #ffcc00;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-right: 2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Press Start 2P', cursive;
    color: #ffcc00;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-shadow: 1px 1px 0px #009999;
}

.nav-link:hover {
    background-color: rgba(0, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-content {
        padding: 1.5rem;
    }
    .logo-text {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .description, .list-item, .contact-info {
        font-size: 0.9rem;
    }
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        padding: 1.5rem 0;
        border-bottom: 2px solid #00e6e6;
        z-index: 200;
        box-shadow: 0 8px 24px rgba(0,255,255,0.15);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
    }
    .list-container {
        grid-template-columns: 1fr; /* Stack on small screens */
    }
}

@media (max-width: 480px) {
    .section-content {
        padding: 1rem;
    }
    .logo-text {
        font-size: 1.75rem;
    }
    .tagline {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .description, .list-item, .contact-info {
        font-size: 0.85rem;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .navbar {
        padding: 0.75rem 1rem;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
} 