/* ============================================================
   Hotel Rumors – Global Stylesheet
   ============================================================ */

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #000000;
  --bg2:       #0d1728;
  --bg3:       #111111;
  --accent:    #4ecdc4;
  --accent2:   #ff6b6b;
  --text:      #ffffff;
  --muted:     #999999;
  --max-w:     1100px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---- Utility ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.section-title span { color: #fff; }

/* ---- Site Header / Hero ----------------------------------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image sits in the flow — defines the hero height with zero gap */
.hero__bg {
  display: block;
  width: 100%;
  height: auto;
}

.hero:hover .hero__bg { transform: scale(1.0); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.05) 55%,
    rgba(0,0,0,0.7)  100%
  );
}

.hero__content {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__logo {
  width: clamp(220px, 40vw, 380px);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ---- Site Nav --------------------------------------------- */
.site-nav {
  background: transparent;
  padding: 18px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.site-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 28px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  border-color: var(--accent);
  background: rgba(78, 205, 196, 0.18);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--accent);
}

/* ---- Concert Photo Section -------------------------------- */
.concert-photo {
  width: 100%;
  height: clamp(400px, 60vw, 680px);
  overflow: hidden;
  position: relative;
}

.concert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- Album Carousel --------------------------------------- */
.albums-section {
  background: #000;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.album-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.album-carousel::-webkit-scrollbar { display: none; }

.album-item {
  flex: 0 0 calc(100% / 6);
  min-width: 150px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album-item:hover img { transform: scale(1.08); }

.album-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.album-item:hover .album-item__overlay {
  background: rgba(0,0,0,0.45);
}

.album-item__title {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.album-item:hover .album-item__title {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Events Section --------------------------------------- */
.events-section {
  padding: 50px 0;
  min-height: calc(100vw * 836 / 1238);
  background: url('../images/tropicana-phones.jpg') center center / contain no-repeat, #000;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  display: flex;
  align-items: center;
}

.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.events-section .container {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

/* Shows list */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Loading state */
.shows-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

.shows-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Empty / error state */
.shows-empty {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
}

.shows-empty a {
  color: var(--accent);
  text-decoration: underline;
}

/* Individual show card */
.show-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(17,17,17,0.8);
  border: 1px solid #222;
  border-radius: 10px;
  padding: 18px 22px;
  transition: border-color 0.2s;
}

.show-card:hover {
  border-color: rgba(78,205,196,0.4);
}

.show-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1;
}

.show-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.show-day {
  font-size: 1.6rem;
  font-weight: 700;
}

.show-info {
  flex: 1;
  min-width: 0;
}

.show-name {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 3px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-venue {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 0 2px;
}

.show-datetime {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.show-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.show-cal-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.show-cal-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 520px) {
  .show-card {
    flex-wrap: wrap;
    gap: 14px;
  }
  .show-cal-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- New Music Section ------------------------------------ */
.music-section {
  padding: 70px 0;
  background: url('../images/guitar-bkg.jpg') center center / cover no-repeat, #000;
  position: relative;
}

.music-section .container { max-width: 800px; position: relative; z-index: 1; }

.soundcloud-embed {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.soundcloud-embed iframe {
  width: 100%;
  display: block;
  border: none;
}

/* ---- Video Section ---------------------------------------- */
.video-section {
  background: var(--bg);
  padding: 0;
}

.video-section iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ---- Monaco Effect Section -------------------------------- */
.monaco-section {
  background: url('../images/tvtable.jpg') center center / cover no-repeat;
  padding: 70px 0;
  position: relative;
}

.monaco-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.monaco-section .container { position: relative; z-index: 1; }

.monaco-section__intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.monaco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.monaco-grid__item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.monaco-grid__item:hover { transform: translateY(-4px); }

.monaco-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monaco-grid__btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.monaco-grid__btn:hover { background: rgba(78,205,196,0.25); color: var(--accent); }

/* ---- Contact / Footer ------------------------------------- */
.contact-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/table.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.contact-section__content {
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 32px;
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-item h3 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--accent); }

.site-footer {
  background: #000;
  text-align: center;
  padding: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid #1a1a1a;
}

/* ---- Discography Page ------------------------------------- */
.page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 32px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.hotelindieband.com/wp-content/uploads/2022/11/DSC_9136.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.back-home {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 10;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.back-home:hover { opacity: 1; }

.page-hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  padding: 60px 0;
}

.release-card {
  text-align: center;
  transition: transform 0.3s;
}

.release-card:hover { transform: translateY(-6px); }

.release-card__art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.6);
  margin-bottom: 12px;
  transition: box-shadow 0.3s;
}

.release-card:hover .release-card__art {
  box-shadow: 0 10px 36px rgba(78,205,196,0.25);
}

.release-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.release-card__year {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.release-card__type {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(78,205,196,0.15);
  color: var(--accent);
  border: 1px solid rgba(78,205,196,0.35);
  padding: 2px 8px;
  border-radius: 20px;
}

.stream-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.stream-btn {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}

.stream-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Band & Media Page ------------------------------------ */
.band-hero {
  background-image: url('https://www.hotelindieband.com/wp-content/uploads/2022/11/DSC_1585.jpg');
}

.epk-banner {
  background: var(--bg2);
  padding: 40px 24px;
  text-align: center;
}

.epk-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  opacity: 0.9;
}

.epk-banner h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.epk-banner p { color: rgba(255,255,255,0.7); margin-bottom: 18px; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78,205,196,0.4);
}

.members-section {
  padding: 0;
  position: relative;
}

.members-section img {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: block;
}

.live-gallery-section {
  padding: 60px 0;
  background: var(--bg3);
}

.live-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}

.live-gallery__item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.live-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.live-gallery__item:hover img { transform: scale(1.06); }

.band-videos-section {
  background: var(--bg);
  padding: 60px 0;
}

.band-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.band-video-item { overflow: hidden; border-radius: 8px; }

.band-video-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ---- Responsive ------------------------------------------- */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .monaco-grid { grid-template-columns: 1fr; max-width: 340px; }
  .album-item { flex: 0 0 calc(100% / 3); }
  .band-videos-grid { grid-template-columns: 1fr; }
  .discography-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .live-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .album-item { flex: 0 0 50%; }
  .discography-grid { grid-template-columns: 1fr; }
}

/* ---- Show Modal ------------------------------------------- */
.show-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.show-modal[hidden] { display: none; }

.show-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.show-modal__panel {
  position: relative;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  animation: modal-in 0.22s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.show-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.show-modal__close:hover { background: rgba(255,255,255,0.18); }

.show-modal__image {
  width: 100%;
  max-height: 260px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.show-modal__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.show-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px 20px;
  border-bottom: 1px solid #2a2a2a;
}

.show-modal__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  border-radius: 10px;
  padding: 8px 14px;
  line-height: 1;
  min-width: 58px;
}

.show-modal__month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.show-modal__day {
  font-size: 2rem;
  font-weight: 700;
}

.show-modal__title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  margin: 4px 0 6px;
  padding-right: 30px;
  color: #fff;
}

.show-modal__datetime {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.show-modal__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.show-modal__location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1.5;
}

.show-modal__location svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.show-modal__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  white-space: pre-wrap;
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
}

.show-modal__footer {
  padding: 16px 24px 24px;
}

.show-modal__cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.show-modal__cal-btn svg {
  width: 16px;
  height: 16px;
}

.show-modal__cal-btn:hover { opacity: 0.85; }

.show-card { cursor: pointer; }
.show-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
