/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6; 
    background: #fff;
    color: #000;
}


ol, ul {
    list-style: none;
    padding-left: 0; 
}

/* Quotes */
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fdf6f0;
  color: #333;
}

header {
  background-color: #2c2c2c;
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

nav a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

.contact-info {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.hero {
  text-align: center;
  padding: 2rem;
  background: #ffe4b5;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.hero img:hover {
  transform: scale(1.02);
}

.intro {
  padding: 2rem;
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: #2c2c2c;
  color: #ffd700;
  padding: 0.5rem 1rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #444;
}

.map {
  padding: 2rem;
  margin-top: 2rem;
}

footer {
  background-color: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

footer a {
  color: #ffd700;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive Layouts */
@media (max-width: 410px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero, .intro, .map {
    padding: 1rem;
  }
}

@media (min-width: 411px) and (max-width: 1023px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero img {
    width: 90%;
  }
}

/* About Page */
.about {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.about h2, .about h3 {
  color: #2c2c2c;
}

.members strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}

.members p {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #fff8dc;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.5;
  transition: transform 0.3s ease;
}

.members p:hover {
  transform: translateY(-5px);
}

.band-photo {
  width: 100%;
  max-width: 600px;
  margin-top: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.band-photo:hover {
  transform: scale(1.02);
}

/* Media Page */
.media {
  padding: 2rem;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.video {
  margin-top: 2rem;
}

.video iframe {
  border-radius: 8px;
}

/* Events Page */
.events {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.event {
  background-color: #ffe4b5;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.event:hover {
  background-color: #ffdab9;
}

/* Contact Page */
.contact-form {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form button {
  background-color: #2c2c2c;
  color: #ffd700;
  border: none; 
  padding: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #444;
}

.required {
  color: red;
}

.contact-info address {
  display: inline;      /* keeps it on the same line */
  font-style: normal;   /* removes the default italic */
  margin: 0;            /* prevents extra spacing */
}
.contact-info p {
  white-space: nowrap;  /* prevents wrapping to a new line */
}