* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  main {
    z-index: 10;
  }
  html,
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    color: #333;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    background: #F5F5DC;
    background: url('assets/Background-texture-home_v1.png') no-repeat center center / cover;
  }
  
  main {
    flex: 1 0 auto;
  }

  .videos {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 24px;
    /* margin: 48px 0; */
}

.videos iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Keeps correct video ratio */
    border: none;
    border-radius: 8px;
    display: block;
}



  .mainHeader {
    color: #03538B;
    font-family: Rubik;
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
  }

  .body-text { 
    color: #1E1E1E;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  
  .color-blue {
    color: #03538B;
  }

  .label {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
  }

  .label-2 {
    color: #03538B;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
  } 

  .label-2-reg { 
    color: #03538B;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
  }

  .sub-label {
    color: #03538B;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .title-2 {
    color: #03538B;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;    
}


.tag-text {
  color: #1E1E1E;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}


.btn {

  padding: 8px 16px;
  font-size: 1rem;
  background-color: transparent;
  color: white;
  border: 4px solid #78BE21;
  border-radius: 8px;
  cursor: pointer;
  width: auto; /* This is the key */
  /* align-self: flex-start;  */
  /* Optional: aligns the button to the left */
  color: #03538B;
  text-align: center;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.btn:hover {
  background: #03538B;
  color: #FFFFFF;
}

.yellowPostit {
  position: absolute; 
  right: -80px;
  top: 75vh;
  width: 141.179px;
  height: 141.179px;
  transform: rotate(-15deg);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: url('../assets/yellowPostit.jpg') no-repeat center center / cover; 
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.greenPostit {
  position: absolute; 
  top: 140px;
  right: -20vh;
  transform: rotate(15deg);
  background: url('../assets/greenPostit.jpg') no-repeat center center / cover; 
  width: 188.533px;
  height: 125.689px;
  flex-shrink: 0;
  aspect-ratio: 3/2;
  z-index: -20;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.pinkNotecard {
  position: absolute; 
  top: 45vh;
  left: -120px;
  transform: rotate(15deg);
  background: url('../assets/pinkNotecard.jpg') no-repeat center center / cover; 
  width: 160px;
  height: 108px;
  transform: rotate(-16.902deg);
  flex-shrink: 0;
  aspect-ratio: 3/2;
  z-index: -10;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25)
}

.icon {
  width: 60px;
  height: 68px;
  color: #E6883C;
}

.icon:hover {
  filter: invert(15%) sepia(90%) saturate(2500%) hue-rotate(182deg) brightness(55%) contrast(110%);
}

@media (min-width: 901px) {
  .yellowPostit {
    right: -20px;
    top: 80vh;
    width: 203.325px;
    height: 203.325px;
  }

  .icon {
    width: 100px;
    height: 117px;
  }

  .videos {
    grid-template-columns: 1fr 1fr;
  }

  .greenPostit {
    top: 190px;
    right: 580px;
    width: 241.283px;
    height: 160.855px;
  }

  .pinkNotecard {
    top: 560px;
    left: -125px;
    width: 262.538px;
    height: 175.025px;
  }

  .mainHeader {
    font-size: 66px;
  } 

  .label {
    font-size: 32px;
  }

  .label-2 {
    font-size: 28px;
  }

  .label-2-reg {
    font-size: 28px;
  }

  .sub-label {
    font-size: 18px;
  }

  .title-2 {
    font-size: 54px;
  }

  .tag-text {
    font-size: 28px;
  }

  .details-wrapper {
    
    max-width: 948px;
  }
  
}





