/* ==========================================================================
   SEXLIXIR Landing Page — single stylesheet
   ========================================================================== */

:root {
  --black: #000000;
  --black-soft: #060000;
  --maroon: #780a2b;
  --maroon-deep: #030000;
  --pink: #f92b8b;
  --pink-hot: #f40e7a;
  --gold: #d7986a;
  --gold-border: #d7b58e;
  --white: #ffffff;
  --icon-bronze: #c58a63;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Roboto", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
  --max-width: 1200px;
  --glow-pink: 0 0 12px rgba(249, 43, 139, 0.6), 0 0 24px rgba(249, 43, 139, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black) url("../img/hero.png") top center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 0;
}

.hero__left {
  /* flex: 0 0 62%; */
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.hero__logo {
  width: 100%;
  /* margin: 0 auto 8px; */
  filter: drop-shadow(var(--glow-pink));
  padding-top: 100px;
}

.hero__taglines {
  margin-top: 20px;
}

.hero__tagline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;



  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3em;
}

.hero__tagline--gold {
  font-size: 32px;

  color: var(--gold);
}

.hero__tagline--pink {
  font-size: 36px;
  color: var(--pink);

}

.hero__divider {
  width: 426px;
  margin: 0;
}

.hero__right {
  flex: 1;
}

/* --------------------------------------------------------------------------
   Showcase (features + products)
   -------------------------------------------------------------------------- */

.showcase {
  background: var(--black-soft);

  padding: 10px 0;
  max-width: 1140px;

  margin: auto;

}

.showcase__subtitle-box {
  width: 65%;
  margin: -17px auto 20px auto;
  padding: 10px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--gold-border);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.63);
  text-align: center;
}

.showcase__subtitle-box p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.showcase__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
  /* margin: -50px auto 0; */
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

/* Features sidebar */
.features {
  width: 20%;
  display: flex;
  flex-direction: column;

  padding: 10px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 15px;
    margin-bottom: 15px;
}

.feature__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 14px 12px 8px;
  border: 1px solid var(--pink);
  border-radius: 50%;
}

.feature__icon {
  width: 40px;
  height: 40px;
  fill: var(--pink);
}

.feature__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 2.5px;
  line-height: 1.3em;
}

.feature__title--gold {
  color: var(--gold);
  text-transform: uppercase;
}

.feature__title--white {
  color: var(--white);
  text-transform: uppercase;

}

/* Products column */
.products {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.products__prices {
  margin: 10px 0 0 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

.products__prices strong {
  font-weight: 700;
}

.products__image {
  width: 100%;

  margin-bottom: 8px;
  border-radius: 4px;
}

.products__cta {
  display: inline-block;
  margin: -20px 0 0 130px;
  align-self: center;
  padding: 12px 24px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--black);
  border: 1px solid var(--pink);
  border-radius: 30px;
  box-shadow: var(--glow-pink);
  transform: rotate(-1deg);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.products__cta:hover {
  background: rgba(249, 43, 139, 0.15);
  box-shadow: 0 0 16px rgba(249, 43, 139, 0.8);
}

.products__sip {
  width: min(349px, 75%);
  margin: -12px auto 12px;
  transform: rotate(-1deg);
}

.products__age {
  width: min(25%, 45%);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact {
  background: var(--black);
  padding: 10px 0;
  max-width: 1140px;
  margin: auto;
}

.contact__card {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--pink);
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  padding: 10px 20px;
}

.contact__social-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--pink-hot);
  transition: opacity 0.2s;
}

.contact__social-item:hover {
  opacity: 0.85;
}

.contact__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 42px; */
  /* height: 42px; */
  flex-shrink: 0;
  border: 1px solid var(--pink-hot);
  border-radius: 50%;
  padding: 15px;
}

.contact__icon-wrap svg {
  width: 25px;
  height: 25px;
  fill: var(--pink-hot);
}

.contact__heading {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--pink-hot);
  text-transform: capitalize;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 100%;
  width: 50%;
  margin: auto;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #333;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 3px;
}

.contact__form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact__recaptcha {
  min-height: 74px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
}

.contact__submit {
  width: 100%;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  background: var(--pink-hot);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact__submit:hover {
  background: var(--pink);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--maroon);
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  padding: 20px;

  max-width: 1140px;
  margin: auto;
}

.site-footer__item {
  /* flex: 1 1 200px; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  padding: 0;
  text-align: center;
  width: 31%;
}

.site-footer__bar hr {
  margin: 0;
  width: 0;
  border: none;
  border-right: 3px solid #D7986A;
  background: #D7986A;
}

.site-footer__item svg {
  fill: #C58A63;
  color: #C58A63;
  height: 50px;
}


.site-footer__icon {
  width: 50px;
  height: 50px;
  fill: var(--icon-bronze);
}

.site-footer__item p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #37373791;
  stroke: #37373791;
  text-shadow: 0px 5px 10px #000000;
  color: #D7986A;
  margin: 7px 0;
}

.site-footer__credit {
  margin: 0;
  padding: 22px 0;
  text-align: center;
  font-size: 16px;
  font-weight: inherit;
  font-style: inherit;
  color: #F40E7A;
}

.site-footer__credit a {
  color: var(--pink-hot);
}

.site-footer__credit a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #046bd2;
  font-size: 15px;
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  margin-left: 0px;
  vertical-align: middle;
  transform: translate(0, -20%) rotate(180deg);
  width: 1.6em;
  height: .6em;
  color: currentColor;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    padding: 10px;
  }

  .hero__left {
    flex: none;
    width: 100%;

  }
.hero__logo {

    padding-top: 150px;
}
  .hero__right {
    display: none;
  }
.feature__title {
  font-size: 16px;
}
.feature{
  width: 50%;
  padding: 0;
}
  .hero {
    background-position: center right;
  }
.showcase {
  padding: 10px;
}
.showcase__subtitle-box {
    width: 100%;

}
.showcase__subtitle-box p {
    font-size: 20px;
}
.products__prices {
    font-size: 16px;
    line-height: 1.6;

}
.products__cta {
  font-size: 16px;
}
.products__sip {
  width: 100%;
}
  .showcase__layout {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
  }

  .features {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
  }


  .products__cta {
    margin-left: 0;
  }

  .products__age {
    width: 50%;
  }
  .contact{
    padding: 20px;
  }
.contact__card{
      border-color: #F92B8B;
    --border-color: #F92B8B;
    --border-radius: 50px 50px 50px 50px;
    box-shadow: 0px 0px 8px 0px #F92B8B;
}
.contact__icon-wrap {

    border-radius: 40px;
    padding: 15px 30px;
}
.site-footer__bar {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
}
.site-footer__item {
    flex-direction: column;

    width: 100%;
}
.site-footer__bar hr {
    margin: 15px 0;
    width: 100%;
    border: none;
    border-bottom: 2px solid #D7986A;
    background: #D7986A;
}
  .site-footer__item--bordered {
    border-left: none;
    border-right: none;

  }
}
@media (max-width:768px){
  .hero__tagline--gold {
    font-size: 30px;

}
.hero__tagline--pink {
    font-size: 30px;
    color: var(--pink);
}
}
@media (max-width: 520px) {


  .contact__social {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .contact__social-item {
    font-size: 0.95rem;
  }




}