
body {
    font-family: 'Segoe UI', Tahoma,Verdana, Geneva, Tahoma, sans-serif, Verdana, sans-serif;
    margin: 0;
    background-color:#fdf6f0; 
    color: #5d4037;
    line-height: 1.6;
}

nav{
    background-color: #ffcce0; 
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #d81b60;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffcce0 0%, #fdf6f0 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #4e342e;
}

.hero p {
    font-size: 1.2rem;
    color: #8d6e63;
}

.bunny-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
}


.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


.btn {
    display: inline-block;
    background-color: #ff80ab;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
 
}

.btn:hover {
    background-color: #f06292;
}

footer {
    text-align: center;
    padding: 60px 20px;
    font-size: 0.9rem;
    color: #bcaaa4;
}
