/* ============================================
   Vedett 0.0 Landing Page
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-dark: #1a1a1a;
  --color-purple: #2d1054;
  --color-white: #ffffff;
  --color-offwhite: #f5f2ed;
  --color-red: #e01020;
  --color-grey: #666666;
  --color-grey-light: #d0d0d0;
  --font-heading: 'IBM Plex Mono', 'Courier New', monospace;
  --font-body: 'Lato', 'Gill Sans', 'Gill Sans MT', 'Helvetica Neue', sans-serif;
  --max-width: 1440px;
  --gutter: 80px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-offwhite) url('../images/paper-texture-2.jpg') center / cover no-repeat;
  line-height: 1.5;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Header
   ============================================ */
.header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px var(--gutter) 0;
}

.header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.header__logo {
  display: block;
  width: 380px;
  flex-shrink: 0;
  margin-left: -26px;
}

.header__logo-img {
  width: 100%;
  height: auto;
}

.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 4px;
  margin-top: 8px;
}

.header__menu-toggle span {
  display: block;
  width: 32px;
  height: 2.5px;
  background-color: var(--color-dark);
}

.header__nav-list {
  display: flex;
  gap: 36px;
  align-items: center;
}

.header__nav-list a {
  font-family: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
  transition: color 0.2s;
}

.header__nav-list a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.header__nav-list a.is-active {
  font-weight: 700;
  color: #40009A;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--gutter) 0;
  overflow: visible;
}

.hero__brand-bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  width: 140%;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__watermark {
  position: absolute;
  top: 2%;
  right: 4%;
  width: clamp(300px, 36vw, 520px);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform: rotate(12deg);
  transform-origin: center center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero__bottle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -180px;
  margin-left: 140px;
}

.hero__bottle-img {
  width: 180%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.18));
  transform: rotate(-3deg);
  transform-origin: center center;
}

.hero__content {
  padding: 10px 0 40px;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #40009A;
  margin-bottom: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__description {
  margin-bottom: 32px;
}

.hero__description p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 8px;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}


/* ============================================
   Product Details Section
   ============================================ */
.details {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  margin-top: -100px;
}

.details__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.specs-list {
}

.specs-list__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  align-items: baseline;
}

.specs-list__item dt {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #40009A;
}

.specs-list__item dd {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}

.specs-list__item dd ul {
  list-style: disc;
  padding-left: 16px;
}

.specs-list__item dd ul li {
  font-size: 1rem;
  margin-bottom: 2px;
}

.details__stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  align-items: center;
  justify-content: flex-end;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #000000;
  border-radius: 50%;
  padding-left: 16px;
  text-align: left;
}

.stat--plain {
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  align-items: flex-start;
}

.stat__label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.stat__value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

.stat--plain .stat__value {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

.stat--plain .stat__label {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-grey);
}

/* Details photo */
.details__photo {
  position: relative;
  overflow: visible;
  border-radius: 6px;
}

.details__star {
  position: absolute;
  top: -210px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: auto;
  z-index: 3;
}

.details__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NEW starburst badge */
.new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: polygon(
    50% 0%, 61% 11%, 75% 3%, 77% 19%, 93% 20%, 85% 35%,
    98% 44%, 87% 55%, 95% 69%, 80% 71%, 82% 87%, 67% 80%,
    58% 95%, 50% 82%, 42% 95%, 33% 80%, 18% 87%, 20% 71%,
    5% 69%, 13% 55%, 2% 44%, 15% 35%, 7% 20%, 23% 19%,
    25% 3%, 39% 11%
  );
}

.new-badge--large {
  position: relative;
  top: auto;
  right: auto;
  width: 90px;
  height: 90px;
  font-size: 0.8125rem;
}

/* ============================================
   Horse Banner Section
   ============================================ */
.banner-section {
  position: relative;
  overflow: visible;
  padding: 40px 0;
}

.banner-section__watermark {
  position: absolute;
  z-index: 1;
  top: -15%;
  left: 5%;
  width: 45%;
  pointer-events: none;
  user-select: none;
}

.banner-section__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
  z-index: 2;
}

.banner-section__img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.banner-section__doodle {
  position: absolute;
  right: 8%;
  bottom: -15%;
  width: 400px;
  height: auto;
  z-index: 1;
}

/* ============================================
   Back to All Beers
   ============================================ */
.back-link {
  padding: 48px 0 0;
  text-align: center;
}

.back-link__anchor {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000000;
  background: url('../images/button-bg.png') center / cover no-repeat;
  border: none;
  padding: 10px 48px;
  transition: opacity 0.2s;
}

.back-link__anchor:hover {
  opacity: 0.8;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  overflow: hidden;
}

/* Footer brand image - overlaps on top of the dark block */
.footer__brand-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: -24vw;
}

.footer__brand-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dark bottom part */
.footer__dark {
  background-color: #000000;
  padding-top: calc(24vw + 48px);
  padding-bottom: 48px;
}

.footer__main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__nav-col a {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: opacity 0.2s;
}

.footer__nav-col a:hover {
  opacity: 0.7;
}

.footer__nav-col--social {
  text-align: left;
}

.footer__social-label {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 10px;
  display: block;
}

.footer__social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.footer__social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: opacity 0.2s;
}

.footer__social-icons a:hover {
  opacity: 0.7;
}

.footer__starburst {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -60px;
  margin-bottom: -60px;
}

.footer__starburst img {
  width: 120px;
  height: auto;
}

/* Light bottom part */
.footer__light {
  background: var(--color-offwhite) url('../images/paper-texture-1.jpg') center / cover no-repeat;
  padding: 80px 0 24px;
}

.footer__warning {
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 16px;
}

.footer__warning p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-dark);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px var(--gutter) 0;
  border-top: 1px solid var(--color-grey-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.footer__bottom-links {
  display: flex;
  gap: 28px;
}

.footer__bottom-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--color-dark);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --gutter: 48px;
  }

  .header__logo {
    width: 300px;
  }
}

@media (max-width: 960px) {
  :root {
    --gutter: 32px;
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    width: 240px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__bottle {
    order: -1;
    padding-top: 0;
  }

  .hero__bottle-img {
    width: 55%;
    max-width: 260px;
  }

  .hero__watermark {
    width: 200px;
    right: -5%;
    top: 15%;
    transform: rotate(12deg);
  }

  .hero__star {
    right: var(--gutter);
    bottom: -40px;
    width: 140px;
  }

  .details__inner {
    grid-template-columns: 1fr;
  }


  .banner-section__doodle {
    width: 140px;
    right: 0;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__nav-col--social {
    text-align: left;
    width: 100%;
  }

  .footer__social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .header {
    padding-top: 16px;
  }

  .header__logo {
    width: 180px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__tagline {
    font-size: 1rem;
  }

  .hero__star {
    width: 110px;
    bottom: -30px;
  }

  .specs-list__item {
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }



  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
