/* =========================================================
   styles_backup.css (CLEANED BASE)
   Used by: index.html, about.html, contact.html
   Keeps wallpaper + “glass” look and Bootstrap-friendly layout.
   NOTE: Gallery has its own CSS file for now.
   ========================================================= */

/* ---- Font ---- */
.stack-sans-notch,
body {
  font-family:
    "Stack Sans Notch",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  /* Removed font-optical-sizing to satisfy some CSS validators */
}

/* ---- Global base ---- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* =========================================================
   BACKGROUND WALLPAPER (per page, clean + controlled)
   Keep ALL wallpaper logic here, so it never becomes a mess.
   ========================================================= */

body {
  min-height: 100vh; /* modern mobile safe viewport height */
  color: #bab8b8;

  /* common wallpaper behavior for every page */
  background-color: #07110c; /* fallback if image missing */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Home wallpaper */
body.home {
  background-image: url("puerta-verde.jpg");
}

/* About wallpaper */
body.about {
  background-image: url("flame-1363095_Logo.png");
}

/* Contact wallpaper */
body.contact {
  background-image: url("Guille-concert2_Logo.png");
}

/* (Optional) If ever apply this CSS to gallery too */
body.gallery {
  background-image: url("israel-palacio-unsplash_Logo.png");
}

/* Optional: soften the wallpaper slightly for readability */
body.home::before,
body.about::before,
body.contact::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* ---- JS disabled message ---- */
#error-fallback-message {
  display: none; /* shown by <noscript> override */
  max-width: 900px;
  margin: 16px auto 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-align: center;
}

/* =========================================================
   HEADER (Bootstrap wrapper friendly)
   ========================================================= */
header.container {
  /* let the inner .header-glass be the “box” */
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-glass {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  border: 2px solid rgba(0, 255, 120, 0.22);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.55);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Title 1 */
.title {
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 3rem);
}

/* =============================
   4) Navigation
   ============================= */
nav {
  background-color: rgba(0, 2, 6, 0.75);
  border: 1px solid #000305;
  padding: 5px;
  margin: 0 auto 5px;
  width: fit-content;
  border-radius: 15px;
  opacity: 0.7;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

nav a:link {
  color: #f5c812;
  text-decoration: none;
}
nav a:visited {
  color: #33fa01;
}
nav a:hover {
  color: #1708f0;
  text-decoration: underline;
}
nav a:active {
  color: #ff0000;
}

/* Language buttons: keep them subtle */
#btnEN,
#btnES {
  border-color: rgba(233, 10, 10, 0.65);
  background: rgba(0, 0, 0, 0.35);
  color: #fdd006;
  transition: all 0.25s ease;
}

body.about .subtitle {
  color: hsl(48, 97%, 50%);
}

/* =========================
   ABOUT: small subtitles (h4)
========================== */
body.about .glass-box h4 {
  color: hsl(0, 94%, 43%);
  font-weight: 400;
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
/* =========================
   ABOUT PAGE BOX WIDTH
========================== */
body.about .glass-box {
  max-width: 820px;
  margin-inline: auto;
}

/* =========================
   ABOUT: career list spacing
========================== */
body.about .glass-box ul li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* =========================================================
   HOME CONTENT
   ========================================================= */
.home-article {
  margin-top: 14px;
}

.home-subtitle {
  color: #dec508;
  font-size: clamp(2.15vw, 2.2vw, 2.15vw);
  font-weight: 900;
  text-shadow: 0 0 8px rgba(249, 17, 4, 1.65);
}

/* Shared “glass box” */
.glass-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 120, 0.22);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.55);
}

/* Image card (button) */
.fs-card {
  display: block;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.fs-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.fs-card:hover img {
  transform: scale(1.05);
}

/* Paragraph box */
.text-box {
  color: #bdbbd0;
}

.text-box p {
  margin: 0;
  line-height: 1.9;
  /* helps “2 columns on small screens” be readable */
  font-size: clamp(0.78rem, 2.15vw, 1.02rem);
}

/* =========================================================
   SMALL SCREEN TUNING
   (Still keeps 2 columns if HTML uses col-5 / col-7.)
   ========================================================= */
@media (max-width: 480px) {
  .header-glass {
    padding: 12px !important;
  }
  .title {
    font-size: 1.35rem;
  }
  .home-subtitle {
    font-size: 1rem;
  }

  /* reduce padding so text doesn’t feel “squeezed” */
  .glass-box {
    padding: 10px !important;
  }
}

.events-subtitle {
  color: hsl(0, 98%, 50%);
  font-weight: 800;
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

/* ===============================
   CONTACT PAGE – FINAL INTENDED DESIGN
   =============================== */

body.contact {
  /* Main background */
  background: url("Guille-concert2_Logo.png") center / cover fixed no-repeat;
  overflow-x: hidden;
  position: relative;
}

/* Central decorative image */
body.contact::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("guille1.jpg") center / contain no-repeat;
  opacity: 0.8; /* half-transparent look */
  pointer-events: none;
  z-index: 0;
}

/* Content above the image */
body.contact header,
body.contact main {
  position: relative;
  z-index: 2;
}

/* Glass panel sizing */
.contact-panel {
  max-width: 400px;
  margin-top: 16px;
}

/* =========================
   SOCIAL MEDIA BUTTONS
========================== */

.contact-btn {
  background: rgba(0, 0, 0, 0.45);
  color: #fdd006;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.contact-btn i {
  font-size: 1.4rem;
}

/* Platform hover colors */
.social-facebook:hover,
.social-facebook:focus {
  background: #1877f2;
  color: #ffffff;
}

.social-instagram:hover,
.social-instagram:focus {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
}

.social-youtube:hover,
.social-youtube:focus {
  background: #ff0000;
  color: #fff;
}

/* Click feedback */
.contact-btn:active {
  transform: scale(0.97);
}

/* =========================
   SOCIAL MEDIA LOGO IMAGES
========================== */

/* Make the social SVG logos visible on dark buttons */
.social-logo {
  width: 42px;
  height: 32px;
  filter: invert(1);
  opacity: 0.95;
}

.contact-info-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgb(206, 189, 222);
}

/* Optional: keep both columns visually aligned */
.contact-panel {
  max-width: 900px; /* adjust narrower/wider */
}

/* Slight pop on hover */
.contact-btn:hover .social-logo {
  transform: scale(1.1);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  body.contact {
    background-attachment: scroll;
  }

  body.contact::before {
    opacity: 0.12; /* slightly lighter on small screens */
  }
}

/* =========================
   CONTACT FORM (same style)
========================== */

.contact-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-form .form-label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Glassy inputs */
.contact-input {
  background: rgba(0, 0, 0, 0.35) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.15) !important;
  border-color: rgba(0, 255, 0, 0.35) !important;
}

/* Submit button */
.contact-submit {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 12px 18px;
  transition: all 0.25s ease;
}

.contact-submit:hover,
.contact-submit:focus {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.contact-submit:active {
  transform: scale(0.98);
}

/* =========================
   THANK YOU CONFIRMATION
========================== */

.thank-you-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Checkmark circle */
.checkmark-wrapper {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.18);
  color: #7cff7c;
  font-size: 2rem;
  line-height: 54px;
  font-weight: bold;
  animation: popIn 0.4s ease forwards;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}

/* =========================
   MERCH (CONTACT PAGE)
========================== */

.merch-box {
  max-width: 900px; /* makes it not too wide */
}

.merch-caption {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* Each image "card" */
.merch-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 10px;
  backdrop-filter: blur(8px);
}

/* Keeps a consistent frame so images always fit */
.merch-ratio {
  border-radius: 14px;
  overflow: hidden;
}

/* The important part: FIT without cropping */
.merch-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ no crop */
  object-position: center;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
  filter: brightness(0.95) contrast(1.05);
}

/* Hover effect (nice but not crazy) */
.merch-card:hover .merch-img {
  transform: scale(1.3);
  filter: brightness(1.05) contrast(1.08);
}

/* Merch section title */
.merch-box .subtitle {
  color: #ff4d00;
  font-size: 1.4rem; /* adjust size */
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Merch album text */
.merch-caption {
  color: #ebe7e7;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================
   MERCH PRICE TAG
========================== */

.merch-price {
  margin-top: 6px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;

  color: #1bd606;

  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(0, 255, 120, 0.35);
}

/* =========================
   FOOTER
========================== */
.footer-glass {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 255, 120, 0.25);
  max-width: 610px;
  margin-inline: auto;
  border-radius: 6px;
}

.footer-text {
  font-size: 0.85rem;
  color: #04f520bc;
  letter-spacing: 0.04em;
}
