/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Banner Section */
.banner {
    background-image: url('./assets/image/banner1.jpeg');
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    color: white;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* About Agency Section */
.about-agency h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-agency p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.about-agency .btn {
    font-size: 1rem;
    padding: 0.5rem 2rem;
}

/* Gallery Section */
.gallery img {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

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

/* Perfect Wedding Section */
.perfect-wedding {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.perfect-wedding h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.perfect-wedding p {
    font-size: 1.25rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }

    .banner p {
        font-size: 1.25rem;
    }

    .about-agency h2 {
        font-size: 2rem;
    }

    .gallery img {
        width: 100%;
    }

    .perfect-wedding h2 {
        font-size: 2rem;
    }
}
