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

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  letter-spacing: 2px;
}

/* ================= HEADER ================= */
section {
  scroll-margin-top: 60px;
}

header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-band {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-round {
  width: 80px;
}

.band-name {
  height: 30px;
}

/* ================= NAVIGATION ================= */
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

header nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav a:hover {
  color: #009bdf;
}

/* ================= SOCIAL LINKS ================= */
.socials a {
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  height: 80vh;
  background: url('images/hero1.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
}

.hero .overlay {
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: 30px 40px;
}

.hero h1 {
  font-size: 3rem;
}

.hero h2 {
  color: #009bdf;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #009bdf;
  color: #fff;
  text-decoration: none;
}

.cta:hover {
  background: #009bdf;
  color: #000;
}

/* ================= GIGS ================= */
#gigs {
  padding: 50px 20px;
  background: #181818;
}

.gig {
  margin: 10px auto;
  max-width: 500px;
  padding: 10px;
  border-bottom: 1px solid #333;
}

.gig span {
  color: #009bdf;
  margin-right: 10px;
}

/* ================= GIG MODALS ================= */
.gig-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.gig-popup .modal-content {
  background: #111;
  margin: 10% auto;
  padding: 20px;
  max-width: 500px;
  position: relative;
}

.gig-popup .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.gig-popup a {
  color: #009bdf;
  text-decoration: none;
  font-weight: bold;
}

.gig-popup a:hover {
  text-decoration: underline;
  color: #00c0ff;
}
/* ================= PHOTO MODAL ================= */
.photo-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.photo-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 5px;
}

#photoCaption {
  margin: 10px auto;
  text-align: center;
  color: #ccc;
  font-size: 16px;
}

.photo-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.photo-modal .close:hover {
  color: #009bdf;
}

/* Optional: hover zoom on gallery images */
.gallery img:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
  cursor: pointer;
}

/* ================= NEWS ================= */
#news {
  padding: 50px 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-item {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  padding: 15px;
  gap: 10px;
}

.news-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-left .date {
  font-weight: bold;
  color: #009bdf;
  margin-bottom: 5px;
}

.news-right h3 {
  margin-bottom: 10px;
}

.read-more {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background: #009bdf;
  color: #000;
  cursor: pointer;
  width: auto;
  align-self: flex-start;
}

/* ================= MODALS ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  background: #111;
  margin: 10% auto;
  padding: 20px;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

/* ================= PHOTOS ================= */
#photos {
  padding: 50px 20px;
  background: #181818;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================= HISTORY ================= */
#history {
  padding: 50px 20px;
}

.history-slider img {
  width: 100%;
  margin-bottom: 10px;
}

/* ================= INSTAGRAM ================= */
#instagram {
  padding: 50px 20px;
  background: #181818;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 5px;
}

.insta-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================= CONTACT ================= */
#contact {
  padding: 50px 20px;
  text-align: center;
}

#contact a {
  color: #009bdf;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  color: #00c0ff;
  text-decoration: underline;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
}

.footer-socials a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

/* ================= HERO LOGO ================= */
.hero-logo {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(0,155,223,0.6));
}