/* Gallery Welcome Section */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

/* Gallery Welcome Image */
.welcome-image {
    width: 50%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Welcome Text */
.welcome-text {
    width: 50%;
    padding-left: 20px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Heading Font & Style */
.welcome-text h1 {
    font-size: 24px;
    font-family: 'Great Vibes', cursive;
    color: #222;
    margin-bottom: 10px;
}

/* Paragraph Spacing */
.welcome-text p {
    margin-bottom: 15px;
}


/* Mobile Responsive Design */
@media (max-width: 500px) {
    /* Adjust Welcome Section */
    .welcome-section {
      flex-direction: column; /* Stack elements */
      padding: 20px;
    }
  
    .welcome-image {
      width: 100%; /* Full width */
      max-height: 250px; /* Reduce image height */
    }
  
    .welcome-text {
      width: 100%;
      padding-left: 0;
      text-align: center;
      font-size: 12px; /* Reduce font size */
    }
  
    .welcome-text h1 {
      font-size: 18px;
    }
}