/* ============================================================
   FOTBAL 101 — Știi Nu Știi Fotbal, Vara Asta Se Joacă
   ============================================================ */

/* ----- Font faces ----- */
@font-face {
  font-family: 'Gotham Bold';
  src:
    url('../fonts/Gotham-Bold.woff2') format('woff2'),
    url('../fonts/Gotham-Bold.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src:
    url('../fonts/Gotham-Book.woff2') format('woff2'),
    url('../fonts/Gotham-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Black';
  src:
    url('../fonts/Gotham Black_Rom.woff') format('woff'),
    url('../fonts/Gotham Black_Rom.woff2') format('woff2');
  font-style: normal;
}

/* ----- Variables ----- */
:root {
  --s101-yellow: #f7df10;
  --s101-blue: #00689e;
  --s101-navy: #003f6b;
  --s101-white: #ffffff;
  --s101-dark: #1a1a1a;
  --s101-grey: #a2a2a2;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Gotham', sans-serif;
  line-height: 1.6;
}

.menu-main a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
}
.menu-main a:hover {
  text-decoration: underline;
}

button.menu-toggle:focus {
  outline: none;
}

.s101-bold {
  font-family: 'Gotham Black', sans-serif;
}

/* ============================================================
   SHARED BUTTON
   ============================================================ */
.s101-btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 40px;
  font-family: 'Gotham Black', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  line-height: 1.3;
  white-space: nowrap;
}
.s101-btn:hover {
  text-decoration: none;
}

.s101-btn-navy {
  background-color: var(--s101-yellow);
  color: var(--s101-blue);
}
.s101-btn-navy:hover {
  color: var(--s101-blue);
}

.s101-btn-dark {
  background-color: var(--s101-blue);
  color: var(--s101-white);
}
.s101-btn-dark:hover {
  color: var(--s101-white);
}

.s101-btn-outline {
  color: var(--s101-yellow);
  background-color: var(--s101-blue);
}
.s101-btn-outline:hover {
  color: var(--s101-yellow);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.s101-hero {
  background-color: var(--s101-yellow);
  position: relative;
}

.s101-hero-photo img {
  width: 100%;
  display: block;
}

.s101-hero-body {
  padding-bottom: 48px;
  position: absolute;
  bottom: -2%;
  left: 37%;
}

.s101-hero-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Bottle overlaps the photo edge */
.s101-hero-bottle {
  flex: 0 0 auto;
  width: 220px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.s101-hero-bottle img {
  width: 100%;
  display: block;
}

.s101-hero-text {
  flex: 1;
  padding-top: 32px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s101-hero-text h1 {
  font-family: 'Gotham Black', sans-serif;
  font-size: clamp(28px, 3.8vw, 54px);
  color: var(--s101-blue);
  text-transform: uppercase;
  line-height: 1.1;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s101-hero-text h1 .white_text {
  color: var(--s101-white);
}

.s101-hero-text p {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--s101-blue);
  line-height: 1.65;
  max-width: 575px;
  margin-bottom: 14px;
}

.s101-sponsor {
  width: 400px;
  max-width: 100%;
  display: block;
  margin-left: 50px;
}

@media (max-width: 992px) {
  .s101-hero-content {
    flex-direction: column;
    align-items: center;
  }
  .s101-hero-bottle {
    width: 150px;
    margin-top: -70px;
  }
  .s101-hero-text {
    padding-top: 8px;
    text-align: center;
  }
  .s101-hero-text p {
    font-size: 15px;
  }
  .s101-sponsor {
    width: 300px;
  }
  .s101-hero-body {
    padding-bottom: 0px;
    bottom: 3%;
    left: 0;
    right: 0;
    padding-left: 150px;
  }
}

/* Static hero block (paragraph + sponsor): hidden by default, shown only at 551px–992px */
.s101-hero-static {
  display: none;
}

/* Mid mobile hero (551px–992px only) */
.s101-hero-photo--mid {
  display: none;
}
@media (min-width: 551px) and (max-width: 992px) {
  .s101-hero-photo--mid {
    display: block;
  }
  .s101-hero-photo--mid img {
    width: 100%;
    display: block;
  }
}

/* 551px–600px: padding-bottom extends yellow zone for text */
@media (min-width: 551px) and (max-width: 600px) {
  .s101-hero-photo--mid {
    padding-bottom: 50px;
  }
}

/* Single composed mobile hero: hidden above 550px */
.s101-hero-photo--small {
  display: none;
}

/* ≤550px: show single composed image, hide overlays */
@media (max-width: 550px) {
  .s101-hero-photo--small {
    display: block;
  }
  .s101-hero-photo--small img {
    width: 100%;
    display: block;
  }
  .s101-hero-body {
    display: none;
  }
  .s101-hero-static {
    display: none;
  }
}

/* ============================================================
   SECTION 2 — PRIZES
   ============================================================ */
.s101-prizes {
  background-color: var(--s101-blue);
  color: var(--s101-white);
  padding: 32px 0;
}

.s101-prizes-title {
  font-family: 'Gotham Black', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--s101-yellow);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.s101-prizes-subtitle {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  margin-bottom: 48px;
}

/* Shared wrapper: prizes triangle + mechanic cards on the left,
   ball+beer PNG absolutely positioned on the right */
.s101-prizes-main {
  position: relative;
  margin-bottom: 48px;
}

.s101-prizes-left-col {
  max-width: 800px;
}

/* ----- Prize grid 3x2 ----- */
.s101-prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 32px;
}

.s101-prize-card {
  display: flex;
  align-items: center;
}

.s101-prize-icon {
  width: 100%;
  max-height: 225px;
  object-fit: contain;
}

/* ----- Mechanic images ----- */
.s101-mechanic {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.s101-mechanic img {
  flex: 1;
  width: 0;
  object-fit: contain;
}

/* ----- Ball + beer decoration ----- */
.s101-prizes-decoration {
  position: absolute;
  right: 10%;
  top: 63%;
  transform: translateY(-50%);
  width: 220px;
  pointer-events: none;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .s101-prizes-decoration {
    right: -5%;
    width: 200px;
    top: 66%;
  }
}

@media (max-width: 992px) {
  .s101-prizes {
    padding: 32px 0;
  }
}

/* ----- Partner stores ----- */
.s101-stores-label {
  font-family: 'Gotham Black', sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--s101-yellow);
}

.s101-stores-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.s101-stores-row .s101-btn {
  margin-left: 100px;
  flex-shrink: 0;
}

.s101-stores-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.s101-stores-logos img {
  width: auto;
  object-fit: contain;
}

.s101-stores-logos img:nth-child(1) {
  height: 35px;
} /* Auchan */
.s101-stores-logos img:nth-child(2) {
  height: 60px;
} /* PENNY */
.s101-stores-logos img:nth-child(3) {
  height: 60px;
} /* Mega Image */
.s101-stores-logos img:nth-child(4) {
  height: 60px;
} /* Kaufland */

@media (max-width: 992px) {
  /* Prizes + decoration side-by-side: triangle left, beer+ball right */
  .s101-prizes-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0px;
  }

  .s101-prizes-left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 125px;
  }

  /* Prize grid: 3 columns, 2 rows, slightly smaller */
  .s101-prize-grid {
    column-gap: 12px;
    row-gap: 16px;
    margin-bottom: 0;
  }
  .s101-prize-icon {
    width: 100%;
    max-height: 125px;
  }

  /* Per-card position overrides */
  .s101-prize-grid .s101-prize-card:nth-child(1) {
    transform: translate(8%, 16%);
  }
  .s101-prize-grid .s101-prize-card:nth-child(2) {
    transform: translate(8%, 16%);
  }
  .s101-prize-grid .s101-prize-card:nth-child(3) {
    transform: translate(0%, -35%);
  }
  .s101-prize-grid .s101-prize-card:nth-child(4) {
    transform: translate(0%, 0%);
  }
  .s101-prize-grid .s101-prize-card:nth-child(5) {
    transform: translate(-20%, 30%);
  }

  .s101-prize-grid .s101-prize-card:nth-child(5) img {
    max-height: 150px;
  }

  .s101-prize-grid .s101-prize-card:nth-child(6) {
    transform: translate(-60%, -10%);
  }

  .s101-prize-grid .s101-prize-card:nth-child(6) img {
    max-height: 100px;
  }

  /* Ball+beer: right side, same height as prizes */
  .s101-prizes-decoration {
    width: 150px;
    top: 50%;
    right: 0;
  }

  .s101-stores-row {
    flex-wrap: nowrap;
    gap: 12px;

    flex-direction: column;
  }
  .s101-stores-logos {
    gap: 24px;
  }
  .s101-stores-logos img:nth-child(1) {
    height: 20px;
  } /* Auchan */
  .s101-stores-logos img:nth-child(2) {
    height: 35px;
  } /* PENNY */
  .s101-stores-logos img:nth-child(3) {
    height: 35px;
  } /* Mega Image */
  .s101-stores-logos img:nth-child(4) {
    height: 35px;
  } /* Kaufland */

  .s101-btn {
    font-size: 16px;
    padding: 10px 24px;
    min-height: 40px;
  }

  .s101-stores-row .s101-btn {
    margin-left: 0;
  }

  .s101-stores-label {
    font-size: 18px;
  }

  .s101-mechanic {
    margin-bottom: 16px;
  }
}

/* ============================================================
   SECTION 3 — SHURUBEL
   ============================================================ */
.s101-shurubel {
  background-color: var(--s101-yellow);
  background-image: url('../img/fotbal101/shurubel_homepage.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding: 64px 0;
}

.s101-shurubel-text {
  max-width: 70%;
}

.s101-shurubel-text h2 {
  font-family: 'Gotham Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--s101-blue);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.s101-shurubel-text .s101-shurubel-questions {
  font-family: 'Gotham Black', sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--s101-blue);
  line-height: 1.5;
  margin-bottom: 24px;
}

.s101-shurubel-text p {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: var(--s101-blue);
  line-height: 1.7;
  margin-bottom: 16px;
}

.s101-shurubel-text p:nth-of-type(2) {
  max-width: 70%;
}
.s101-shurubel-text p:nth-of-type(3) {
  max-width: 55%;
}

.s101-shurubel-text .s101-btn {
  margin-top: 8px;
}

@media (max-width: 992px) {
  .s101-shurubel {
    background-image: url('../img/fotbal101/shurubel_mobile.png');
    background-position: bottom center;
    background-size: contain;
    padding: 32px 0;
    background-position-x: 70%;
  }
  .s101-shurubel-text {
    max-width: 100%;
  }
  .s101-shurubel-text .s101-shurubel-questions {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .s101-shurubel-text h2 {
    font-size: 34px;
  }
}

/* ============================================================
   SOCIAL BAR
   ============================================================ */
.s101-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: var(--s101-white);
  gap: 16px;
  flex-wrap: wrap;
}

.s101-social-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.s101-social-label {
  font-family: 'Gotham Black', sans-serif;
  font-size: 16px;
  color: var(--s101-blue);
  font-weight: 700;
  white-space: nowrap;
}

.s101-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.s101-social-icon {
  width: 36px;
  height: 36px;
  display: block;
}
.s101-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .s101-social-bar {
    flex-direction: column-reverse;
    align-items: center;
    padding: 24px 16px;
    gap: 20px;
  }
  .s101-social-left {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.s101-footer {
  background-color: var(--s101-grey);
  padding: 18px 40px;
  text-align: center;
}

.s101-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 20px;
  margin-bottom: 10px;
}

.s101-footer-links a,
.s101-footer-links span {
  font-family: 'Gotham', sans-serif;
  font-size: 11px;
  color: var(--s101-white);
  text-decoration: none;
}

.s101-footer-disclaimer {
  font-family: 'Gotham Black', sans-serif;
  font-size: 10px;
  color: var(--s101-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .s101-footer {
    padding: 16px;
  }
  .s101-footer-links {
    gap: 6px 10px;
  }
}

/* ============================================================
   PROMO MODAL — Repriza 2 announcement
   ============================================================ */
.s101-modal .modal-dialog {
  max-width: 520px;
}

.s101-modal-content {
  background-color: var(--s101-yellow);
  border: none;
  border-radius: 24px;
  padding: 48px 40px 28px;
  text-align: center;
}

.s101-modal-body {
  padding-bottom: 0;
}

.s101-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--s101-blue);
  opacity: 1;
  text-shadow: none;
}
.s101-modal-close:hover {
  opacity: 0.6;
}

.s101-modal-title {
  font-family: 'Gotham Black', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--s101-blue);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.s101-modal-text {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--s101-blue);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .s101-modal-content {
    padding: 36px 24px;
  }
}
