* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #f4d6c9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.995));
    box-shadow: 0 12px 36px rgba(183, 110, 121, 0.18), 0 4px 12px rgba(183, 110, 121, 0.08);
    padding: 28px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(183, 110, 121, 0.22), 0 6px 18px rgba(183, 110, 121, 0.12);
}

h1 {
    color: #333;
    font-size: 2.6em;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.2;
}

.title-subtext {
    margin: 0;
    font-size: 1.12em;
    text-align: center;
    color: #333;
}

.title-subtext + .title-subtext {
    margin-top: 6px;
}

.button-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.project-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    background: #007bff;
    color: white;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
    box-shadow: 0 8px 18px rgba(0, 123, 255, 0.24);
}

.project-button:hover,
.project-button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.3);
}

.project-button:focus-visible {
    outline: 2px solid #004a99;
    outline-offset: 2px;
}

.footer {
    text-align: center;
    color: #777;
    padding: 10px 0 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 700px) {
    .container {
        padding: 16px;
    }

    .hero-card {
        padding: 18px;
    }

    h1 {
        font-size: 1.95em;
    }

    .title-subtext {
        font-size: 1em;
    }

    .button-grid {
        grid-template-columns: 1fr;
    }

    .project-button {
        width: 100%;
    }
}
