/*COLOR VARIABLES*/
:root {
  --kfa-ash: #E8E8E8;
  --kfa-ltred: #D73438;
  --kiko-red: #B52D31;
  --kfa-drkred: #821518;
  --kfa-char: #1A1A1A;
  --kfa-black: #000000;

  --gradient: linear-gradient(to right, #F4F4F4, #D1D1D1);
  --red-gradient: linear-gradient(to right, #B52D31, #821518);
  --char-gradient: linear-gradient(to right, #3B3B3B, #1A1A1A);
  --black-gradient: linear-gradient(to right, #1A1A1A, #000000);
}
/*COLOR VARIABLES END*/

/*GLOBAL STYLES*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
body, .body {
  background: var(--kfa-char);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: normal;
  margin: 0;
}
section {
  margin: auto;
  max-width: 1200px;
  padding: 50px 15px;
  width: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#bodyContent {
  background: var(--kfa-char);
  color: #ffffff;
  margin: 167px auto 0px;
}
.flexContent {
  display: flex;
}
/*GLOBAL STYLES END*/

/*BUTTONS*/
.btn {
  background: #F4F4F4;
  border: none;
  border-radius: 8px;
  color: #121212;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding: 15px;
  transition: transform 0.2s ease;
  text-transform: uppercase;
  text-decoration: none;
}
.btn:hover {
  background: #C4C4C4;
  text-decoration: none;
}
.btnRed {
  background: var(--kiko-red);
  color: white;
}
.btnRed:hover {
  background: var(--kfa-drkred);
}
.btnCharcoal {
  background: var(--kfa-char);
  color: white;
}
.btnCharcoal:hover {
  background: #3B3B3B;
}
.btnBlack {
  background: var(--kfa-black);
  color: white;
} 
.btnBlack:hover {
  background: var(--kfa-char);
}
.btnGradient {
  background: var(--gradient);
  border: 2px solid #ffffff;
  padding: 13px;
}
.btnGradient:hover {
  background: #C4C4C4;
}
.btnRedGradient {
  background: var(--red-gradient);
  border: 2px solid #4E080A;
  color: white;
  padding: 13px;
}
.btnRedGradient:hover {
  background: var(--kfa-drkred);
}
.btnCharGradient {
  background: var(--char-gradient);
  border: 2px solid #444444;
  color: white;
  padding: 13px;
}
.btnCharGradient:hover {
  background: var(--kfa-char);
}
.btnBlackGradient {
  background: var(--black-gradient);
  border: 2px solid #000000;
  color: white;
  padding: 13px;
}
.btnBlackGradient:hover {
  background: var(--kfa-char);
}
/*BUTTONS END*/

/*TYPOGRAPHY*/
a {
  color: var(--kiko-red);
  text-decoration: none
}
a:hover {
  text-decoration: underline;
}
b {
  font-weight: 600;
}
.light {
  font-weight: lighter;
  font-size: 40px;
  line-height: 48px;
  margin: 0;
}
.cap {
  text-transform: uppercase;
}
.shadow {
  color: var(--kfa-black);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin: 0;
  font-weight: 600;
}
h1, .h1 { font-size: 40px; line-height: 48px; margin-bottom: 20px;}
h2, .h2 { font-size: 24px; line-height: 32px; }
h3, .h3 { font-size: 36px; line-height: 44px; font-weight: 400; }
h4, .h4 { font-size: 24px; line-height: 36px; font-weight: 300;  margin-bottom: 20px; }

hr {
  background: var(--kiko-red);
  border: none;
  height: 1px;
  margin: 15px 0;
}

ul {
  padding-left: 15px;
}
li h4 {
  margin-bottom: 0;
}
/*TYPOGRAPHY END*/

/*FOOTER*/
#footContainer {
  background: var(--kfa-black);
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  padding: 25px 0;
}
#footContainer .footContent {
  max-width: 1200px;
  margin: 50px auto;
}
#footContainer .footContent .logo IMG {
  max-width: 330px;
}
.flex {
  display: flex; 
  justify-content: space-between;
}
#footContainer .footSection {
  margin-top: 45px;
}
#footContainer .footCols div {
  flex: 1;
}
.footContent A {
  color: #fff;
  text-decoration: none;
}
.footContent A:hover {
  text-decoration: underline;
}
.footContent .newsletterSignup {
  margin: 25px 0;
}
#socialIcons A {
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#socialIcons A:hover {
  background: var(--kiko-red);
  color: #fff;
}
#socialIcons ul {
    list-style-type: none;
    padding: 0;
}
#socialIcons li:not(:last-child) {
    margin-right: 12px;
}
#socialIcons li {
    margin-right: 0;
}
.disclaimerIcons {
    margin-right: 40px;
}
.disclaimerIcons IMG {
    height: 60px;
    width: 60px;
}
#footContainer .body {
  background: #000;
}
/*FOOTER END*/


/*****************
GLOBAL SITE STYLES
******************/

/*GRADIENT HERO*/
.gradientHero {
  background-size: cover;
  height: 600px;
  margin-bottom: 50px;
  background-image:linear-gradient(360deg, rgba(26,26,26,1) 0%, rgba(26,26,26,0.7) 40%, rgba(26,26,26,0.1) 90%), url(/images/landing-hero.jpg);
}
.gradientHero .heroContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  max-width: 1200px;
  margin: auto;
}
.gradientHero .heroContent h2 {
  margin-bottom: 50px;
}

/*AGE GATE*/
.age-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.age-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.age-modal-content {
  background: #000;
  max-width: 960px;
  width: 90%;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  background-image: url(/images/age_gate_image.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.ageContent {
  display: flex;
  padding: 20px;
  flex-direction: column;
  min-height: 400px;
  justify-content: space-between;
  color: #fff;
}
.ageContent .logo IMG {
  width: 300px;
}
.ageVerify {
  background: var(--kfa-char);
  display: flex;
  padding: 20px;
  align-items: center;
}
A#under18Link {
  color:var(--kfa-ash);
  text-decoration:underline; 
  cursor:pointer;
  width: 100%;
}
.ageVerify .inputs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.age-modal.show .age-modal-content {
  transform: scale(1);
}
.age-modal-content p { 
  margin-bottom: 25px; 
  font-size: 16px; 
}
.age-inputs {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.age-inputs::before {
  content: "/";
  color: white;
  font-size: 50px;     
  line-height: 46px;     
  height: 46px;       
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  font-weight: lighter;
}
.age-inputs input {
  padding: 12px 15px;
  width: 80px;
  margin: 0 10px;
  font-size: 16px;
  text-align: center;
}
body.modal-open { 
  overflow: hidden; 
}
/*AGE GATE END*/

#emailSignUp {
  margin-bottom: 25px;
  padding: 0;
}
#emailSignUp #sib-container {
  background: none;
  padding: 0;
}
#emailSignUp .sib-form-block {
  padding: 0;
}
#sib-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
#emailSignUpSubmit {
  margin-top: 0;
}
.sib-input .input {
  color: var(--kfa-black)!Important;
  padding: 6px 10px!Important;
}
 #sib-container {
  background: none;
  padding: 17px 0;
}
.sib-form-block {
  padding: 0;
}
.sib-form {
  font-family: inherit;
  padding: 0;
}

/*RESPONSIVENESS*/
@media (max-width: 992px) {

  h1, .h1 {
    font-size: 35px;
    line-height: 38px;
  }

  /*GRADIENT HERO*/
  .gradientHero {
    height: auto;
    background-image:linear-gradient(360deg, rgba(26,26,26,1) 0%, rgba(26,26,26,0.7) 40%, rgba(26,26,26,0.1) 90%), url(/images/hero-mobile.jpg)
  }
  .gradientHero .heroContent {
    padding: 55px 15px;
    width: auto;
  }
  .gradientHero h4 {
    font-size: 18px;
    line-height: 20px;
  }

  /*FOOTER*/
  .footSection {
    flex-direction: column;
  }
  #footContainer .footContent {
    margin: 50px 15px;
  }

  .ageVerify {
    flex-direction: column;
  }
  A#under18Link {
    text-align: center;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  /*FOOTER*/
  #footContainer #socialIcons, .flex {
    justify-content: center;
  }
  #footContainer .footSection {
        margin-top: 15px;
  }
  .footCols > div {
    margin-bottom: 20px;
  }
  #footContainer .disclaimerIcons, .flex {
    justify-content: flex-start;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}