body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: white;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar li {
    margin: 0 15px;
    cursor: pointer;
    transition: 0.3s;
}

.navbar li:hover {
    transform: scale(1.2);
    color: yellow;
}

/* Sections */
.section {
    padding: 100px 20px;
    text-align: center;
}

/* Hero Animation */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fade Animation */
.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 200px;
    border-radius: 20px;
    transition: 0.4s;
}

.gallery img:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Message Button */
button {
    padding: 10px 20px;
    border: none;
    background: red;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.2);
    background: pink;
}