/* ============================
   HOME PAGE
============================ */

.hero-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1.2s ease-out forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   HOME HERO
============================ */

.ui-hero-home {
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    position: relative;
/*    background-image: url('/images/hero.jpg'); */
    background-image: url('/images/parallax.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.ui-hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.65)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff;
}


@media (max-width: 575.98px) {
  .ui-hero-home {
    min-height: 180px;   /* instead of Xvh so iPhone works */
    background-position: center top;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .ui-hero-home {
    min-height: 36vh;
    background-position: center top;
  }

  .hero-title {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .ui-hero-home {
    min-height: 42vh;
    background-position: center top;
  }

  .hero-title {
    font-size: 1.6rem;
  }
}


/* ============================
   PARALLAX COMING GIGS
============================ */

.ui-coming-gigs {
    background: transparent;
    border: none;
}

.parallax-coming-gigs {
    background-image: url('/images/parallax.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

/* Overlay wrapper */
.ui-gig-overlay {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0,0,0,0.45);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* Gig list */
.ui-gig-list .list-group-item {
    background: transparent !important;
    border-color: rgba(255,255,255,0.15);
    color: #ffffff;
}

.ui-gig-list .list-group-item:hover {
    background: rgba(255,255,255,0.08) !important;
}

/* Gig links */
.ui-gig-link {
    color: #66aaff;
    text-decoration: underline;
}

/* Hover effect for gig entries */
.gig-entry:hover {
    background-color: rgba(0, 0, 0, 0.05);
}