@font-face {
    font-family: "Acumin Pro";
    src: url("/public/fonnts.com-Acumin_Pro_Wide.otf") format("opentype");
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Acumin Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #ffffff;
    color: #000000;
}

.content {
    text-align: center;
    max-width: 700px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: auto;
    margin-top: auto;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 0.8rem;
}

.description {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 300;
}

.description br {
    display: block;
    content: "";
    margin-top: 0.2rem;
}

.email-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 0;
    overflow: hidden;
}

input[type="email"] {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    outline: none;
    background: #f5f5f5;
    color: #000000;
    font-weight: 300;
}

input[type="email"]:focus {
    background: #f5f5f5;
}

input[type="email"]::placeholder {
    color: #999999;
    font-weight: 300;
}

button {
    padding: 10px 20px;
    background: #f5f5f5;
    color: #000000;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button:hover {
    background: #e8e8e8;
}

button:active {
    background: #e0e0e0;
}

.message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
}

.message.success {
    color: #22c55e;
}

.message.error {
    color: #ef4444;
}

.images {
    display: flex;
    gap: 50px;
    width: 100vw;
    overflow-x: auto;
    padding: 20px;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.images::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.images img {
    height: auto;
    flex: 1;
    min-width: 0;
    object-fit: contain;
}

@media (max-width: 768px) {
    body {
        justify-content: flex-start;
        padding-top: 60px;
    }

    .content {
        padding: 0 24px;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .logo {
        width: 140px;
        margin-bottom: 0.6rem;
    }

    .description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .description br {
        margin-top: 0.25rem;
    }

    .email-form {
        max-width: 100%;
    }

    input[type="email"] {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    button {
        padding: 10px 16px;
    }

    .images {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        padding: 10px;
        width: 90vw;
        overflow-x: visible;
    }

    .images img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    #image-8 {
        display: none;
    }

    #image-7 {
        display: none;
    }
}
