/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(45deg, #ff6b6b, #f7b731, #4b7bec, #20bf6b);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    color: white;
    text-align: center;
}

/* Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-bottom: 5px solid gold;
}

header h1 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Navigation Bar */
nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    font-weight: bold;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #ffdd59;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 120px 20px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* Slider */
.slider {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 90%;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* About Page */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 20px;
}

.about-text {
    max-width: 600px;
}

/* Contact Page */
.contact {
    padding: 40px;
}

.contact a {
    color: #ffdd59;
    font-weight: bold;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #1EBE57;
}

/* Footer */
footer {
    background: #222;
    padding: 10px;
    margin-top: 20px;
}
