body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #222;
  color: #fff;
}

.landing {
  background: #181818;
  text-align: center;
  padding: 40px 20px 20px 20px;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-family: "Georgia", serif;
  letter-spacing: 2px;
}

.landing p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #ffd6a0;
}

.btn {
  background: #e67e22;
  color: #fff;
  padding: 10px 28px;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.12);
}

.btn:hover {
  background: #d35400;
}

.gallery-section {
  padding: 40px 20px;
  background: #222;
}

.gallery-section h2 {
  text-align: center;
  color: #e67e22;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.18);
}

footer {
  background: #181818;
  color: #ffd6a0;
  text-align: center;
  padding: 32px 10px 20px 10px;
  font-size: 1rem;
}

footer a {
  color: #e67e22;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 700px) {
  .gallery-grid img {
    max-width: 120px;
    height: 80px;
  }
  h1 {
    font-size: 1.3rem;
  }
  .gallery-section h2 {
    font-size: 1rem;
  }
  .logo-img {
    width: 60px;
    height: 60px;
  }
  .btn {
    padding: 7px 14px;
    font-size: 0.9rem;
  }
}
