/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'InstrumentSansCondensed', monospace;
}

body {
    background: #ffffff;
    color: #212121;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header{
    position: sticky !important;
    top: 0;
    z-index: 999 !important;
}

/* Container */
.navbar .container{
    display: flex;
    justify-content: space-between;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: auto;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e53935;
    /* Or use #1565c0 for blue accent */
}

/* Navbar */
.navbar {
    background-color: white;
    color: black;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
}

#nav-menu{
    background-color: rgba(255, 255, 255, 0.95);
    gap: 40px;
}

@media (max-width: 768px) {
    
    #nav-menu{
        gap: 0px;
    }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    max-height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

nav a:hover{
    color: #00398a;
}

nav form {
    margin: 0;
}

/* Burger menu styles */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    display: block;
    border-radius: 2px;
}

/* Responsive - mobile overlay nav */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 10px 0;
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    nav a,
    nav form {
        text-align: center;
        width: 100%;
        padding: 8px 0;
    }

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e53935, #1565c0);
    color: white;
    text-align: center;
    padding: 100px 10% 80px;
    position: relative;
}

.hero .overlay {
    max-width: 700px;
    margin: auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
/* Features */
.features {
    padding: 80px 10%;
    background: #fafafa;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Download Section */
.download {
    padding: 80px 10%;
    text-align: center;
}

.download h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.download button {
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: #e53935;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.download button:hover {
    background: #c62828;
    transform: scale(1.03);
}

#statusText {
    margin-top: 10px;
    color: white;
    font-size: 0.9rem;
}

/* Reviews */
.reviews {
    padding: 60px 10%;
    background: #f5f5f5;
    text-align: center;
}

.reviews h2 {
    margin-bottom: 30px;
}

.review-card {
    background: #fff;
    padding: 20px;
    margin: 10px auto;
    max-width: 600px;
    border-left: 4px solid #1565c0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

/* FAQ */
.faq {
    padding: 60px 10%;
}

.faq h2 {
    margin-bottom: 25px;
}

.faq details {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 6px;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: white;
    color: black;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 40px;
}

.footer-logo-section {
    flex: 1 1 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo {
    min-width: 180px;
    max-width: 85%;
    height: auto;
    filter: brightness(90%);
}

.footer-links {
    display: flex;
    flex: 2 1 400px;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: right;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: black;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: #00aaff;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}


/* Responsive */
@media (max-width: 768px) {
    .navbar nav {
        float: none;
        text-align: center;
    }

    .navbar nav a {
        display: inline-block;
        margin: 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features .grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 661px){

    .footer-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 5px;
    }

    .footer-logo-section{
        flex: unset;
        justify-content: center;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
        width: 100%;
        flex: unset;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

#logo-text:hover{
    cursor: pointer;
    color: #cc312f;
}

#logo-text a{
    text-decoration: none;
    color: #e53935;
}