* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #f4f6ff;
  background: #0a0b16;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 24, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(120, 160, 255, 0.2);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: #e8efff;
  text-shadow:
    0 0 8px rgba(137, 221, 255, 0.25),
    0 0 16px rgba(223, 85, 255, 0.18);
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #d5daf2;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #8eeaff;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-logo-wrap {
  margin-bottom: 20px;
}

.hero-logo {
  display: block;
  max-width: min(520px, 90%);
  height: auto;
  filter: drop-shadow(0 0 10px rgba(110, 228, 255, 0.18))
          drop-shadow(0 0 18px rgba(210, 85, 255, 0.14));
}

.hero-home {
  background:
    linear-gradient(rgba(7, 10, 25, 0.45), rgba(7, 10, 25, 0.72)),
    url("images/aor-aura-hero.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(92, 229, 255, 0.10), transparent 38%),
    linear-gradient(240deg, rgba(218, 102, 255, 0.10), transparent 38%);
}

.hero-content {
  position: relative;
  padding: 90px 0;
  max-width: 760px;
}

.eyebrow {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #90ebff;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  margin-bottom: 20px;
  color: #eef3ff;
  text-shadow:
    0 0 12px rgba(110, 228, 255, 0.18),
    0 0 22px rgba(210, 85, 255, 0.14);
}

.hero-text {
  max-width: 640px;
  font-size: 1.1rem;
  color: #e1e5f8;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #cb48ff, #5ed9ff);
  color: #fff;
  box-shadow: 0 0 20px rgba(147, 82, 255, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(140, 225, 255, 0.45);
  background: rgba(12, 18, 40, 0.5);
  color: #f0f4ff;
}

.intro-section,
.featured-section {
  padding: 70px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}

.intro-section h2,
.featured-section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #eef3ff;
}

.intro-section p {
  margin-bottom: 14px;
  color: #cfd5ef;
}

.info-card,
.track-card {
  background: linear-gradient(180deg, rgba(26, 30, 58, 0.95), rgba(14, 17, 35, 0.95));
  border: 1px solid rgba(128, 167, 255, 0.18);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.info-card h3 {
  margin-bottom: 14px;
  color: #95eeff;
}

.info-card ul {
  padding-left: 18px;
  color: #d4daf2;
}

.info-card li {
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card-image {
  height: 180px;
  border-radius: 12px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

.placeholder.one {
  background: url("Images/love-will-conquer-all.png") center center / cover no-repeat;
}

.placeholder.two {
  background: url("Images/city-of-strangers.png") center center / cover no-repeat;
}

.placeholder.three {
  background: url("Images/wherever-you-lead.png") center center / cover no-repeat;
}

.track-card h3 {
  margin-bottom: 10px;
  color: #eef3ff;
}

.track-card p {
  color: #cfd5ef;
}

.site-footer {
  border-top: 1px solid rgba(120, 160, 255, 0.2);
  background: #090b14;
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #aeb7db;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .two-column,
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 70px 0;
  }
}
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-about {
  background:
    linear-gradient(rgba(7, 10, 25, 0.58), rgba(7, 10, 25, 0.78)),
    url("Images/aor-aura-hero.png") center center / cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(92, 229, 255, 0.12), transparent 38%),
    linear-gradient(240deg, rgba(218, 102, 255, 0.12), transparent 38%);
}

.page-hero-content {
  position: relative;
  padding: 70px 0;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #eef3ff;
  text-shadow:
    0 0 12px rgba(110, 228, 255, 0.18),
    0 0 22px rgba(210, 85, 255, 0.14);
}

.page-hero p {
  max-width: 620px;
  color: #e1e5f8;
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.content-section {
  padding: 70px 0;
}

.alt-section {
  background: rgba(255, 255, 255, 0.02);
}

.content-panel,
.single-panel {
  background: linear-gradient(180deg, rgba(26, 30, 58, 0.95), rgba(14, 17, 35, 0.95));
  border: 1px solid rgba(128, 167, 255, 0.18);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.content-panel h2,
.single-panel h2 {
  margin-bottom: 16px;
  color: #eef3ff;
}

.content-panel p,
.single-panel p {
  color: #cfd5ef;
  margin-bottom: 14px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.theme-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(128, 167, 255, 0.15);
  border-radius: 14px;
  padding: 20px;
}

.theme-box h3 {
  color: #95eeff;
  margin-bottom: 10px;
}

.theme-box p {
  color: #cfd5ef;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .theme-grid {
    grid-template-columns: 1fr;
  }
}
.page-hero-music {
  background:
    linear-gradient(rgba(7, 10, 25, 0.58), rgba(7, 10, 25, 0.78)),
    url("Images/aor-aura-hero.png") center center / cover no-repeat;
}

.section-intro {
  margin-bottom: 24px;
}

.music-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}

.music-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(128, 167, 255, 0.15);
  border-radius: 14px;
  padding: 18px;
}

.music-art {
  height: 180px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.music-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #eef3ff;
}

.music-copy p {
  color: #cfd5ef;
  margin-bottom: 12px;
}

.text-link {
  color: #8eeaff;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.text-link:hover {
  color: #d3f7ff;
}

@media (max-width: 800px) {
  .music-item {
    grid-template-columns: 1fr;
  }

  .music-art {
    height: 220px;
  }
}
.page-hero-gallery {
  background:
    linear-gradient(rgba(7, 10, 25, 0.58), rgba(7, 10, 25, 0.78)),
    url("Images/aor-aura-hero.png") center center / cover no-repeat;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(128, 167, 255, 0.15);
  border-radius: 14px;
  padding: 14px;
}

.gallery-image {
  height: 240px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

.gallery-card figcaption {
  color: #d9e3ff;
  font-weight: bold;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.page-hero-contact {
  background:
    linear-gradient(rgba(7, 10, 25, 0.58), rgba(7, 10, 25, 0.78)),
    url("Images/aor-aura-hero.png") center center / cover no-repeat;
}

.contact-list {
  padding-left: 18px;
  color: #d4daf2;
}

.contact-list li {
  margin-bottom: 10px;
}

.contact-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row label {
  margin-bottom: 8px;
  color: #95eeff;
  font-weight: bold;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(128, 167, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #eef3ff;
  font: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9ea8cb;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 1px solid rgba(142, 234, 255, 0.55);
  border-color: rgba(142, 234, 255, 0.55);
}
.gallery-core {
  background: url("Images/aor-aura-core.png") center center / cover no-repeat;
}

.gallery-love {
  background: url("Images/love-will-conquer-all.png") center center / cover no-repeat;
}

.gallery-city {
  background: url("Images/city-of-strangers.png") center center / cover no-repeat;
}

.gallery-lead {
  background: url("Images/wherever-you-lead.png") center center / cover no-repeat;
}
.gallery-so-long {
  background: url("Images/so-long.png") center center / cover no-repeat;
}

.gallery-determination {
  background: url("Images/my-determination.png") center center / cover no-repeat;
}
.music-love {
  background: url("Images/love-will-conquer-all.png") center center / cover no-repeat;
}

.music-city {
  background: url("Images/city-of-strangers.png") center center / cover no-repeat;
}

.music-lead {
  background: url("Images/wherever-you-lead.png") center center / cover no-repeat;
}

.music-so-long {
  background: url("Images/so-long.png") center center / cover no-repeat;
}

.music-determination {
  background: url("Images/my-determination.png") center center / cover no-repeat;
}