/* Styles for the gallery section in index.html */

.gallery-section {
  padding: 60px 0;
  background-color: #fff;
}

.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.gallery-section .section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.main-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.main-gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.main-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.main-gallery-item:hover img {
  transform: scale(1.05);
}

.see-more-container {
  text-align: center;
  margin-top: 30px;
}

.see-more-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.see-more-btn:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .main-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
