:root {
  --color-green: #0A905C;
  --color-green-dark: #008342;
  --color-yellow: #FCE000;
  --color-white: #FFFFFF;
  --color-link: #0052AF;
  --shadow-lang: 4px 4px 15px 0 rgba(241, 226, 109, 0.30);
  --shadow-btn: 3px 3px 10px 0 #A9BBC9;
  --shadow-title: 2px 4px 32px rgba(8, 70, 46, 0.60);
  --page-margin-x: 38px;
  --page-margin-top: 40px;
  --page-margin-bottom: 96px;
}

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

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

/* Body */

body {
  position: relative;
  margin: var(--page-margin-top) var(--page-margin-x) var(--page-margin-bottom);
  overflow-x: hidden;
  background-color: var(--color-green);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.offer-content{
  display: none;
}

.coming-soon{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 70vh;
}


.coming-soon-title{
  text-align: center;
  font-size:7rem;
  font-style: italic;
  font-weight: 900;
}

.coming-soon-text{
  width: 45%;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
}

.background-glow {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 130rem;
  border-radius: 150rem;
  background: radial-gradient(46.96% 50% at 50% 50%, rgba(252, 224, 0, 0.60) 0%, rgba(252, 224, 0, 0) 100%);
}

.background-glow-coming-soon {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 75rem;
  background: radial-gradient(46.96% 50% at 50% 50%, rgba(252, 224, 0, 0.60) 0%, rgba(252, 224, 0, 0) 100%);
}

h1 {
  color: var(--color-yellow);
  font-size: 64px;
  font-weight: 900;
  line-height: normal;
  text-shadow: var(--shadow-title);
  text-transform: uppercase;
  margin: 0;
}

h2 {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

h3 {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

p {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
  line-height: 115%;
}

.liens {
  color: var(--color-link);
  text-decoration: underline;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 8px;
  border: none;
  background: var(--color-white);
  box-shadow: var(--shadow-btn);
  color: var(--color-green-dark);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

/* Header */

.header {
  display: grid;
  grid-template-columns: 62px 1fr 62px;
  align-items: start;
  height: 96px;
}

.header-logo {
  grid-column: 2;
  justify-self: center;
  display: block;
  max-height: 100%;
  height: auto;
}

.btn-lang {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 55px;
  border: none;
  background-color: var(--color-yellow);
  box-shadow: var(--shadow-lang);
  color: black;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin-top: 140px;
}

.hero-divider {
  width: 3px;
  height: 281px;
  margin: 0;
  border: none;
  background: var(--color-white);
}

.promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.promo-cashback {
  gap: 32px;
}

.promo-contest {
  justify-content: space-between;
}

.promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.promo-wordmark {
  max-width: 100%;
  height: auto;
}

.promo-subtitle {
  text-align: center;
}

/* Offer */

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.offer-bottles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  margin-top: 96px;
}

.offer-bottle {
  width: 17%;
  height: auto;
}

.offer-details {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.offer-contact {
  font-weight: 500;
  margin: 0;
}

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 96px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 80%;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 80%;
  margin-top: 40px;
}

.faq-row {
  display: flex;
  gap: 64px;
  width: 100%;
}

.accordion {
  width: 45%;
}

.accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  align-self: stretch;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
  text-transform: uppercase;
}


.accordion-summary > span:first-child {
  flex: 1;
  min-width: 0;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-white);
}


.accordion-icon-minus {
  display: none;
}

.accordion[open] .accordion-icon-plus {
  display: none;
}

.accordion[open] .accordion-icon-minus {
  display: flex;
}

.accordion-answer {
  padding-top: 10px;
}

/* Responsive */

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    gap: 48px;
    margin-top: 80px;
  }

  .hero-divider {
    width: min(100%, 281px);
    height: 3px;
  }

  .promo-contest {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-margin-x: 24px;
    --page-margin-top: 32px;
    --page-margin-bottom: 40px;
  }

  .header {
    height: auto;
    min-height: 40px;
  }

  .header-logo {
    max-height: 40px;
  }

  main {
    display: flex;
    flex-direction: column;
    gap:64px;
  }

  .coming-soon {
    gap: 2px;
    padding: 0 4px;
  }

  .coming-soon-title {
    font-size: 4rem;
  }

  .coming-soon-text {
    width: 100%;
    font-size: 2rem;
  }

  .hero,
  .offer {
    display: contents;
  }

  .hero-divider {
    display: none;
  }

  .promo-cashback {
    order: 1;
    margin-top: 48px;
  }

  .offer-bottles {
    order: 2;
    margin-top: 0;
    gap: 16px;
  }

  .promo-contest {
    order: 3;
  }

  .offer-details {
    order: 4;
    width: 100%;
  }

  .faq {
    order: 5;
    margin-top: 64px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  .offer-bottle {
    width: min(40%, 160px);
  }

  .faq-header,
  .faq-grid {
    width: 100%;
  }

  .faq-row {
    flex-direction: column;
    gap: 32px;
  }

  .accordion {
    width: 100%;
  }

  .background-glow {
    height: 70rem;
  }
}

@media (max-width: 480px) {
  :root {
    --page-margin-x: 16px;
  }

  .coming-soon {
    gap: 2px;
    padding: 0 4px;
  }

  .coming-soon-title {
    font-size: 3rem;
  }

  .coming-soon-text {
    width: 100%;
    font-size: 1rem;
  }

  h1{
    font-size: 1.75rem;
  }

  h2{
    font-size: 0.75rem;
  }

  h3{
    font-size: 0.5rem;
  }

  p{
    font-size: 0.5rem;
  }

  .header {
    grid-template-columns: 52px 1fr 52px;
  }

  .btn-lang {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }

  .btn-primary {
    max-width: none;
    height: 32px;
    padding: 5px;
    font-size: 0.75rem;
  }

  .promo-cashback,
  .promo-contest {
    gap: 24px;
  }

  .promo-subtitle{
    font-size: 0.9rem;
  }

  .offer-bottles {
    flex-wrap: wrap;
  }

  .offer-bottle {
    width: min(45%, 140px);
  }

  .faq{
    margin-top: 0;
  }

  .accordion-answer {
    font-size: 0.65rem;
    line-height: 130%;
    padding-top: 0;
  }

  .accordion-icon-plus, .accordion-icon-minus{
    height: 12px;
    width: 12px;
  }

  .accordion-summary {
    font-size: 12px;
    font-weight: 500;
  }

  .accordion-icon{
    width: 20px;
    height: 20px;
  }

  .faq-grid {
    gap: 24px;
    margin-top:24px;
  }

  .faq-row {
    gap: 24px;
  }
}
