:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --pink: #e60e67;
  --yellow: #ffe45c;
  --soft: #f7f3ef;
  --grey: #555555;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--soft);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  overflow: hidden;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
	linear-gradient(rgba(11, 11, 11, 0.58), rgba(11, 11, 11, 0.58)),
	url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: var(--white);
  padding: 48px 0;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--yellow);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
  text-transform: lowercase;
}

.hero h1 span {
  color: var(--pink);
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--pink);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* FLEX SECTIONS */
.section {
  padding: 88px 0;
}

.flex-block {
  display: flex;
  align-items: stretch;
  gap: 36px;
}

.flex-block.reverse {
  flex-direction: row-reverse;
}

.flex-copy,
.flex-media {
  flex: 1 1 0;
  min-width: 0;
}

.flex-copy {
  background: var(--white);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.section-label {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.flex-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.flex-copy p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.details-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.details-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--black);
  font-weight: 700;
}

.details-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 auto;
}

.flex-media {
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

.flex-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

/* CTA */
.cta {
  background: var(--black);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.cta p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

/* MOBILE */
@media (max-width: 800px) {
  .container {
	width: min(100% - 28px, var(--max-width));
  }

  .hero {
	min-height: 760px;
	align-items: flex-end;
	padding: 80px 0 56px;
  }

  .hero::after {
	width: 240px;
	height: 240px;
	right: -100px;
	bottom: -90px;
  }

  .hero-actions {
	align-items: stretch;
  }

  .button {
	width: 100%;
  }

  .section {
	padding: 54px 0;
  }

  .flex-block,
  .flex-block.reverse {
	flex-direction: column;
	gap: 22px;
  }

  .flex-media {
	min-height: 320px;
  }

  .flex-copy {
	border-radius: 22px;
  }
}


/* Footer */
.event-footer-promo {
            width: 100%;
            height: 100vh;
            min-height: 680px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #119ba5;
        }
        
        .event-contact-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 80%;
        }
        
        #mc_embed_signup {
            background:#fff; 
            clear:left; 
            font:14px Helvetica,Arial,sans-serif; 
            width: 100%;
            min-width:320px;
        }
        
        .event-contact-email {
            color:#ffffff;
        }
        
        .event-contact-email:hover {
            color:#000000;
        }