/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section */
#gallery-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

#gallery-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#gallery-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#gallery-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFD700; /* Yellow from the logo */
}

#gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#gallery-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Gallery Section */
#gallery {
    background-color: #f9f9f9;
    padding: 60px 20px;
    color: #003366; /* Dark blue from the logo */
}

.section-title {
    font-size: 2.5rem;
    color: #28a745; /* Green from the logo */
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Ensures full image is visible */
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Call to Action Section */
#call-to-action {
    background-color: #28a745; /* Green from the logo */
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #FFD700; /* Yellow from the logo */
    color: #003366;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #dc3545; /* Red from the logo */
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #gallery-hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
