/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  background: #222;
  color: #FFC000; /* unify all header text color */
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2rem;
}

/* Top header text */
/* Top header text */
.top-header .bunker-text {
  font-family: "Old English Text MT", serif;
  font-size: 2.5em;
  margin: 0;
  color: #FFC000;
}

.top-header .presents-text {
  font-family: "Arial", sans-serif;
  font-size: 1.5em;
  margin: 0;
  color: #FFC000;
}

.top-header .as-text {
  font-family: "Arial", sans-serif; /* simple, clean font */
  font-size: 1.2em; /* smaller than 'presents' */
  margin: 0;
  color: #FFC000; /* same gold color as the rest of the header */
}

/* Main header (current header) */
/* Main header (current header) */
.main-header .site-title {
  font-family: "Arial", sans-serif;
  font-size: 2em;
  margin: 10px 0 5px 0;
  color: #FFC000;
}

.main-header .site-subtitle {
  font-family: "Arial", sans-serif;
  font-size: 1.2em;
  margin: 0;
  color: #FFC000;
}

.main-nav {
  background-color: #333;
  padding: 10px 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  margin: 0 20px;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.main-nav ul li a:hover {
  color: #ffcc00;
}

nav {
  background: #444;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
  display: block;
}

nav ul li a:hover {
  color: #ffcc00;
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 20px;
}

h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: center;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: center;
}

button, .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffcc00;
  color: #222;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin: 10px 0;
}

button:hover, .btn:hover {
  background: #e6b800;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

footer .site-credit {
  font-size: 0.9rem;       /* slightly smaller than footer text */
  color: #ccc;             /* lighter color to be unobtrusive */
  margin-top: 5px;         /* small spacing above */
}

footer .site-credit a {
  color: #FFC000;          /* matches header color */
  text-decoration: none;
}

footer .site-credit a:hover {
  text-decoration: underline;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-img {
  width: 70%;          /* scales down to 70% of its natural width */
  max-width: 1000px;   /* optional: prevents it from being too wide on huge screens */
  height: auto;        /* keeps aspect ratio */
  display: block;
  margin: 0 auto 20px auto;  /* centers the image with some spacing below */
}

.events-item {
  margin-bottom: 20px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.contact-form button {
  width: 100%;
} 

/* ===== Contact Form Styles ===== */
/* ===== Contact Form Styles ===== */
.contact-container {
max-width: 600px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-container h1 {
text-align: center;
margin-bottom: 20px;
font-size: 2rem;
}

.contact-container p {
text-align: center;
margin-bottom: 30px;
font-size: 1.1rem;
}

.contact-container form {
display: flex;
flex-direction: column;
gap: 15px; /* adds consistent spacing between inputs */
}

.contact-container label {
font-weight: bold;
margin-bottom: 5px;
}

.contact-container input,
.contact-container textarea {
width: 100%;
padding: 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}

.contact-container textarea {
resize: vertical;
min-height: 120px;
}

.contact-container button {
padding: 12px;
font-size: 1rem;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.contact-container button:hover {
background-color: #ffcc00;
color: #333;
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.event-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
}

.event-card h3 {
  margin-bottom: 10px;
  color: #FFC000; /* consistent with header */
}

.event-card p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.event-card .btn {
  margin-top: 10px;
}

.g-recaptcha {
display: flex;
justify-content: center;
margin: 15px 0;
}

.info-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 20px auto;
  max-width: 900px;
  text-align: center;
}

.info-card h2 {
  margin-bottom: 20px;
  color: #FFC000;
}

.info-card p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.inline-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  border: 1px solid #FFC000;
}

.nowrap {
  white-space: nowrap;
}

/* Container to overlap hero */
#performer {
  position: relative;
  top: -50px; /* moves section up to overlap hero */
  margin-top: 60px; /* add spacing above the performer card */
  z-index: 2;
}

/* Profile layout */
.performer-profile {
  display: flex;
  flex-direction: column; /* stack photo and text */
  align-items: center;    /* center everything */
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  padding-top: 25px; /* ensures text starts comfortably below top of card */
  padding-bottom: 25px; /* maintain bottom spacing */
  background-color: #f9f9f9;  /* subtle background */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  gap: 15px; /* space between photo and text */
}

.performer-photo-small {
  width: 150px;      /* keeps image sharp */
  height: auto;
  border-radius: 50%; /* circle shape */
  border: 2px solid #FFC000; /* gold accent to match header */
}

.performer-text p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px; /* keeps text readable on large screens */
}

#performer h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #FFC000;
}

@media (max-width: 768px) {
  .performer-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .performer-photo-small {
    margin-bottom: 15px;
  }
  #performer {
    top: -30px;
    margin-top: 40px;
  }
  .contact-container {
    padding: 15px;
  }
}