.elementor-7 .elementor-element.elementor-element-5b4eab8{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5b4eab8 *//* Общие сбросы и переменные */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Шапка сайта */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff4500;
}

/* Главный баннер */
.hero {
  position: relative;
  height: 80vh;
  background: url('stage-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(10,10,10,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.hero-logo {
  max-width: 600px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.3));
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: linear-gradient(135deg, #d32f2f, #f57c00);
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4);
}

/* Секция состава */
.band-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.member-card {
  background: #141414;
  border: 1px solid #282828;
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.member-card:hover {
  border-color: #f57c00;
  transform: translateY(-5px);
}

.member-photo-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.member-card:hover .member-photo {
  filter: grayscale(0%);
}

.member-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f57c00;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.member-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .nav {
    gap: 1rem;
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}/* End custom CSS */