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

:root {
  --black: #13171f;
}

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

.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: 20px;
  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: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

/* 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;
}

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;
}

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

.form-checkbox {
  display: flex;
}

textarea {
    margin-bottom: 6px;
    width: 100%;
    height: 150px;
    border: 2px solid black;
    border-radius: 5px;
}
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;
    width: 100%;
    margin-top: 10px;
}

.hero-section {
    height: 100vh;
    /* 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-size: cover;
} .hero-section h1 {
    font-size: 33px;
}

.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) {
    .card {
      display: flex;
      gap: 2rem;
    }
    
    .card-image {
      width: 40%;
      height: auto;
    }
  }
  
  /* 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;
    }
  }