:root {
  --red: #be1e2d;
  --yellow: #ffde17;
  --blue: #21409a;
  --black: #000000;
  --gray: #AAAAAA;
  --white: #ffffff;
  --cream: #fdfbe6;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--black);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1, h2, p {
  margin: 0 0 1rem 0;
}

p {
  line-height: 1.7;
  font-size: 1.05rem;
}

strong {
  font-weight: 700;
  text-transform: uppercase;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
  margin: 0 2rem;
}

.nav-groups {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropbtn {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 2px solid var(--black);
  z-index: 999;
  box-shadow: 8px 8px 0 var(--yellow);
}

.nav-dropdown-content a {
  display: block;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  border-bottom: 1px solid #ddd;
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content:hover {
  display: block;
}

.nav-dropdown:hover .nav-dropbtn {
  background: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
  padding-left: 2rem;
  flex-shrink: 0;
}

.nav-buy {
  background: var(--yellow);
  color: var(--black);
  padding: 0.45rem 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-coming {
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}


/* HEADER */
.header {
  background: var(--white);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo, .logo-footer {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.color-dots {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.dot.red { background: var(--red); }
.dot.yellow { background: var(--yellow); }
.dot.blue { background: var(--blue); }
.dot.black { background: var(--black); }

/* HERO */
.hero.cream {
  background-color: var(--cream);
  color: var(--black);
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 2rem;
}

.hero-text-block {
  flex: 1 1 60%;
}

.hero-text {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.highlight.yellow {
  background: var(--yellow);
  padding: 0 0.4rem;
}

.highlight.box {
  background: var(--black);
  color: var(--white);
  padding: 0 0.4rem;
  display: inline-block;
}

.highlight.red {
  background: var(--red);
  color: var(--white);
  padding: 0 0.4rem;
}

/* HERO CIRCLES */
.hero-circles {
  flex: 1 1 40%;
  position: relative;
  height: 540px;
  min-width: 400px;
}

.circle {
  border-radius: 50%;
  position: absolute;
  opacity: 1;
  animation: bounce 4s ease-in-out infinite;
}

.circle.blue {
  background-color: var(--blue);
  width: 200px;
  height: 200px;
  top: 10px;
  right: 0;
}

.circle.black {
  background-color: var(--black);
  width: 160px;
  height: 160px;
  top: 220px;
  right: 40px;
  animation-delay: 0.5s;
}

.circle.yellow {
  background-color: var(--yellow);
  width: 70px;
  height: 70px;
  top: 300px;
  right: 10px;
  animation-delay: 1s;
}

.circle.red {
  background-color: var(--red);
  width: 100px;
  height: 100px;
  top: 370px;
  right: 50px;
  animation-delay: 1.5s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* SECTIONS */
section {
  padding: 4rem 0;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.white { background: var(--white); color: var(--black); }
.red { background: var(--red); color: var(--white); }
.yellow { background: var(--yellow); color: var(--black); }
.blue { background: var(--blue); color: var(--white); }
.black { background: var(--black); color: var(--white); }
.cream { background: var(--cream); color: var(--black); }

/* LABELS */
.label {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

.label.blue { background: var(--blue); color: white; }
.label.black { background: var(--black); color: white; }
.label.red { background: var(--red); color: white; }
.label.yellow { background: var(--yellow); color: black; }

/* FEATURED IMAGE */
.featured-image {
  width: 360px;
  height: 360px;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 14px 14px 0 var(--yellow);
  background: var(--white);
}

.featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* CITY CTA */
.city-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.95rem 1.4rem;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--red);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--red);
}

.city-cta-light {
  background: var(--white);
}

/* SECTION DOTS */
.color-dots.bottom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.color-dots.bottom .dot {
  width: 18px;
  height: 18px;
}

/* BUY SECTION */
.buy-section {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
}

.buy-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.buy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.buy-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.buy-header {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  padding: 1rem 1.5rem;
}

.buy-card-body {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amazon-header {
  background: var(--white);
  color: var(--black);
}

.direct-header {
  background: var(--yellow);
  color: var(--black);
}

.buy-copy {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.amazon-blocks {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.amazon-box {
  min-width: 120px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  border: 2px solid var(--black);
  transition: transform 0.25s ease;
}

.amazon-box:hover {
  transform: translateY(-4px);
}

.red-box {
  background: var(--red);
  color: var(--white);
}

.yellow-box {
  background: var(--yellow);
  color: var(--black);
}

.white-box {
  background: var(--white);
  color: var(--black);
}

.direct-blocks {
  background: var(--blue);
  color: var(--white);
  align-items: flex-start;
}

.direct-bar {
  width: 70px;
  height: 14px;
  background: var(--red);
  margin-bottom: 1.5rem;
}

.direct-contact {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  font-weight: 800;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--white);
}

/* COMING SECTION */
.coming-section {
  background: var(--cream);
  color: var(--black);
  padding: 5rem 0;
}

.coming-main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.coming-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.coming-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.coming-card-header {
  font-size: 1.8rem;
  font-weight: 800;
  padding: 1.1rem 1.4rem;
  line-height: 1;
}

.coming-card-body {
  flex: 1;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
}

.bruges {
  background: var(--red);
  color: var(--white);
}

.seoul {
  background: var(--yellow);
  color: var(--black);
}

.barcelona {
  background: var(--blue);
  color: var(--white);
}

.coming-card:nth-child(1) .coming-card-body {
  background: var(--white);
  color: var(--black);
}

.coming-card:nth-child(2) .coming-card-body {
  background: var(--black);
  color: var(--white);
}

.coming-card:nth-child(3) .coming-card-body {
  background: var(--white);
  color: var(--black);
}

.coming-card-feature {
  overflow: hidden;
}

.coming-yellow-circle {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--yellow);
  right: 18px;
  bottom: 18px;
}

.coming-bottom-bar {
  width: 180px;
  height: 16px;
  background: var(--red);
  margin: 3rem auto 0;
}

/* SUBSCRIBE SECTION */
.subscribe-section {
  background: var(--white);
  color: var(--black);
  padding: 5rem 0;
}

.subscribe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.subscribe-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.subscribe-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
}

/* FORM BLOCK */
.subscribe-form-block {
  background: var(--blue);
  padding: 2.5rem;
  box-shadow: 14px 14px 0 var(--yellow);
}

/* FORM */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscribe-form input {
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--black);
  outline: none;
  font-weight: 700;
}

.subscribe-form button {
  padding: 1rem;
  font-weight: 800;
  border: 2px solid var(--black);
  background: var(--yellow);
  cursor: pointer;
  box-shadow: 8px 8px 0 var(--red);
  transition: all 0.2s ease;
}

.subscribe-form button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--red);
}

/* DECORATIVE BAR */
.subscribe-bar {
  width: 180px;
  height: 16px;
  background: var(--red);
  margin: 3rem auto 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .subscribe-layout {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-content {
  text-align: right;
  flex: 1;
}

.footer-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block; /* IMPORTANT for <a> */
  padding: 1rem 2.5rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--red);
  transition: all 0.2s ease;
}

.cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--red);
}

.follow-text {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  padding-bottom: 2rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    margin: 0;
  }

  .color-dots {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .row,
  .row.reverse,
  .footer-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-content {
    text-align: left;
  }

  .buy-layout,
  .coming-cards {
    grid-template-columns: 1fr;
  }

  .featured-image {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 1.25rem;
  }

  .hero-text {
    font-size: 2.4rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-groups {
    width: 100%;
    gap: 0.75rem;
  }

  .nav-actions {
    margin-left: 0;
    padding-left: 0;
  }

  .color-dots {
    display: none;
  }

  .nav-dropdown-content {
    position: static;
    display: block;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .nav-dropdown .nav-dropdown-content {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-content {
    display: block;
  }

  .amazon-blocks {
    flex-direction: column;
  }
}
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--red);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1200;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translate(-2px, -2px);
}