/* Mobile styles (default) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --black: #13171f;
  --red: var(--blue);
}

.outfit-header, h1, h2, h3, h4, h5 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    color: #13171f;
}

h2 {
  font-size: 20px;
} p {
  font-size: 16px;
}

.tag {
  font-size: 16px;
  color: rebeccapurple;
  font-weight: 400;
  border: 1px solid rebeccapurple;
  border-radius: 100px;
  padding: 2px 14px;
  width: fit-content;
}

.spacer {
    height: 100px;
}
.spacer30 {
  height: 30px;
}

b {
  font-weight: 500;
}

p {
    font-size: 18px;
    font-weight: 300;
}

* {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

body {
    margin: 0;
    /* background-color: #0101ab; */
    /* background-color: rgb(21, 12, 29); */
}

/* One way to do the hero video */
.hero-video {
  display: grid;
  place-items: center;
}

.hero-video img{
  width: 70%;
  margin: auto;
  height: 200px;
  object-fit: cover;
  background-position: center;

  border: 4px solid rgba(255, 255, 255, 0.501);
  border-radius: 8px;
}

/* Other way to do the hero video */
.hero-video2 {
  /* display: grid; */
  /* place-items: center; */
  /* background-color: white; */
  border-radius: 4px;
  display: flex;
}
.hero-video2 p {
  padding-left: 20px;
  margin-top: 8px;
}

.hero-video2 img{
  height: 60px;
  width: auto;
  object-fit: cover;
  background-position: center;

  border: 2px solid rgba(255, 255, 255, 0.501);
  border-radius: 8px;
}

/* Other other way to do it */
.hero-video3 {
  /* display: grid; */
  /* place-items: center; */
  /* background-color: white; */
  border-radius: 4px;
  display: flex;
  background-color: white;
  padding: 4px;

}
.hero-video3 p {
  /* padding-left: -240px; */
  font-size: 16px;
  margin-top: 8px;
  color: #13171f;
}

.hero-video3 .video-image {
  height: 60px;
  width: auto;
  object-fit: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
}



.play-icon-small {
  position: relative;
  /* top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%); */
  left: -66px;
  /* top: 10px; */
  top: 12px;
  color: white;
  background-color: rgba(255, 255, 255, 0.35);
  /* width: 50px; */
  /* height: 50px; */
  /* padding: 10px; */
  height: 35px;
  width: 55px;
  border-radius: 100px;
} .play-icon-small p {
  color: white;
  margin: 0;
  padding: 0;
  padding-left: 12px;
  padding-top: 5px;
} .play-icon-small img {
  width: 15px;
  height: 15px;
  padding-left: 12px;
  padding-top: 10px;
}

/* VIDEO THUMBNAIL */
.video-thumbnail {
  position: relative;
  display: inline-block;
}

.video-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px; 
}

/* Play icon overlay */
.video-thumbnail::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Icon styling */
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  
  /* Center the play symbol */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 5px; /* Adjusts triangle position */
  
  /* Smooth transition */
  transition: all 0.3s ease;
}
/* VIDEO THUMBNAIL */


.small-text {
  font-size: 12px;
  color: rgb(189, 188, 188);
  font-weight: 400;
  padding-left: 10px;
} .small-text-red {
  font-size: 12px;
  color: rgb(254, 66, 85);
  font-weight: 500;
  /* padding-left: 10px; */
}

section {
    padding: 20px;
}

.button {
    background-color: #0e0e0e;
    text-decoration: none;
    color: white;
    font-weight: 400;
    padding: 10px 40px;
    /* margin-top: 100px; */
    display: block;
    font-size: 15px;
    border-radius: 3px;
    /* border: 1px solid black; */
    text-align: center;
} button:hover {
  cursor: pointer;
}


input[type="text"], input[type="email"] {
    height: 30px;
    margin-bottom: 6px;
    color: var(--black);
    font-weight: 500;
    border: 2px solid var(--black);
    border-radius: 5px;
    padding-left: 10px;
    width: calc(100% - 20px);
}

.form-checkbox {
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
} .form-checkbox p {
  font-size: 16px;
}

a {
  color: blue;
}

textarea {
    margin-bottom: 6px;
    width: calc(100% - 10px);
    height: 150px;
    border: 2px solid black;
    border-radius: 5px;
}
button {
    background-color: #0e0e0e;
    background-color: rgb(52, 52, 254);

    text-decoration: none;
    color: white;
    font-weight: 400;
    padding: 10px 40px;
    /* margin-top: 100px; */
    display: block;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    width: 100%;
    margin-top: 10px;
}

#send-message-button-text {
    font-weight: 500;
}
#loader {
    display: none;
}

label {
  font-weight: 600;
} label span {
  color: var(--red);
  font-weight: bold;
}

.affiliate-code {
  border: 1px solid rgb(178, 176, 176);
  border-left: 3px solid var(--blue);
  padding-left: 10px;
  border-radius: 4px;
  margin-top: 10px;
  background-color: rgb(239, 237, 237);
} .affiliate-code p {
  margin: 10px;
  font-size: 17px;
}

.hero-section {
    height: 50vh;
    /* background-image: url(images/gabe-lFUM8nCrs0I-unsplash.jpg); */
    /* background: -webkit-linear-gradient(to bottom, #000000, #0101ab); */
    /* background: linear-gradient(to bottom, #277dff, #0101ab);  */
    background-image: url("../images/eden-lorish-dupe.jpeg");
    background-image: url("../images/ashley-singerling-dupe\(1\).jpeg");

    background-size: cover;
} .hero-section h1 {
    font-size: 33px;
}

h1 {
  color: var(--red) !important;
}
.hero-section p {
  color: var(--red);
}

.hero-section h1, .hero-section p {
    /* color: blue; */
}



.play-video {
  text-decoration: none;
}

.white-font {
    color: white;
}
.gray-font {
  color: rgb(61, 61, 61);
}

#success-message, #error-message {
  display: none;
}
.alert-box-neg {
  background-color: rgba(255, 66, 66, 0.2);
  border: 2px solid rgb(222, 80, 80);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.alert-box-pos {
  background-color: rgba(66, 255, 66, 0.2);
  border: 2px solid rgb(80, 222, 80);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 10px;
  margin-bottom: 20px;
} .alert-box-pos p, .alert-box-neg p {
  margin: 0;
}

.card {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  
  /* Tablet */
  @media screen and (min-width: 768px) {
    section {
      /* width: 50%; */
      padding-left: 30%;
      padding-right: 30%;
      margin: auto;
    }
    .hero-section {
      background-image: url("../images/kelly-sandrea-kovacs-dupe.jpeg");
    }
  }
  
  /* Desktop */
  @media screen and (min-width: 992px) {
    .card {
      flex-direction: column;
      gap: 1rem;
    }
    
    .card-image {
      width: 100%;
      height: 250px;
    }
    
    /* Grid layout for cards */
    .card-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }