/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Futura', sans-serif;
    line-height: 1.6;
    background: #fafafa;
    color: #333;
    padding: 0 16px;
}

/* Header */
header {
    text-align: center;
    padding: 60px 16px 40px;
    background: #fff;
    border-bottom: 2px solid #eee;
}

/* Logo + Title */
.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo {
    width: 48px;
    height: 48px;
}

header h1 {
    font-size: 2.5rem;
    color: #000; /* Solid black */
    font-weight: bold;
    margin: 0;
}

.tagline {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Screenshots */
.screenshots {
    padding: 40px 0;
    text-align: center;
}

.screenshots h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #222;
}

.screenshot-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 auto 40px;
    max-width: 1000px;
}

.screenshot-grid img,
.screenshot-row img,
.screenshot-column img {
    width: 220px; /* ✅ Explicitly fixed width. Was previously 180px. */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
}

.screenshot-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 auto 40px;
    max-width: 1000px;
}

.screenshot-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 40px;
    max-width: 1000px;
}

.screenshot-divider {
    height: 1px;
    background-color: #ddd;
    margin: 40px auto;
    width: 60%;
}

/* Contact */
.contact {
    text-align: center;
    padding: 40px 0;
}

.contact a {
    color: #4e2f8f;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #f0f0f0;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

footer a {
    color: #555;
    margin: 0 8px;
    text-decoration: none;
}

/* Improve mobile experience for some smaller screensizes. */
@media (max-width: 480px) {
    .screenshot-grid img,
    .screenshot-row img,
    .screenshot-column img {
        width: 90%;
        max-width: 280px;
    }
}

.security-note {
    max-width: 800px;
    margin: 0 auto 24px auto;
    padding: 0 16px;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    line-height: 1.5;
}

.footer-links {
    margin-top: 20px;
    text-align: center;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #333;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}
