/* -------------------- */
/*  General Page Styles */
/* -------------------- */
body {
  background-color: #fff8e7;        /* soft warm background */
  font-family: "Poppins", "Trebuchet MS", Arial, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* -------------------- */
/*        Header        */
/* -------------------- */
header {
  background-color: #ffcf56;
  color: #222;
  text-align: center;
  padding: 25px 10px;
  border-bottom: 5px dashed #ff8a5c;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

header img {
  display: block;
  margin: 0 auto 8px auto;
}

header h1 {
  font-size: 2.3rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* -------------------- */
/*     Navigation Bar   */
/* -------------------- */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 10px 0 0 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  background: #ffd27f;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #ff8a5c;
  color: #fff;
  transform: rotate(-3deg);
}

/* -------------------- */
/*       Sections       */
/* -------------------- */
section {
  text-align: center;
  padding: 50px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 20px;
  background: #ffffffd0;
  box-shadow: 4px 4px 0 #ff8a5c;
}

/* Section Titles */
h2 {
  font-size: 1.8rem;
  color: #ff5d8f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* -------------------- */
/*       Overview       */
/* -------------------- */
#overview {
  background-color: #ffd27f;
  box-shadow: 5px 5px 0 #ff5d8f;
}

#overview p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* -------------------- */
/*       Features       */
/* -------------------- */
#features {
  background-color: #b5eaea;
  box-shadow: 5px 5px 0 #3a86ff;
}

#features ul {
  text-align: left;
  display: inline-block;
  margin-top: 10px;
  padding: 0 15px;
}

#features li {
  margin: 8px 0;
}

/* -------------------- */
/*        Gallery       */
/* -------------------- */
#gallery {
  background-color: #ffc8dd;
  box-shadow: 5px 5px 0 #ff5d8f;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.photo-grid img {
  border: 4px solid #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 0 #222;
  transform: rotate(var(--tilt, -2deg));
  transition: transform 0.3s ease;
}

.photo-grid img:nth-child(odd) {
  --tilt: 2deg;
}

.photo-grid img:hover {
  transform: rotate(0deg) scale(1.05);
}

video {
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 4px 4px 0 #222;
}

/* -------------------- */
/*     Call to Action   */
/* -------------------- */
#cta {
  background-color: #caffbf;
  box-shadow: 5px 5px 0 #70e000;
}

.cta-btn {
  display: inline-block;
  background-color: #ff5d8f;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 #222;
}

.cta-btn:hover {
  background-color: #ff8a5c;
  transform: rotate(-2deg) scale(1.05);
}

/* -------------------- */
/*        Credits       */
/* -------------------- */
#credits {
  background-color: #bde0fe;
  box-shadow: 5px 5px 0 #3a86ff;
}

#credits ul {
  list-style: none;
  padding: 0;
}

#credits li {
  margin: 5px 0;
}

/* -------------------- */
/*        Footer        */
/* -------------------- */
footer {
  background-color: #ffcf56;
  color: #222;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  border-top: 5px dashed #ff8a5c;
}
