
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

header {
  text-align: center;
  background: #000;
  color: #f1c40f;
  padding: 20px 10px;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: 2em;
}

h2 {
  color: #f1c40f;
}

section {
  padding: 30px 15px;
  max-width: 900px;
  margin: auto;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "🎤 ";
  margin-right: 5px;
}

a {
  color: #f39c12;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  background:#f39c12;
  color: #fff;
  padding: 15px;
  margin-top: 20px;
}


#header img{
    display: block;
    margin: auto;
    height: 70%;
    padding-top: 15px;}
  

    footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  max-width: 900px;
}

.footer-container p {
  margin: 5px 0;
  font-size: 15px;
}

.social-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff3e3e; /* Comedy red energy */
  transform: translateY(-3px);
}

/* ----- GLOBAL RESET ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- PAGE STYLE ----- */
body {
  font-family: Helvetica, Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.7;
  padding: 40px 10%;
}

/* ----- HEADERS ----- */
h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #ff3e3e;
  padding-left: 10px;
  font-weight: 600;
}

/* ----- PARAGRAPHS ----- */
p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  max-width: 900px;
}

/* Make text nicely centered but not stretched too wide */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

p, h2 {
  width: 100%;
}

/* ----- OPTIONAL: Smooth fade animation ----- */
body {
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ================================
CHRIS MAPANE BOOKING FORM
================================ */

.Booking {
background: #181818;
border: 1px solid #333;
border-radius: 15px;
margin-top: 40px;
margin-bottom: 40px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.Booking h2 {
margin-top: 0;
}

.booking-form {
margin-top: 35px;
padding-top: 30px;
border-top: 1px solid #333;
}

.booking-form h3 {
color: #fff;
font-size: 1.5rem;
margin-bottom: 25px;
}

.booking-form label {
display: block;
margin-top: 18px;
margin-bottom: 7px;
color: #f1c40f;
font-weight: 600;
}

.booking-form input,
.booking-form textarea {
width: 100%;
padding: 14px 16px;
background: #222;
color: #fff;
border: 1px solid #444;
border-radius: 8px;
font-size: 16px;
font-family: inherit;
outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
color: #999;
}

.booking-form input:focus,
.booking-form textarea:focus {
border-color: #f1c40f;
box-shadow: 0 0 8px rgba(241, 196, 15, 0.2);
}

.booking-form textarea {
resize: vertical;
min-height: 150px;
}

.booking-form button {
display: block;
width: 100%;
margin-top: 25px;
padding: 15px 25px;
background: #ff3e3e;
color: #fff;
border: none;
border-radius: 8px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: 0.3s ease;
}

.booking-form button:hover {
background: #f1c40f;
color: #111;
transform: translateY(-2px);
}


/* Mobile */
@media (max-width: 600px) {

.Booking {
width: 95%;
padding: 25px 20px;
}

.booking-form input,
.booking-form textarea {
font-size: 16px;
}

.booking-form button {
font-size: 16px;
}

}