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

:root {
    --primary-red: #c62828;
    --dark-red: #8e0000;
    --light-red: #ef5350;
    --pure-white: #ffffff;
    --off-white: #f5f5f5;
    --text-dark: #212121;
    --shadow: 0 10px 30px rgba(198, 40, 40, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-wrapper {
    width: 100%;
    background: var(--pure-white);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.logo-container {
    width: 100%;
    max-width: 900px;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.main-container {
    width: 100%;
    max-width: 800px;
    padding: 0 1.5rem;
    text-align: center;
}

h1 {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .menu {
        grid-template-columns: 1fr 1fr;
    }
}

.menu-item {
    background: var(--pure-white);
    color: var(--primary-red);
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(198, 40, 40, 0.3);
}

.menu-item.primary {
    background: var(--primary-red);
    color: var(--pure-white);
    grid-column: 1 / -1;
    font-size: 1.3rem;
    padding: 2rem;
}

.menu-item.primary:hover {
    background: var(--dark-red);
}

.footer-info {
    margin-top: 4rem;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
}

.legal-content {
    text-align: left;
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: var(--primary-red);
    margin: 2rem 0 1rem 0;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1.2rem;
}

.back-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
}

.footer-link {
    display: inline-block;
    margin-top: 1rem;
    color: #999;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}