/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-brown: #2b1408;
  --orange: #ff6a00;
  --bright-red: #d62828;
  --cream: #fdfaf6;
  --teal-box: #2a9d8f;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: #222;
  overflow-x: hidden;
}

h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/trunk.jpg") center/cover no-repeat;
  opacity: 0.04;
  z-index: -1;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
}

/* LINKS */
a {
  text-decoration:none;
  color:inherit;
}

a:hover{
  opacity:0.85;
}

a:focus {
  outline: 2px solid var(--orange);
}

a:active {
  opacity: 0.7;
}

/* IMAGES */
.site-logo {
  width: 160px;
  height: 120px;
}

.footer-logo {
  width: 260px;
  height: 200px;
}

/* HEADER */
.site-header {
  background: var(--deep-brown);
  padding: 60px 0 220px;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 20px;
}

.main-nav {
  margin-top: 60px;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  color: white;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--orange);
}

/* HERO PENTAGON (FLYER DECONSTRUCT) */
.hero-shape {
  margin: 120px auto 80px;
  padding: 160px 50px;
  max-width: 1100px;
  color: white;
  background:
    linear-gradient(rgba(255,106,0,0.88), rgba(255,106,0,0.88)),
    url("../images/banner.png") center/cover no-repeat;
  clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
}

/* LINEUP BUTTON */
.lineup-wrapper {
  text-align: center;
  margin-bottom: 100px;
}

.lineup-btn {
  background: var(--bright-red);
  color: white;
  padding: 22px 60px;
  font-size: 19.2px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.lineup-btn:hover {
  background: black;
  transform: translateY(-4px);
}

/* SECOND PENTAGON (BRIGHT RED + INFO) */
.mission-shape {
  margin: 120px auto 160px;
  padding: 160px 50px;
  max-width: 1100px;
  color: white;
  background:
    linear-gradient(rgba(214,40,40,0.9), rgba(214,40,40,0.9)),
    url("../images/banner.png") center/cover no-repeat;
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}

.hero-shape h2,
.mission-shape h3 {
  font-size: 44px;
}

.text-link {
  color: #FFBF00;
}

.text-link:hover {
  text-decoration: underline;
}

/* GRID */
.history-grid {
  display: grid;
  grid-template-columns: 350px 700px 350px;
  justify-content: center;
  gap: 60px;
  max-width: 1600px;
  margin: 180px auto;
}

.left-col,
.right-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.middle-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
}

/* SIDE BOXES */
.side-box {
  width: 100%;
  max-width: 420px;
  padding: 60px;
  background: var(--teal-box);
  color: white;
  border-radius: 12px;
  text-align: center;
}

.side-box iframe {
  width: 100%;
  height: 340px;
  border-radius: 10px;
}

/* CIRCLES */
.circle {
  width: 700px;
  min-height: 800px;
  padding: 100px 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 
  text-align: center;
}

.circle-inner {
  width: 100%;
  max-width: 500px;
}

/* CUSTOM LISTS */
.values-list{
  list-style: none;
  padding-left: 0;
}

.values-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.values-list li::before{
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/list.png") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 6px;
}

.values-list li span {
  display: block;
}

.values-list li strong {
  display: block;
  margin-bottom: 4px;
}

.leadership-list {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.leadership-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

.leadership-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/list.png") no-repeat center/contain;
  align-self: flex-start;
}

.leadership-list li span {
  display: block;
  text-align: center;
}

.leadership-list .email {
  display: block;
  margin-top: 4px;
  text-align: center;
}

/* TEXT */
.subhead {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.circle p, 
.values-list li {
  font-size: 13px;
  line-height: 1.4;
}

.orange-circle {
  background:
    linear-gradient(rgba(255,106,0,0.92), rgba(255,106,0,0.92)),
    url("../images/banner.png") center/cover no-repeat;
}

.red-circle {
  background:
    linear-gradient(rgba(214,40,40,0.92), rgba(214,40,40,0.92)),
    url("../images/banner.png") center/cover no-repeat;
}

.circle h2,
.circle h3 {
  font-size: 38.4px;
  margin-bottom: 35px;
  font-family: 'Playfair Display', serif;
  color: white;
}

.festival-address {
	color: white;
}

/* INPUT FORM */
.history-text {
  font-size: 22pt;
  margin-bottom: 20px;
}

.history-link {
  color: #ffbf00;
  font-weight: 700;
}

.history-link:hover {
  text-decoration: underline;
}

/* LEADERSHIP TEXT */
.circle strong {
  color: #ffbf00;
  font-size: 18px;
}

.circle .email {
  color: #ffffff;
  text-decoration: underline;
  transition: 0.25s ease;
}

.circle .email:hover {
  color: var(--teal-box);
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  margin-top: 200px;
  padding: 200px 0 100px;
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(43,20,8,0.95), rgba(43,20,8,0.95)),
    url("../images/address.jpg") center/cover no-repeat;
  clip-path: polygon(0 30%, 50% 0, 100% 30%, 100% 100%, 0 100%);
}

.footer-content {
  margin-top: -40px;
}

.site-footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 20px;
}

.site-footer p {
  font-size: 16px;
}

/* SOCIAL ICON ROW */
.social-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.social-row img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: 0.3s ease;
}

.social-row img:hover {
  transform: scale(1.15);
}

/* 
External Sources:

Object clipping:
https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path

Advanced Flexbox Layout:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

Google Maps embed:
https://developers.google.com/maps/documentation/embed/get-started

More Clipping Paths:
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/clip-path

While SOME lines were copied to ensure accuracy and error-free results, everything was still manually done.
*/