
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

body.dark {
    background-color: #0e0e0e;
    color: #f2f2f2;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a { color: #f97316; text-decoration: none; transition: color 0.2s; }
a:hover { text-decoration: underline; color: #fb923c; }

.centered {
    text-align: center;
    margin: 2rem 1rem;
}

.logo-large {
    width: 160px;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-in;
}

.subtitle {
    color: #aaa;
    font-size: 1rem;
    margin-top: -0.5rem;
    animation: fadeIn 1.7s ease-in;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    max-width: 900px;
    margin: auto;
}

.card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 10px #111;
    animation: fadeIn 1.2s ease-in;
}

.card h2 {
    margin-top: 0;
    color: #f97316;
    font-weight: 600;
}

.gallery {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 30%;
    min-width: 100px;
    max-width: 180px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
}

.app-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    display: block;
    margin: 1rem auto 0;
}
