:root{
  --solid:#0a0707; /* the colour the sides/bottom fade into */
  --tagline-offset: 420px; 
}

/* Base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Inter", system-ui, sans-serif;
  color:#ffffec;
  background:var(--solid);
  overflow-x:hidden;
}

/* Page wrapper holds the scrolling background column */
.page{
  position:relative;
  min-height:100%;
}

.page::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(850px, 100%);
  z-index: 0;

  /* Base image + multiple gradient layers for fading edges */
  background:
    /* top overlay to fade hero image into background */
    linear-gradient(
      to bottom,
      rgba(10,7,7,0) 55%,
      rgba(10,7,7,0.55) 80%,
      var(--solid) 100%
    ) top center / 100% calc(min(850px, 100vw) * 3 / 2) no-repeat,
    /* side fades */
    linear-gradient(to right, var(--solid) 0%, rgba(10,7,7,0) 10%, rgba(10,7,7,0) 90%, var(--solid) 100%),
    /* bottom fade */
    linear-gradient(to bottom, rgba(10,7,7,0) 70%, var(--solid) 100%),
    /* image itself */
    url("./assets/hero_main.jpg");
  background-blend-mode: normal;
  background-repeat: no-repeat;
  background-position: top center, top center, top center, top center;
  background-size:
    100% calc(min(850px, 100vw) * 3 / 2),
    100% 100%,
    100% 100%,
    contain;
}

/* Edge & bottom fades (still scroll with page because they’re on .page) */
.page::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1; /* above image column, below content */
  background:
    /* left fade */
    radial-gradient(140% 100% at -10% 50%, var(--solid) 35%, rgba(10,7,7,0) 60%) left / 50% 100% no-repeat,
    /* right fade */
    radial-gradient(140% 100% at 110% 50%, var(--solid) 35%, rgba(10,7,7,0) 60%) right / 50% 100% no-repeat,
    /* bottom fade */
    linear-gradient(to bottom, rgba(10,7,7,0) 65%, var(--solid) 100%);
}

/* Content sits above the fades and the image column */
.hero, .section{ position:relative; z-index:2 }

/* Hero text near the top */
.hero{
  min-height:60vh;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  text-align:center;
  padding-top:80px;
}

.hero .about h3.script {
  font-size: 3em;
  margin-top: 0px;
  margin-bottom: 0px;
}

.script {
  font-family:"Dancing Script",cursive;
}

.hero .about{

  /* font-size: clamp(24px, 3.5vw, 40px); */
  margin: var(--tagline-offset) 0 0 0;   /* ← uses the variable above */
}

.hero h1{
  font-family:"Cinzel",serif;
  font-size: clamp(64px, 10vw, 160px);
  letter-spacing:.05em; margin:0;
  text-shadow:
    0 0 10px rgba(216,66,54,.7),
    0 0 26px rgba(216,66,54,.55),
    0 0 64px rgba(216,66,54,.4);
}

.section.about{
  text-align:center;
}
.section.about p{
  margin-left:auto; margin-right:auto;
  max-width: 606px;
  line-height: 2em;
}

/* Visually hide but keep for screen readers & SEO */
.visually-hidden{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

.hero p{
  /* font-family:"Dancing Script",cursive; */
  /* font-size: clamp(24px, 3.5vw, 40px); */
  margin: 12px 0 0 0;
}

/* Sections translucent so background is visible */
.section{
  margin: 60px auto;
  max-width: 850px;
  padding: 22px;
  /* background: rgba(12,9,9,.55);
  border-radius: 16px;
  backdrop-filter: saturate(120%) blur(2px); */
}
.section h2{
  font-family:"Cinzel",serif;
  margin-top:0;
  text-align: center;
}


/* Gigs block */
.gigs-list{
  list-style:none; margin:16px 0 0 0; padding:0; display:grid; gap:12px;
}
.gig{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  background: rgba(12,9,9,.55);
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
}

.date-badge{
  display:grid; place-items:center;
  width:60px; height:60px; border-radius:12px;
  background: linear-gradient(to bottom, rgba(216,66,54,.15), rgba(216,66,54,.06));
  box-shadow: inset 0 0 0 2px rgba(216,66,54,.22);
  text-align:center;
}
.date-badge .d{
  display:block; font-weight:800; font-size:18px; line-height:1; letter-spacing:.02em; color:#f7efe7;
}
.date-badge .m{
  display:block; font-size:11px; letter-spacing:.18em; margin-top:4px; color:#e6d8ccbe;
}

.gig-info .title{
  font-weight:600; color:#f7efe7; margin:0 0 2px 0;
}
.gig-info .meta{
  font-size:14px; color:#e6d8ccbe;
}

.gig-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:10px;
  color:#f7efe7; text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(to bottom, rgba(216,66,54,.18), rgba(216,66,54,.06));
}
.gig-cta:hover{
  box-shadow:0 0 0 3px rgba(216,66,54,.22) inset;
}

/* Mobile stacking */
@media (max-width:560px){
  .gig{
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .gig-cta{ grid-column: 1 / -1; margin-top:8px; justify-self:end; }
}

/* === Video Showcase Section === */
.video-showcase {
  text-align: center;
}

/* Responsive two-column grid */
.video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Each video card */
.video-card {
  background: rgba(12, 9, 9, 0.55);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(216, 66, 54, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(216, 66, 54, 0.3);
}

/* Thumbnail image */
.video-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  filter: brightness(0.92);
  transition: filter 0.3s ease;
  object-fit: cover;
}

.video-card:hover img {
  filter: brightness(1);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #0c0909;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Title under each card */
.video-card h3 {
  font-family: "Dancing Script", cursive;
  font-size: clamp(22px, 3vw, 32px);
  color: #ffb3a3;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(216,66,54,0.4);
}

/* === Social Links Section === */
.social-links {
  text-align: center;
}

.social-links h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
  color: #f7efe7;
}

.social-links p {
  color: #e6d8ccbe;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.5;
}

/* Grid layout */
.social-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Social buttons */
/* === Social Links === */
.social-links {
  text-align: center;
  padding-top: 60px;
}

.social-links h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #f7efe7;
  margin-bottom: 10px;
}

.social-links p {
  color: #e6d8ccbe;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Row 1: icons */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Circle icons */
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(12,9,9,0.55);
  color: #f7efe7;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease, background 0.3s ease;
}

.social svg {
  width: 28px;
  height: 28px;
}

/* Hover accent */
.social--ig:hover { color: #e1306c; background: rgba(225,48,108,0.15); }
.social--fb:hover { color: #1877f2; background: rgba(24,119,242,0.15); }
.social--wa:hover { color: #25d366; background: rgba(37,211,102,0.15); }
.social--yt:hover { color: #ff0000; background: rgba(255,0,0,0.15); }

/* Row 2: email */
.email-line {
  margin-top: 25px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(12,9,9,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f7efe7;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.email-link:hover {
  background: rgba(248,113,113,0.15);
  color: #f87171;
}

.email-link svg {
  width: 22px;
  height: 22px;
}

/* Row 3: phone */
.phone-line {
  margin-top: 20px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(12,9,9,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f7efe7;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.phone-link:hover {
  background: rgba(216,66,54,0.15);
  color: #f87171;
}

.phone-link svg {
  width: 22px;
  height: 22px;
}

.footer {
  text-align: center;
}
