/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

/* Body styling */
body {
    font-family: 'Arial', cursive;
    font-size: 24px;
    line-height: 1.5;
    color: #333;

}

/* Header */
header {
  background-color: #003366; /* Dark blue */
  color: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 0.5rem;
}

nav a {
  text-decoration: none;
  color: #ffdd00; /* Bright yellow */
  font-weight: bold;
}

nav a:hover {
  color: #ffffff;
}

/* Main sections */
main {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 2rem;
}

h2 {
  color: #003366;
  margin-bottom: 0.5rem;
}

/* Tour list */
#tour ul {
  list-style: none;
  padding-left: 1rem;
}

#tour li {
  margin-bottom: 0.5rem;
  color: #222;
}

/* Footer */
footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

#gallery {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.hero {
  background-image: url('images/FullBand.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #ffdd00; /* bright yellow title */
}

.hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 4rem;
  -webkit-text-stroke: 2px white;
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 2rem;
}

.slogan {
  color: white;
  font-size: 1.5rem;
  margin-top: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.cta-button {
  margin-top: 1.5rem;
  background-color: #ffdd00;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ffc400;
}

.scroll-arrow {
  font-size: 2rem;
  margin-top: 2rem;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

.cta-button {
  margin-top: 1.5rem; /* increase if needed */
  background-color: #ffdd00;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.overlay > * {
  display: block;
}

.band-section {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

.band-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1f1f1f;
}

.band-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.member {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
}

.member img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.member h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #333;
}

.member p {
  font-size: 1rem;
  color: #666;
}

.social-links {
text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;

  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.social-button:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.social-button.spotify {
  background-color: #1db954;
}

.social-button.youtube {
  background-color: #ff0000;
}

.social-button.instagram {
  background-color: #e1306c;
}

.social-button.facebook {
  background-color: #1877f2;
}

.live-moments {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.live-moments h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1f1f1f;
}

.video-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}

.video iframe {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .social-button {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ffd700; /* golden yellow for hover */
}

.nav-buttons {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.nav-btn {
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-btn:hover {
  transform: scale(1.05);
}

/* Individual Colors */
.band-btn {
  background-color: #0077cc; /* Blue */
}

.live-btn {
  background-color: #ff9900; /* Orange */
}

.socials-btn {
  background-color: #1db954; /* Spotify green */
}

.live-moments {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.live-moments h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1f1f1f;
}

.video-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}

.video iframe {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

