/* AGNI - Full Theme Styles */

/* Root variables */
:root {
  --bg-main: #000000;
  --bg-alt: #0b0b0d;
  --bg-card: #151518;
  --primary-red: #ff3b2f;
  --primary-orange: #ff7a1a;
  --accent-yellow: #ffd447;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --border-soft: #2a2a2f;
  --shadow-deep: 0 18px 50px rgba(0, 0, 0, 0.8);
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.3s ease-out;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #2b0b0b 0, #000 55%);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

/* Utility classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary-red), var(--primary-orange));
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 80, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(255, 122, 26, 0.7);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary-orange);
  background: rgba(255, 122, 26, 0.07);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.45);
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section:nth-of-type(2n) {
  background: radial-gradient(circle at top left, #1b0502 0, #000 55%);
}

.section-title {
  font-family: 'Oswald', system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.1rem;
  color: var(--accent-yellow);
  margin-bottom: 0.4rem;
}

.section-heading {
  font-family: 'Oswald', system-ui;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.tag-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-yellow), var(--primary-red));
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', system-ui;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: conic-gradient(from 200deg, #ff3b2f, #ff7a1a, #ffd447, #ff3b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 95, 32, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--primary-red), var(--primary-orange));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  position: relative;
  transition: transform var(--transition-fast);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--transition-fast), top var(--transition-fast), bottom var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  bottom: -5px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
  margin-top: var(--nav-height);
  display: flex;
  align-items: stretch;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
filter: brightness(1.7);   /* 👈 test
  filter: grayscale(20%) contrast(1.05) brightness(0.6); */
  z-index:0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-band-placeholder.jpg');
  /* Suggested size: 1920x1080 or 1920x1200 */
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 80, 0, 0.25), transparent 60%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.75), #000 80%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3.5rem;
}

.hero-main {
  flex: 2;
  max-width: 640px;
}

.hero-tagline {
  font-family: 'Oswald', system-ui;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--accent-yellow);
}

.hero-title {
  font-family: 'Oswald', system-ui;
  font-size: clamp(3rem, 5vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}

.hero-title span.fire {
  background: linear-gradient(120deg, var(--primary-red), var(--primary-orange), var(--accent-yellow));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 100, 32, 0.9);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 1.7rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-yellow), var(--primary-red));
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.7);
}

.hero-side {
  flex: 1.1;
  max-width: 380px;
  background: rgba(0, 0, 0, 0.84);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
  padding: 1.5rem 1.3rem;
  backdrop-filter: blur(20px);
}

.hero-side-title {
  font-family: 'Oswald', system-ui;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hero-side-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.tour-mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  font-size: 0.82rem;
}

.tour-mini-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.tour-mini-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tour-mini-main {
  display: flex;
  flex-direction: column;
}

.tour-mini-city {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.tour-mini-venue {
  color: var(--text-muted);
}

.tour-mini-date {
  font-family: 'Oswald', system-ui;
  font-size: 0.85rem;
  text-align: right;
  color: var(--accent-yellow);
}

.hero-side-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-side-footer span strong {
  color: var(--accent-yellow);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.about-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
  font-size: 0.86rem;
}

.member-card {
  background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.15), #121217);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.9rem;
}

.member-role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-yellow);
  margin-bottom: 0.1rem;
}

.member-name {
  font-family: 'Oswald', system-ui;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.member-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.about-image-wrapper {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
  position: relative;
  background: radial-gradient(circle at top, #3a1208, #000);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.about-image-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* MUSIC */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.album-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.album-cover {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.3rem;
  height: 160px;
  background: radial-gradient(circle at top, #52140a, #090909);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--accent-yellow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.album-title {
  font-family: 'Oswald', system-ui;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.album-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
  font-size: 0.8rem;
}

.chip {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.6);
}

.album-actions {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* TOURS */
.tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.tour-list {
  background: rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-deep);
}

.tour-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.9fr 0.8fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.tour-row.header {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  border-bottom-color: rgba(255, 255, 255, 0.25);
  padding-top: 0;
}

.tour-row:last-child {
  border-bottom: none;
}

.tour-pill {
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.tour-side {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tour-side-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 1rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
}
/*Added for lightbox photo gallery*/
/* LIGHTBOX FOR GALLERY */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox-backdrop.active {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lightbox-image-wrapper {
  max-height: 80vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
}

.lightbox-image-wrapper img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  font-size: 0.85rem;
  color: #ddd;
}

.lightbox-controls {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: flex;
  gap: 0.4rem;
}

.lightbox-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
}

.lightbox-nav-left,
.lightbox-nav-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.9);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* make the arrows visible */
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.9);
}

.lightbox-nav-left { left: 10px; }
.lightbox-nav-right { right: 10px; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;  /* important for arrows */
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}


@media (max-width: 640px) {
  .lightbox-inner {
    max-width: 94vw;
    max-height: 92vh;
  }
  .lightbox-nav-left { left: 4px; }
  .lightbox-nav-right { right: 4px; }
}



/* MEDIA */
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at top, #3a1008, #060606);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-label {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-deep);
  background: #000;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
}

/* MERCH */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.merch-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.merch-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top, #52140a, #090909);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-yellow);
}

.merch-name {
  font-family: 'Oswald', system-ui;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.merch-price {
  font-size: 0.9rem;
  color: var(--accent-yellow);
}

.merch-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.merch-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

/* FAN / CONTACT */
.fan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.field label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
}

.field textarea {
  border-radius: 16px;
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.6);
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 0 2.4rem;
  background: radial-gradient(circle at bottom, #341409 0, #000 55%);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.8rem;
}

.social-link {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.social-link:hover {
  border-color: var(--primary-orange);
  background: rgba(255, 122, 26, 0.06);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 60;
}

.floating-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #1ec85f, #006b2b);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(3, 214, 97, 0.8);
}

.floating-whatsapp a span.icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.8rem;
  }

  .hero-side {
    align-self: stretch;
    max-width: none;
  }

  .about-grid,
  .tour-grid,
  .media-grid,
  .fan-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navbar.expanded .nav-links,
  .navbar.expanded .nav-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 1.2rem 1.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 1rem;
  }

  .hero {
    height: auto;
  }

  .hero-inner {
    padding-bottom: 2.6rem;
  }

  .hero-title {
    letter-spacing: 0.2em;
  }

  .section {
    padding: 3.5rem 0;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }

  .tour-row {
    grid-template-columns: 0.9fr 1.2fr;
    grid-template-rows: auto auto;
  }

  .tour-row > div:nth-child(3),
  .tour-row > div:nth-child(4) {
    grid-column: span 1;
  }

  .tour-row.header {
    display: none;
  }
}

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

  .floating-whatsapp a {
    padding: 0.55rem 0.9rem;
  }

  .floating-whatsapp a span.label {
    font-size: 0.75rem;
  }
}

/* Scroll fade-in */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Our JS adds .revealed, so support both .visible and .revealed */
.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
