* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  color: #e6e8ef;
}

.header {
    width: 100%;
    background: #05070be0;
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 14px;
    display: flex;
    justify-content: space-between;
}

.menu > a {
    margin-left: 20px;
    color: #aaa;
    text-decoration: none;
}

.ahref{
    text-decoration: none;
    color: white;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(#0007,#000),
    url("https://images.unsplash.com/photo-1518972559570-7cc1309f3229")
    center/cover;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
}

.hero > .hero-inner h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero > .hero-inner p {
    font-size: 17px;
    margin-bottom: 24px;
    font-weight: 600;
}

.btn {
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    background: #ffd400;
    color: black;
    font-weight: 600;
}

.cons-about{
    background: #090b0f;
}

.concerts {
    padding: 80px 20px;
}

.concerts-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(180deg, #1a1f2d, #111522);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.concerts-card h2 {
  margin-bottom: 16px;
}

.concerts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.concerts-table th {
  text-align: left;
  color: #9aa0b4;
  font-weight: 500;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.concerts-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.concerts-table tr:last-child td {
  border-bottom: none;
}

.ticket-btn {
  background: #ff2f5e;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.ticket-btn:hover {
  filter: brightness(0.9);
}

.members-section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.members-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.member-card {
  background: #151a24;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
}

.member-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.member-info {
  padding: 14px 16px;
  background: linear-gradient(180deg, #1b2030, #121622);
  font-size: 14px;
  color: #cfd3e6;
  text-align: left;
}

.history-section {
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    #0b1a23 0%,
    #0b0e14 40%,
    #1a0f1d 100%
  );
}

.history-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.history-text h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.history-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #d6d9e5;
  margin-bottom: 16px;
}

.history-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  display: block;
}

.contact-section {
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    #2a0f1c 0%,
    #0e1118 50%,
    #0b1a23 100%
  );
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #aab0c0;
  font-size: 14px;
  margin-bottom: 50px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  margin-bottom: 6px;
  color: #cdd2e0;
}

.form-group input,
.form-group textarea {
  background: #0f1520;
  border: 1px solid #1f2635;
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff2b55;
}

.btn-send {
  margin-top: 10px;
  padding: 12px 26px;
  background: #ff2b55;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn-send:hover {
  background: #ff466c;
}

.contact-map {
  background: #0f1520;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

.contact-map h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
}

.footer {
  background: #070b12;
  padding: 24px 20px;
  border-top: 1px solid #151b28;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #aab0c0;
  font-size: 13px;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
  white-space: nowrap;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: #aab0c0;
  text-decoration: none;
  margin-left: 14px;
  font-size: 13px;
}

.footer-right a:hover {
  color: #ff2b55;
}
