/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Black background */
    color: #FFD700; /* Gold text */
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #000;
    border-bottom: 2px solid #FFB6C1; /* Soft pink highlight */
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.tagline {
    font-size: 1.2rem;
    color: #FFB6C1; /* Soft pink */
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #FFD700; /* Gold */
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover, .btn:focus {
    background-color: #FFB6C1; /* Soft pink on hover */
}

.whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
}

.whatsapp:hover, .whatsapp:focus {
    background-color: #128C7E;
}

/* About Section */
.about {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #111; /* Slightly lighter black for contrast */
    border-bottom: 1px solid #FFB6C1;
}

.about h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    color: #FFD700;
}

/* Gallery Section */
.gallery {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #000;
}

.gallery h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 on mobile */
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 150px; /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #FFB6C1; /* Soft pink border */
}

/* Contact Section */
.contact {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #111;
    border-bottom: 1px solid #FFB6C1;
}

.contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.social-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social-link:hover, .social-link:focus {
    color: #FFB6C1;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #000;
    color: #FFD700;
    margin-top: auto;
}

/* Media Queries for Larger Screens */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* 4x1 on larger screens */
    }

    .gallery-grid img {
        height: 200px; /* Slightly taller for desktops */
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .about h2, .gallery h2, .contact h2 {
        font-size: 2rem;
    }
}