/* Adam GK Photography – Style Sheet */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Figtree', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.5;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Header and Contact */
header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

header h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  color: #ccc;
  margin-top: 0.5rem;
}

.contact {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.contact a {
  color: #0ff;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.contact a:hover {
  color: #fff;
}

/* Fade Animation */
.fade-in {
  animation: fadeIn 1.5s ease-in-out both;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
}
