
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;
}

.main-footer {
    background-color: #fce4ec; 
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-contact h3 {
    color: #880e4f;
    margin-bottom: 10px;
}

.footer-contact p {
    color: #6d1b4b;
    margin-bottom: 25px;
    font-size: 0.95rem;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto 50px;
}

.contact-form input, 
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.footer-btn {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.footer-btn:hover {
    transform: scale(1.03);
    background-color: #f50057;
}


.footer-bottom {
    border-top: 1px solid rgba(136, 14, 79, 0.1);
    padding-top: 30px;
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #880e4f;
    font-weight: 600;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.8rem;
    color: #ad1457;
    margin-top: 20px;
}
