/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* Global Reset */
* {
  box-sizing: border-box;
}

:root {
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-muted: #888888;
  --accent: #4d4dff;
  /* Wibo Electric Blue */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600&family=Syne:wght@400;700;800&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin: 0;
  line-height: 0.9;
}

.section-title {
  text-align: right;
  font-size: 4rem;
  margin-bottom: 4rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  /* Removed centering transforms to adhere to container alignment */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: skewX(-20deg);
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  mix-blend-mode: difference;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.05em;
  color: #fff;
  /* Always white due to mix-blend */
}

.nav-socials {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #fff;
}

.nav-socials a:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  /* Ensure icon contrast on hover */
  color: #fff;
}

/* Sections */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.content-wrapper {
  max-width: 1200px;
  /* Match Bio section width for consistency */
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

.content-wrapper.right {
  align-items: flex-end;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: #000;
  position: relative;
  padding-bottom: 8vh;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  filter: contrast(1.2) saturation(0);
}

.hero-content {
  z-index: 10;
  text-align: center;
  mix-blend-mode: exclusion;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-progress-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  width: 90%;
  max-width: 600px;
  justify-content: center;
}

.hero-progress-item {
  flex: 1 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.btn-hero {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 1rem 3rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
          clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
  /* Cyber shape */
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-hero:hover {
  transform: translateY(-5px);
  background: #fff;
  color: #000;
}

.btn-hero.outline {
  background: transparent;
  border: 1px solid #fff;
  -webkit-clip-path: none;
          clip-path: none;
}

.btn-hero.outline:hover {
  background: #fff;
  color: #000;
}

/* News / Slider Section */
.news-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #050505;
  padding: 6rem 0;
  position: relative;
}

.slider-container {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  position: relative;
  background: #111;
  display: flex;
  align-items: flex-end;
  /* Layout align bottom */
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  /* Slight roundness for uniqueness */
}

.slider-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}

.tag-label {
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Tour Section */
.tour-section {
  min-height: 100vh;
  position: relative;
  padding: 8rem 0;
  background: #080808;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tour-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1574169208507-84376144848b?q=80&w=2079&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  filter: grayscale(100%);
}

.tour-table {
  width: 100%;
  max-width: 1200px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-row {
  display: grid;
  grid-template-columns: 1fr 3fr 2fr auto;
  padding: 2rem;
  background: #111;
  border-radius: 12px;
  align-items: center;
  transition: all 0.3s;
  border-left: 0px solid var(--accent);
}

.gig-row:hover {
  background: #161616;
  border-left: 10px solid var(--accent);
  transform: translateX(10px);
}

.gig-date {
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--accent);
}

.gig-event {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.gig-location {
  opacity: 0.6;
  font-size: 1.1rem;
}

.gig-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-rsvp {
  border: 1px solid #fff;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-tickets {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  /* Pill shape */
  transition: all 0.2s;
}

.btn-tickets:hover {
  background: var(--accent);
  color: #fff;
}

/* Footer */
footer {
  background: #000;
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  border-top: 1px solid #222;
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-socials a {
  background: #111;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(10deg);
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
}

.copy {
  font-size: 0.7rem;
  color: #555;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 0 0.5rem;
    /* Reduced padding for mobile */
  }

  .content-wrapper.right {
    align-items: center;
    /* Center content on mobile */
  }

  .main-nav {
    padding: 1rem 1.5rem;
  }

  /* Keep socials but scale/tighten */
  .nav-socials {
    display: flex;
    gap: 1rem;
  }

  .nav-socials a {
    width: 32px;
    height: 32px;
  }

  .nav-socials svg {
    width: 20px !important;
    height: 20px !important;
  }

  .nav-brand {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 12vw;
    /* Make it fit on small screens */
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    align-self: center;
  }

  .slider-container {
    padding: 0;
    width: 100%;
    height: 60vh;
    /* Fixed height for mobile */
    min-height: 400px;
    display: block;
    /* Remove flex to let internal absolute positioning work */
  }

  .slider-content {
    width: 100%;
    margin-top: auto;
  }

  .tour-section {
    padding: 4rem 1rem;
  }

  .tour-table {
    width: 100% !important;
  }

  .gig-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .gig-date {
    margin-bottom: 0.5rem;
  }

  .gig-actions {
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
  }

  .btn-tickets {
    width: 100%;
    text-align: center;
    display: block;
  }

  .bio-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .bio-image-container {
    margin: 0 auto 2rem auto;
    width: 250px !important;
    height: 250px !important;
  }

  .bio-buttons {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Admin Dashboard styles */
.admin-container {
  min-height: 80vh;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.admin-panel {
  margin-bottom: 4rem;
  padding: 2rem;
  border: 1px solid #333;
  background: #111;
  border-radius: 8px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

.admin-input {
  padding: 1rem;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  width: 100%;
  font-family: var(--font-body);
}

.admin-input:focus {
  border-color: var(--accent);
  outline: none;
}

.admin-gig-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-gig-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  padding: 1rem;
  background: #111;
  border: 1px solid #333;
  align-items: center;
  grid-gap: 1rem;
  gap: 1rem;
}

/* Admin Responsive */
@media (max-width: 768px) {
  .admin-container {
    padding: 1rem;
  }

  .admin-panel {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-gig-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  /* Stack the buttons in admin row */
  .admin-gig-row>div:last-child {
    justify-content: center;
    width: 100%;
  }
}

/* Bio Specifics */
.bio-title {
  text-align: left;
  display: inline-block;
}

.bio-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
  text-align: left;
}

.bio-text p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .bio-title {
    text-align: center;
    font-size: 2rem;
  }

  .bio-text {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }

  .bio-image-container {
    width: 180px !important;
    height: 180px !important;
  }
}
