* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff5f8;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffb3d9;
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #f8a1c0;
}

header h1 {
    color: #ff66b2;
    font-size: 3rem;
    font-family: 'Cookie', cursive;
}

.kitty-logo {
    width: 60px;
    margin-top: 10px;
    animation: kittyWave 1.5s infinite alternate;
}

@keyframes kittyWave {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #ff66b2;
    font-weight: bold;
    font-size: 1.2rem;
}

#hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #ffb3d9;
    border-radius: 25px;
    margin: 30px auto;
    width: 90%;
    max-width: 900px;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Cookie', cursive;
}

#hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

#hero button {
    background-color: #ff66b2;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

#hero button:hover {
    background-color: #ff4d94;
}

section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff66b2;
}

#about p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
}

#projects {
    background-color: #ffeed5;
    padding: 60px 0;
}

.project-card {
    display: inline-block;
    width: 45%;
    margin: 20px 2.5%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-card h3 {
    color: #ff66b2;
    margin-bottom: 10px;
    font-family: 'Cookie', cursive;
}

#contact form {
    max-width: 500px;
    margin: 0 auto;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 2px solid #ff66b2;
    border-radius: 12px;
    font-size: 1rem;
}

#contact button {
    background-color: #ff66b2;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

#contact button:hover {
    background-color: #ff4d94;
}

footer {
    background-color: #ffb3d9;
    padding: 20px 0;
    text-align: center;
    color: white;
}

.kitty-footer {
    width: 50px;
    margin-top: 15px;
}