
/* Home Page Styles */
#welcome-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

#welcome-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#welcome-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #218838;
}

/* Gallery Section */
#gallery {
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
}

#gallery h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

