/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
}

/* Navigation Menu */
nav {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 15px;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Parallax Sections */
.parallax {
    min-height: 40vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.parallax-home {
    background-image: url('stormcast.jpg');
}

.parallax-contact {
    background-image: url('contact.jpg');
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h1, .overlay h2 {
    font-size: 3em;
    margin: 0 0 20px 0;
}

.overlay p {
    font-size: 1.2em;
}

/* Main Content */
#main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

/* About Section */
#about {
    padding: 40px 0;
    text-align: left;
    background: white;
}


/* Content Section */
#content {
    padding: 40px 0;
    text-align: left;
    background: white;
}

#content h1,
#content h2 {
    text-align: center;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

#about p {
    font-size: 1.2em;
}

/* App Showcase Styles */
.app-showcase {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
}

.app-item h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 0;
}

.app-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.app-item p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .app-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }

    .overlay h1, .overlay h2 {
        font-size: 2em;
    }
}
