/* NoteRider - Specific Styles */

header {
    background: linear-gradient(135deg, #071a3e 0%, #0f3d8a 50%, #2a7de1 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

header img {
    width: 20%;
    display: block;
    margin: 0 auto;
}

h1 {
    color: #ffffff;
}

h2, h3 {
    color: #0a2a6a;
}

a {
    color: #2a7de1;
}

a:hover {
    background: #e8f0fb;
}

footer a:hover:not(.social-links a) {
    background: none !important;
}

footer {
    background: #0a2a6a;
}

/* Showcase Section */
.showcase {
    background: linear-gradient(135deg, #f1f6ff 0%, #e8f0fb 100%);
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.showcase-text {
    flex: 1;
}

.showcase-tagline {
    font-size: 1.2em;
    color: #1a2a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.showcase-platforms {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.95em;
    color: #555;
    font-weight: 500;
}

.showcase-image {
    flex: 1;
    text-align: center;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(10, 42, 106, 0.18));
}

#about {
    padding: 42px 36px;
}

#about h2 {
    margin-bottom: 18px;
}

#about h3 {
    margin-top: 28px;
    margin-bottom: 16px;
    font-size: 1.35em;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 26px;
    margin-bottom: 30px;
}

.feature-card {
    background: #f1f6ff;
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 125, 225, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 125, 225, 0.16);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f0fb 0%, #c8dcf8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #1a6ecf;
}

.feature-card h3 {
    font-size: 1.02em;
    color: #0a2a6a;
    margin: 0 0 8px;
    margin-top: 0;
}

.feature-card p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.55;
    margin: 0;
}

.section-intro {
    color: #444;
    font-size: 1em;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

#about ul li {
    padding: 8px 0 8px 26px;
    font-size: 0.98em;
}

#about ul li::before {
    font-size: 1.05em;
}

#screenshots {
    padding: 40px 36px;
}

#screenshots .screenshots-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 8px;
}

#screenshots .screenshots-header h2 {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #screenshots .screenshots-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

#screenshots .screenshot-container {
    gap: 18px;
    margin-top: 18px;
}

#screenshots .screenshot-small {
    width: 155px !important;
    max-width: 155px;
    border-radius: 14px;
}

#screenshots .screenshot-hidden-source {
    display: none;
}

/* Windows screenshots are landscape — use wider width for comparable visual size */
#screenshots-windows .screenshot-small {
    width: 300px !important;
    max-width: 300px;
}

.screenshots-tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #e8f0fb;
    border-radius: 999px;
    margin: 8px auto 18px;
}

.screenshots-tab {
    border: none;
    background: transparent;
    color: #0a2a6a;
    font: inherit;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.screenshots-tab:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
}

.screenshots-tab.active {
    background: #0f3d8a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(10, 42, 106, 0.18);
}

.screenshots-panel {
    display: none;
}

.screenshots-panel.active {
    display: block;
}

.screenshots-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.screenshots-heading img {
    width: 20px;
    height: 20px;
}

.screenshots-note {
    text-align: center;
    color: #5a6785;
    margin-top: 12px;
    font-size: 0.9em;
}

/* Coming Soon download buttons */
.download-soon-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.download-soon {
    pointer-events: none;
    cursor: default;
    opacity: 0.45;
    filter: grayscale(1);
}

.download-soon:hover {
    transform: none !important;
}

.coming-soon-label {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    font-size: 0.78em;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Mobile responsive adjustments */
@media (max-width: 900px) {
    .showcase-container {
        flex-direction: column;
        text-align: center;
    }

    .showcase-platforms {
        justify-content: center;
    }

    .badges {
        justify-content: center;
    }

    .showcase-image {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        padding: 25px 10px;
    }

    header img {
        width: 30%;
        max-width: 150px;
    }

    header h1 {
        font-size: 1.5em;
        margin-top: 10px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #about {
        padding: 34px 22px;
    }

    #screenshots {
        padding: 32px 22px;
    }

    #screenshots .screenshot-container {
        gap: 14px;
    }

    #screenshots .screenshot-small {
        width: 132px !important;
        max-width: 132px;
    }

    .screenshots-tabs {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}

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

    #about {
        padding: 28px 16px;
    }

    #about h3 {
        font-size: 1.25em;
    }

    #screenshots {
        padding: 28px 16px;
    }

    #screenshots .screenshot-small {
        width: 112px !important;
        max-width: 112px;
    }

    .screenshots-tabs {
        flex-direction: column;
        border-radius: 24px;
    }

    .screenshots-tab {
        width: 100%;
    }
}
