/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5a623, #f78c40); /* Gradient from a bright orange to a warm coral */
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff6b6b, #ff9a8b); /* Gradient from a bright pink to a softer pink */
    color: #fff;
    text-align: center;
    padding: 50px 20px; /* Generous padding */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3.5em; /* Larger font size for greater impact */
    margin: 0;
    font-weight: bold;
}

/* About Us Section */
.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #ffffff, #e6e6e6); /* Gradient from white to light gray */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    max-width: 1200px;
}

.about-us .content {
    max-width: 90%;
    text-align: center;
    margin-bottom: 30px;
}

.about-us p {
    font-size: 1.4em;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 50px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); /* Gradient from light blue to a softer blue */
    text-align: center;
    border-top: 8px solid #ff6b6b; /* Border color matches header gradient */
    border-radius: 15px;
    margin: 20px auto;
    max-width: 1200px;
}

.gallery h2 {
    font-size: 3em; /* Large, eye-catching header */
    color: #ff6b6b; /* Warm color to match header gradient */
    margin-bottom: 30px;
    font-weight: bold;
}

/* Photo Grid Styles */
.photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.photo img {
    width: 1000px; /* Larger image size for a more prominent display */
    height: 600px; /* Consistent height */
    object-fit: cover;
    border-radius: 20px; /* Elegant rounded corners */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo img:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #ff6b6b, #ff9a8b); /* Gradient consistent with header */
    color: #fff;
    text-align: center;
    padding: 40px;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 1.2em;
}

/* Responsive Styles */

/* Tablet and Small Screens */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .about-us {
        padding: 40px;
    }

    .about-us p {
        font-size: 1.2em;
    }

    .gallery h2 {
        font-size: 2.2em;
    }

    .photo img {
        width: 300px;
        height: 300px;
    }

    footer {
        padding: 25px;
    }

    footer p {
        font-size: 1.1em;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    h1 {
        font-size: 1.8em;
    }

    .about-us {
        padding: 20px;
        margin: 10px;
    }

    .about-us p {
        font-size: 1em;
    }

    .gallery h2 {
        font-size: 1.6em;
    }

    .photo img {
        width: 250px;
        height: 250px;
    }

    footer {
        padding: 15px;
    }

    footer p {
        font-size: 1em;
    }
}
