/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ffb6c1, #dda0dd);
    text-align: center;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 90%;
}

.hero img {
    width: 150px;
    border-radius: 50%;
    border: 5px solid white;
}

.hero h1 {
    font-size: 2.5em;
    margin-top: 15px;
    color: #8b008b;
}

/* Introduction */
.intro {
    font-size: 1.2em;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 85%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
}

.gallery img {
    width: 90%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Call to Action */
.cta {
    margin: 40px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.cta a {
    text-decoration: none;
    background: #ff1493;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
}

.cta a:hover {
    background: #c71585;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .intro {
        font-size: 1em;
    }
    .gallery img {
        max-width: 200px;
    }
    .cta {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }
    .intro {
        font-size: 0.9em;
    }
    .gallery img {
        max-width: 180px;
    }
    .cta {
        font-size: 0.9em;
    }
    .cta a {
        padding: 10px 18px;
    }
}