/* Landing page only. Shared rules are in styles.css. */

body.home {
    color: var(--rat-ink);
    margin: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.logo {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--rat-ink);
}

.title .highlight,
.description .highlight {
    color: var(--rat-blue);
}

.description {
    font-size: 1.5rem;
    margin: 20px 0;
    color: var(--rat-muted);
}

.description .highlight {
    font-weight: bold;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Keeps buttons sized to their text when the media query below switches
       this to a column; the default `stretch` would make them full-width. */
    align-items: center;
    gap: 15px;
}

.play-button {
    /* These are <a> elements, which are inline by default — without an explicit
       block-level display their height and vertical margins are ignored and the
       padded boxes overlap. */
    display: inline-block;
    background-color: var(--rat-blue);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.play-button:hover {
    background-color: var(--rat-blue-dark);
    transform: scale(1.05);
}

.instagram-button {
    display: inline-block;
    background-color: transparent;
    color: var(--rat-green);
    text-decoration: none;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--rat-green);
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.instagram-button:hover {
    background-color: var(--rat-green);
    color: #fff;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.2rem;
    }

    .button-group {
        flex-direction: column;
    }
}
