@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&family=Poppins:wght@800;900&display=swap");

:root {
  --yellow: #ffde59;
  --orange: #e86a4a;
  --cream: #fff8e6;
  --dark: #0f0d0a;
  --muted: #3c342a;
  --max-width: 1200px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(15, 13, 10, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 222, 89, 0.28), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(232, 106, 74, 0.18), transparent 28%),
    radial-gradient(circle at 24% 82%, rgba(255, 222, 89, 0.2), transparent 28%),
    var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(120deg, rgba(255, 222, 89, 0.9), rgba(232, 106, 74, 0.92));
  border-bottom: 2px solid rgba(15, 13, 10, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "logo title actions"
    "logo links actions";
  align-items: center;
  column-gap: 18px;
  row-gap: 10px;
  color: var(--dark);
}

.logo-link {
  grid-area: logo;
  justify-self: start;
  align-self: center;
}

.logo-link img {
  height: 98px;
  width: 98px;
  object-fit: contain;
  border-radius: 24px;
  background: #fff6d6;
  padding: 12px;
  transform: rotate(-7deg);
  box-shadow: 0 16px 34px rgba(15, 13, 10, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-link:hover img,
.logo-link:focus-visible img {
  transform: rotate(-3deg) translateY(-2px);
  box-shadow: 0 20px 38px rgba(15, 13, 10, 0.26);
}

.brand-title {
  grid-area: title;
  justify-self: center;
  font-family: "Luckiest Guy", "Poppins", "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  color: #241b12;
  text-shadow: 2px 2px 0 rgba(255, 248, 230, 0.7);
}

.nav-links {
  grid-area: links;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: center;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(140deg, var(--yellow), #fff1b7);
  color: var(--dark);
  border: 2px dashed rgba(60, 52, 42, 0.32);
  box-shadow: 0 10px 24px rgba(255, 222, 89, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:nth-child(odd) {
  transform: rotate(-2deg);
}

.nav-links a:nth-child(even) {
  transform: rotate(1.5deg);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: linear-gradient(140deg, #ffe040, var(--yellow));
  transform: translateY(-2px) rotate(-1deg) scale(1.03);
  box-shadow: 0 12px 28px rgba(255, 222, 89, 0.32);
  outline: none;
}

.nav-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.header-socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 248, 230, 0.72);
  border: 2px dashed rgba(60, 52, 42, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 13, 10, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  transform: translateY(-2px) rotate(-2deg);
  background: #fff4cf;
  box-shadow: 0 14px 28px rgba(15, 13, 10, 0.16);
  outline: none;
}

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Poppins", "Manrope", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(140deg, #f07b4d, var(--orange));
  color: #fff;
  box-shadow: 0 16px 40px rgba(232, 106, 74, 0.32);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(232, 106, 74, 0.42);
  outline: none;
}

.btn.secondary {
  background: linear-gradient(140deg, var(--yellow), #fff1b7);
  color: var(--dark);
  box-shadow: 0 16px 40px rgba(255, 222, 89, 0.32);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255, 222, 89, 0.42);
  outline: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 8px 6px;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle .hamburger {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 99px;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  background: #000;
  border-radius: 99px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle .hamburger::before {
  top: -7px;
}

.menu-toggle .hamburger::after {
  top: 7px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 52px 34px;
  background: radial-gradient(circle at 14% 22%, rgba(255, 222, 89, 0.46), rgba(255, 222, 89, 0) 46%),
    radial-gradient(circle at 86% 14%, rgba(232, 106, 74, 0.22), rgba(232, 106, 74, 0) 46%),
    linear-gradient(135deg, #fffaf1 0%, #fff0e6 55%, #ffe6d6 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(11, 10, 23, 0.04);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle at 18% 12%, rgba(255, 222, 89, 0.4), transparent 42%),
    radial-gradient(circle at 82% 84%, rgba(232, 106, 74, 0.18), transparent 34%);
}

.hero::after {
  background:
    conic-gradient(from 120deg, rgba(255, 222, 89, 0.14), rgba(255, 222, 89, 0), rgba(232, 106, 74, 0.16), rgba(232, 106, 74, 0));
  mask: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.4), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 106, 74, 0.14);
  color: var(--orange);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", system-ui, -apple-system, sans-serif;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-family: "Poppins", "Space Grotesk", "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-family: "Luckiest Guy", "Poppins", "Manrope", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-family: "Luckiest Guy", "Poppins", "Manrope", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

.lead {
  font-size: 18px;
  max-width: 620px;
  color: rgba(44, 33, 64, 0.9);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.promo-banner {
  margin-bottom: 26px;
  padding: 0 4px;
}

.promo-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 222, 89, 0.8), rgba(232, 106, 74, 0.25));
  border: 2px dashed rgba(232, 106, 74, 0.5);
  box-shadow: 0 16px 34px rgba(232, 106, 74, 0.2);
  position: relative;
  overflow: hidden;
}

.promo-banner-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(232, 106, 74, 0.22), transparent 36%),
    radial-gradient(circle at 88% 70%, rgba(255, 222, 89, 0.4), transparent 42%);
  pointer-events: none;
}

.promo-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(232, 106, 74, 0.4);
  position: relative;
  z-index: 1;
}

.promo-text {
  display: grid;
  gap: 4px;
  font-weight: 700;
  color: #2a1b12;
  position: relative;
  z-index: 1;
}

.promo-text strong {
  font-size: 18px;
}

.promo-text span {
  color: rgba(44, 33, 64, 0.86);
  font-weight: 600;
}

.promo-code {
  letter-spacing: 0.06em;
}

.promo-banner .btn {
  position: relative;
  z-index: 1;
}

.promo-banner .btn.is-copied {
  background: linear-gradient(140deg, #1f9d62, #18b579);
  box-shadow: 0 16px 40px rgba(24, 181, 121, 0.34);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-video-card {
  display: flex;
  justify-content: center;
}

.video-frame {
  position: relative;
  width: min(100%, 320px);
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 214, 0.92));
  box-shadow: 0 20px 60px rgba(11, 10, 23, 0.2);
  border: 3px solid #fff;
  transform: rotate(-1.5deg);
}

.hero-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  background: #120e0a;
  box-shadow: 0 18px 48px rgba(11, 10, 23, 0.28);
}

.floating-note {
  position: absolute;
  top: -18px;
  right: 4px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(11, 10, 23, 0.2);
  font-weight: 800;
  max-width: 180px;
  border: 2px dashed rgba(232, 106, 74, 0.8);
  transform: rotate(3deg);
  animation: bob-note 4s ease-in-out infinite;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 222, 89, 0.22), rgba(232, 106, 74, 0.14));
  border: 2px solid rgba(232, 106, 74, 0.18);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(11, 10, 23, 0.14);
}

.section {
  margin-top: 64px;
  position: relative;
}

.section header {
  position: static;
  background: transparent;
  backdrop-filter: none;
  border: none;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.section-title .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(232, 106, 74, 0.2);
}

.subhead {
  color: var(--muted);
  max-width: 680px;
}

.panel {
  background: linear-gradient(160deg, rgba(255, 248, 235, 0.94), rgba(255, 255, 255, 0.94));
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 10, 23, 0.04);
}

.show-highlight {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.2fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.22), rgba(232, 106, 74, 0.12));
  border: 2px solid rgba(232, 106, 74, 0.12);
}

.show-meta {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 232, 104, 0.8);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.show-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.show-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 235, 0.98));
  border-radius: 20px;
  padding: 16px;
  border: 2px solid rgba(232, 106, 74, 0.14);
  box-shadow: 0 14px 30px rgba(11, 10, 23, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  gap: 12px;
}

.show-card:hover,
.show-card:focus-within {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 18px 40px rgba(11, 10, 23, 0.18);
}

.show-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.show-card h3 {
  margin: 0;
}

.review {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: center;
}

.stars {
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--yellow);
}

.quote {
  font-size: 20px;
  font-weight: 600;
  color: rgba(44, 33, 64, 0.9);
}

.venue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: center;
}

.instagram-panel {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.16), rgba(232, 106, 74, 0.08));
  border: 2px solid rgba(232, 106, 74, 0.12);
}

.instagram-embed-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.instagram-embed-wrap .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 560px !important;
}

.venue .details {
  display: grid;
  gap: 10px;
}

.highlight {
  display: inline-block;
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
}

.newsletter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
}

input[type="email"],
input[type="text"],
input[type="checkbox"] {
  font: inherit;
}

input[type="email"],
input[type="text"] {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 13, 10, 0.16);
  background: #fff;
}

input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 222, 89, 0.2), rgba(232, 106, 74, 0.16));
  border: 1px solid rgba(11, 10, 23, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.social-links a:hover {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

footer {
  background: linear-gradient(135deg, #0f0d0a, #22140c);
  color: #fff4d1;
  padding: 40px 20px 28px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  font-weight: 600;
}

.footer-meta {
  font-size: 14px;
  color: #ffedb0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 13, 10, 0.08);
  display: grid;
  gap: 8px;
}

.callout {
  background: var(--yellow);
  border-radius: 14px;
  padding: 16px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.host-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  background: #fff;
  border: 1px solid rgba(15, 13, 10, 0.08);
}

.host-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.host-card img.host-nabil {
  object-position: center 12%;
}

.host-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 13, 10, 0.85) 80%);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cta-block {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@keyframes bob-note {
  0% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(3deg);
  }
}

@media (max-width: 860px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 12px;
  }

  .logo-link {
    order: 1;
  }

  .logo-link img {
    width: 74px;
    height: 74px;
    padding: 9px;
    transform: rotate(-4deg);
    box-shadow: 0 12px 26px rgba(15, 13, 10, 0.2);
  }

  .brand-title {
    order: 2;
    flex: 1;
    font-size: clamp(1.4rem, 6vw, 2rem);
    text-align: center;
    text-shadow: 1px 1px 0 rgba(255, 248, 230, 0.7);
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .nav-links a,
  .nav-links a:nth-child(odd),
  .nav-links a:nth-child(even) {
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions {
    order: 5;
    width: 100%;
    display: none;
    justify-content: flex-start;
  }

  .nav-actions.open {
    display: flex;
  }

  .menu-toggle {
    order: 3;
    display: inline-flex;
    margin-left: auto;
  }

  .show-highlight,
  .review {
    grid-template-columns: 1fr;
  }

  .promo-banner-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 540px) {
  main {
    padding: 28px 16px 64px;
  }

  .hero {
    padding: 32px 22px;
  }

  .video-frame {
    width: min(100%, 300px);
    padding: 10px;
    transform: none;
  }

  .floating-note {
    left: 0;
    right: auto;
    bottom: auto;
    top: -14px;
    max-width: 170px;
    transform: rotate(-3deg);
    animation: bob-note 4s ease-in-out infinite;
  }

  .show-card img {
    height: 160px;
  }

  .cards-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 4px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cards-grid .show-card {
    min-width: 240px;
    scroll-snap-align: start;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
