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

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

:root {
  --color-dark: #1a1a1a;
  --color-accent: #E01020;
  --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: var(--color-accent);
  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__inner {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero__can {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  grid-column: 2;
  grid-row: 1;
  margin-top: -360px;
  margin-right: -60px;
}

.hero__can-img {
  width: 130%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.18));
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  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: var(--color-accent);
  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: -60px;
}

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

.specs-list__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 6px 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: var(--color-accent);
}

.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__pill-capsule {
  position: absolute;
  top: -550px;
  left: 60px;
  width: 480px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  transform: rotate(-15deg);
}

.details__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Disclaimer */
.details__disclaimer {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-grey);
  margin-top: 20px;
  max-width: 100%;
}

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

.banner-section__eye {
  position: absolute;
  z-index: 1;
  top: -10%;
  left: 2%;
  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: 4%;
  bottom: -10%;
  width: 320px;
  height: auto;
  z-index: 1;
  opacity: 0.9;
}

/* ============================================
   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('../../0.0/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__can {
    grid-column: 1;
    order: -1;
    margin-right: 0;
    margin-top: 0;
    justify-content: center;
  }

  .hero__can-img {
    width: 65%;
    max-width: 320px;
  }

  .hero__content {
    grid-column: 1;
  }

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

  .details__photo {
    order: -1;
  }

  .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;
  }

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

  .details__pill-capsule {
    width: 120px;
    top: -40px;
    left: -20px;
  }

  .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;
  }
}
