/*
Theme Name: Image Gallery Theme
Author: smg
Description: A responsive image gallery theme for WordPress.
Version: 1.0
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}
