<footer class="footer">
  <div class="footer-inner">
    <span>© Rhombus Room</span>
    <span class="footer-dot">•</span>
    <a href="contact.html">Bookings</a>
  </div>
</footer>

body {
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 400px;
    border: 1.5px solid rgba(192, 132, 252, 0.06);
    transform: translate(-50%, -50%) skewX(-25deg);
    pointer-events: none;
    z-index: 0;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1a1a1a;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #c084fc;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: transform 0.25s ease, font-weight 0.25s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #c084fc;
    transition: width 0.25s ease;
}

nav a:hover {
    font-weight: 600;
    transform: skewX(-8deg);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    font-weight: 600;
    color: #d8b4fe; /* softer lavender highlight */
}

nav a.active::after {
    width: 100%;
    height: 2px;
    background-color: rgba(192, 132, 252, 0.5);
}

.hero {
    text-align: center;
    padding: 160px 20px;
    background: linear-gradient(
        rgba(18,18,18,0.85),
        rgba(18,18,18,0.95)
    );
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero {
  text-align: center;
  padding: 180px 20px;
  position: relative;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.92)),
    url("../images/hero.jpg");

  background-size: cover;
  background-position: center 20%;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) skewX(-20deg);
    border: 2px solid rgba(192, 132, 252, 0.10);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 300px;
    left: 52%;
    top: 48%;
    transform: translate(-50%, -50%) skewX(18deg);
    border: 1px solid rgba(192, 132, 252, 0.06);
    pointer-events: none;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.page h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}

.note {
    color: #aaa;
    margin-top: 20px;
}

.downloads {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 16px;
    border: 1px solid rgba(192, 132, 252, 0.35);
    border-radius: 10px;
    color: #d8b4fe;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: skewX(-6deg);
    border-color: rgba(192, 132, 252, 0.6);
}

.footer {
  margin-top: 80px;
  padding: 30px 20px;
  border-top: 1px solid rgba(192, 132, 252, 0.08);
  color: #aaa;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer a {
  color: #d8b4fe;
  text-decoration: none;
}

.footer a:hover {
  font-weight: 600;
  transform: skewX(-8deg);
}

.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 12px;
  text-decoration: none;
  color: #d8b4fe;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  transform: skewX(-8deg);
  border-color: rgba(192, 132, 252, 0.6);
}

.band-section {
  margin-top: 80px;
}

.band-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.band-member {
  text-align: center;
}

.band-member img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(192, 132, 252, 0.15);
  margin-bottom: 16px;
}

.role {
  font-weight: 600;
  color: #d8b4fe;
  margin-bottom: 10px;
}

.bio {
  color: #bbb;
  font-size: 0.95rem;
}

/* Mobile layout */
@media (max-width: 1000px) {
  .band-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .band-grid {
    grid-template-columns: 1fr;
  }
}

