/* Landing page */

:root {
    --gitte-serif: Georgia, "Times New Roman", Times, serif;
}

.home h1 {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #000;
}

.home h2 {
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--color-text-dark);
    font-size: 2.5rem;
}

.home p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 1.5rem;
}

.home a {
    color: var(--color-primary);
}

.home #hero {
    position: relative;
    height: 80vh;
    background: url("/assets/img/hero-bg.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-color: green;
}

.home #hero > div:not(#powered-by) {
    position: relative;
    text-align: center;
    padding: 0 24px;
    max-width: 1200px;
}

.home #hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #000;
}

.home #hero .intro-text {
    max-width: 800px;
    margin-bottom: 20px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.home #hero .highlight {
    display: inline;
    font-size: 20px;
    padding: 2px 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.home #hero form {
    display: flex;
    justify-content: center;
}

.home button {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    border-radius: 6px;
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    cursor: pointer;
    transition: background 0.15s;
}

.home button:hover {
    background: var(--color-primary-hover);
}

.home #powered-by {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 2;
}

.home #powered-by a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 12px 16px;
    border-radius: 8px;
    width: 340px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.15s;
}

.home #powered-by a:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    color: #111;
}

.home #powered-by img {
    width: 56px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.home #powered-by span {
    color: inherit;
}

@media (max-width: 800px) {
    .home #powered-by {
        flex-direction: column;
        gap: 10px;
        bottom: 12px;
        width: calc(100% - 32px);
    }
    .home #powered-by a {
        max-width: none;
    }
}

.home #manifesto {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
    font-family: var(--gitte-serif);
}

.home #manifesto i {
    font-style: unset;
    background: #333;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 800px) {
    .home #hero h1 {
        font-size: 4rem;
    }
    .home #hero {
        height: auto;
        padding-top: 100px;
        padding-bottom: 200px;
    }

    .home #powered-by a {
        width: auto;
    }
}
