/* General resets and base styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Gallery Image Styling */
#gallery-container img {
  border-radius: 0.75rem;
}
.glow-hover:hover {
  box-shadow: 0 0 12px 4px rgba(34, 197, 94, 0.5); /* green-500 glow */
  border: 2px solid #22c55e;
}


/* Footer Styling Fixes */
footer input[type="email"] {
  padding: 10px 12px;
  border-radius: 6px;
  width: 100%;
  border: none;
  font-size: 14px;
  color: #333;
  outline: none;
  background-color: #fff;
}

footer input[type="email"]::placeholder {
  color: #888;
}

footer button {
  background-color: #22c55e;
  color: white;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

footer button:hover {
  background-color: #16a34a;
}

/* Social Icons Fix */
footer .flex.space-x-4 a i {
  font-size: 22px;
  transition: transform 0.2s ease, color 0.3s ease;
}

footer .flex.space-x-4 a:hover i {
  transform: scale(1.1);
  color: #4ade80;
}
footer i {
  font-style: normal;
  font-weight: 400;
  display: inline-block;
}


/* Responsive Padding Fixes for Smaller Devices */
@media (max-width: 640px) {
  footer .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
