* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f7fb;
  color: #222;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #ffffff, #e9eefc);
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #555;
}

.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 8px;
  text-decoration: none;
  border-radius: 10px;
  background: #222;
  color: white;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: white;
  color: #222;
  border: 1px solid #ccc;
}

.about,
.gallery,
.contact {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}

.about h2,
.gallery h2,
.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about p,
.contact p,
.youtube-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.email-link {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
  margin-top: 10px;
}

.email-link:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 30px 20px;
  color: #666;
  font-size: 0.95rem;
}