body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #fef7f0 0%, #ffffff 100%);
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ---------------- Hero ---------------- */
.hero {
    background-color: #f7ece0;
    padding: 3.5em 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(90deg, #ff7f50, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: "Poppins", sans-serif;
    -webkit-text-stroke: 0.3px black;
}

/* ---------------- Menu ---------------- */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3.5em 0;
    text-align: center;
}

.menu h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #2e3b55;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.menu-item-podschool {
    display: flex;
    flex-direction: column;
    background-color: #f7ece0;
    width: 320px;
    height: 380px;
    text-align: center;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    text-decoration: none;
    color: #333333;
    font-weight: 700;
    font-size: 21px;
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    transition: color 0.3s, transform 0.3s, border 0.3s ease-in-out;
    text-decoration: none !important;
}

a, a:visited, a:focus, a:hover {
    text-decoration: none !important;
}

.menu-image { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.menu-item h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #2e3b55;
}

.menu-item-podschool:hover {
    transform: scale(1.03);
    background-color: #ecd9c4;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .menu h2 {
        font-size: 2rem;
    }
}