/* Общие стили */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
  font-weight: 600;
  color: #fff;
}

p {
  margin-bottom: 1em;
  color: #ccc;
}

a {
  color: #ff5959;
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 1.2em;
}

ul li::before {
  content: "✔";
  color: #ff5959;
  margin-right: 0.6em;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid #222;
}

/* Hero */
.hero {
  background: 
  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
  url('images/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
  
.hero h1 {
  font-size: 5rem; /* больше текста */
  font-family: 'Oswald', sans-serif; /* стильный геометричный шрифт */
  text-transform: uppercase;
  letter-spacing: 2px;

  /* Обрамление */
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;

  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  color: #fff;
}


.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #ff5959;
  color: #fff;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e64747;
}

/* Галерея */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #333;
}

/* Команда */
.team .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.artist {
  flex: 1 1 30%;
  text-align: center;
}

.artist img {
  width: 100%;
  border-radius: 50%;
  max-width: 180px;
  margin-bottom: 1rem;
  border: 3px solid #ff5959;
}

.artist h3 {
  margin: 0.5rem 0 0.2rem;
}

.artist p {
  font-size: 0.95rem;
  color: #aaa;
}

/* Контакты */
.contact ul li {
  margin-bottom: 0.8rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .team .grid {
    flex-direction: column;
    align-items: center;
  }

  .artist {
    flex: 1 1 100%;
  }
}
