/* ==========================================
   RESET
========================================== */

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

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

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

ul {
  list-style: none;
}


/* ==========================================
   VARIABLES
========================================== */

:root {
  /* Layout */
  --container: 1280px;
  --radius: 20px;
  /* Typography */
  --font-body: 'proxima-nova', sans-serif;
  /* Colors */
  --color-background: #f2e7d4;
  --color-surface: #FFFFFF;
  --color-text: #666030;
  --color-text-light: #e9d9cc;
  --color-text-dark: #383317;
  --color-sage: #666030;
  --color-rose: #e4bebc;
  --color-brown: #b7856a;
  --color-burgundy: #62162c;
  --color-border: #E5DED4;
  --color-beige: #f2e7d4;
}

/* ==========================================
   BASE
========================================== */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  background-image: url(../images/bkg-texture.jpg);
  background-repeat: repeat;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--container), 90%);
  margin: 0 auto;
}

.hero-content,
.edition,
.info,
footer {
  text-align: center;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  /*max-width: 65ch;*/
  color: var(--color-text-light);
}


@media (min-width: 768px) {

  h2 em{
    display: block;
  }
}

/* ==========================================
   BUTTONS
========================================== */

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-sage);
  color: var(--color-text-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .3s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  opacity: .8;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-brown);
  color: var(--color-text-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: all .3s ease;
}

.button-secondary:hover {
  transform: translateY(-2px);
  opacity: .8;
}

.button-burgundy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--color-burgundy);
  color: var(--color-rose);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  transition: all .3s ease;
  text-transform: uppercase;
}

.button-burgundy:hover {
  transform: translateY(-2px);
  opacity: .8;
}


@media (max-width: 768px) {
  .button-primary, .button-secondary, .button-burgundy{
    padding: .75rem 3rem;
    font-size: .75rem;
  }
}

/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement-bar {
  background: var(--color-sage);
  text-align: center;
  padding: 12px 20px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.announcement-bar a {
  color: var(--color-text-light);
  transition: all .25s ease;
}
.announcement-bar a:hover {
  opacity: 0.7;
}

/* ==========================================
   HEADER
========================================== */

header{
  position: relative;
}

@media (max-width: 768px) {

  .announcement-bar {
    font-size: .75rem;
  }
}

/* ==========================================
   SECTIONS
========================================== */

section {
  padding: 8rem 0;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  z-index: 1;
  padding: 6rem 0 4rem 0;
}

.hero-content {
  width: min(90%, 800px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

span.welcome{
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 20px 0;
}

.pgc-logo {
  width: 280px;
  max-width: 90%;
  margin: 0 auto 75px;
}

.hero h1 {
  font-family: "gyst-variable", sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
  color:var(--color-beige);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  max-width: 440px;
  letter-spacing: .08em;
}

.hero h1 em {
  font-style: italic;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/overlay.png");
  background-repeat: repeat;
  z-index: 1;
  pointer-events: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .hero{
    min-height: 700px;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .envelope-card {
    padding: 60px 25px;
  }
}

/* ==========================================
   PAPER GARDEN CLUB
========================================== */

.paper-garden-envelope{
  padding: 8rem 0 0 0;
}

.paper-garden {
  padding: 8rem 0 0 0;
  background-size: 70% auto;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  margin-top: -480px;
  z-index: 10;
}

.paper-garden-card {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 5rem 4rem 4rem;
  background: var(--color-burgundy);
  text-align: center;
  overflow: visible;
  background-image:
    url("../images/envelope.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.paper-garden-content {
  color: var(--color-beige);
}

.paper-garden-content h2 {
  font-family: "gyst-variable", sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.paper-garden-club {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  width: 70px;
}

.paper-garden-content .seal{
  display: block;
  width: 14%;
  margin: 70px auto 30px auto;
}

.paper-garden-content .headline{
  max-width: 200px;
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 auto;
}

.paper-garden-content p {
  max-width: 200px;
  line-height: 1.25rem;
  margin: 0 auto;
}

/* ==========================================
   PAPER GARDEN MOBILE
========================================== */

@media (max-width: 900px) {

  .paper-garden {
    padding: 4rem 0;
    background-size: cover;
  }

} 

@media (max-width: 768px) {

  .paper-garden-card{
    scale: 0.80;
  }
  .paper-garden-content h2{
    font-size: 2.25rem;
  }
  .paper-garden-content p{
    padding: .75rem 0;
  }

  .paper-garden-content .seal{
    width: 31%;
  }

}

/* =========================
   INTRO
========================= */

.intro {
  padding: 100px 20px;
  text-align: center;
}

.intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-family: "gyst-variable", sans-serif;
  text-transform: uppercase;
  color: #b98c84;

  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.1;

  margin-bottom: 60px;
}

.intro h3 {
  font-family: "gyst-variable", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro p {
  margin-bottom: 18px;
}

.price {
  margin: 50px 0;
}

.price strong {
  display: block;
  font-size: 2rem;
  color: var(--color-burgundy);
}

.price span {
  display: block;
  font-size: .9rem;
}

/* =========================
   EDITION
========================= */

.edition {
  background: var(--color-burgundy);
  padding: 120px 20px;
  text-align: center;
}

.edition-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.edition-number {
  color: var(--color-beige);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2rem;
  font-size: .85rem;
  font-weight: 600;
}

.bouquet-logo {
  width: 480px;
  max-width: 90%;
  margin: 0 auto 40px;
}

.edition-image {
  padding: 2rem 0 4rem 0;
}

.edition .pgc-logo{
  width: 200px;
  margin-bottom: 50px;
}

.edition .btn {
  margin-top: 60px;
}

/* ==========================================
   CLUB INFO
========================================== */

.club-info,
.club-faq {
  text-align: center;
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
}

/* ==========================================
   HEADINGS
========================================== */

.club-info h2,
.club-faq h2 {
  font-family: "gyst-variable", sans-serif;
  font-style: italic;
  color: var(--color-burgundy);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* ==========================================
   PARAGRAPHS
========================================== */

.club-info p,
.club-faq p {
  color: var(--color-burgundy);
  font-family: "Source Code Pro", monospace;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .08em;
  font-size: .95rem;
}

.intro-text {
  margin-bottom: 3rem;
}

/* ==========================================
   FEATURES
========================================== */

.feature {
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ==========================================
   PRICE
========================================== */

.subscription-price {
  margin: 0;
}

.price-label {
  display: block;
  margin-bottom: .75rem;
  letter-spacing: .15em;
  color: var(--color-burgundy);
  font-size: .9rem;
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
}

.subscription-price h3 {
  color: var(--color-burgundy);
  font-family: "Source Code Pro", monospace;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.subscription-price p {
  max-width: 500px;
  font-size: .75rem;
  margin-bottom: 1.5rem;
}

/* ==========================================
   FAQ
========================================== */

.club-faq {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.faq-block {
  margin-bottom: 4rem;
}

.faq-block:last-child {
  margin-bottom: 0;
}

.faq-block p {
  margin-bottom: 2.5rem;
}

.faq-block a{
  font-weight: 600;
  transition: all 0.25s ease;
}

.faq-block a:hover{
  opacity: 0.65;
}

.faq-block img{
  display: block;
  margin:0 auto;
}

.faq-block .footer-flower{
  max-width: 100px;
  margin: 3rem auto;
}

.faq-block .bysc-logo{
  max-width: 300px;
}

/* ==========================================
   SPACING
========================================== */

.club-info {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.club-info .button-secondary {
  margin-top: 2rem;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

  .club-info {
    padding-top: 0rem;
    padding-bottom: 4rem;
  }

  .club-faq {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .club-info p,
  .club-faq p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .feature {
    margin-bottom: 2rem;
  }

  .subscription-price {
    margin: 4rem 0 0 0;
  }

  .faq-block {
    margin-bottom: 5rem;
  }

  .intro,
  .edition,
  .info {
    padding: 80px 20px;
  }

}

/* =========================
   FOOTER
========================= */

footer {
  color: var(--color-burgundy);
  text-align: center;
  padding: 60px 20px;
}

.footer-copyright {
  color: var(--color-burgundy);
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: .08em;
  font-weight: 700;
}

.social-link{
  width:28px;
  display: inline-block;
  margin: 2rem auto;
}

.social-link:hover img{
  opacity: 0.7;
}

.social-link img{
  transition: all .25s ease;
  width:100%;
}

@media (max-width: 768px) {

  footer{
    padding: 20px;
  }
}
/* ------------------------------------------
   REVEALS
------------------------------------------ */

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:
      opacity .9s ease,
      transform .9s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* ------------------------------------------
   CLOSED MESSAGE
------------------------------------------ */

p.closed-message{
  font-family: "Source Code Pro", monospace;
  margin-top: 1.5rem;
  color: var(--color-burgundy);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto;
}


.edition p.closed-message{
  color: var(--color-beige); 
}