:root {
  --basf-blue: #F39500;
  --basf-light-blue: #FFE5B3;
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
  cursor: pointer;
}

ul {
  list-style: none;
}

body {
  color: #000;
  font-size: 12px;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

body,
html {
  line-height: 1.6;
}

header {
  width: 100%;
  z-index: 9999;
}

button {
  border: 0;
  border-radius: 0.25rem;
  cursor: pointer;
}

input,
select {
  border: 1px solid transparent;
  border-radius: 1rem;
}

input:hover,
select:hover {
  border: 1px solid black;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height or adjust as needed */
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio, fills container */
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay-banner {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
  color: white;
  text-align: center;
  padding: 2rem;
}

/* header */

.headerContainer {
  background-color: var(--basf-blue);
  color: white;
  display: flex;
  justify-content: end;
  padding: 1rem;
  height: 7vh;
  width: 100%;
  z-index: 9999;
}

.headerContainer .logoContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}

.logoContainer img {
  width: 11rem;
  object-fit: cover;
}

/* Main start */

.innerContainer {
  display: flex;
  flex-direction: row-reverse;
}

.innerContainer .rightSide {
  position: relative;
  width: 350px;
}

.fixed {
  position: fixed;
  top: 0;
}

.innerContainer .leftSide {
  width: calc(100% - 350px);
}

.mainContainer .firstSection {
  height: 90vh;
  position: relative;
  display: flex;
}

.firstSection iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e0d9d9;
  z-index: 100;
}

.firstSection img {
  width: 50%;
  height: 35%;
  object-fit: contain;
  margin: 350px auto 0;
  z-index: 101;
  background-color: rgba(255, 255, 255, 0.6); /* Light background */
  padding: 10px; /* Add padding around the title */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.section {
  height: 80vh;
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.secondSection img {
  object-fit: contain;
  width: 70%;
  margin: 0 auto;
}

.rightSide .bulletPoints {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px 0 0;
}

.rightSide .bulletPoints li img {
  object-fit: contain;
  width: 30px;
  margin-right: 5px;
}

.rightSide .bulletPoints li {
  display: flex;
  align-items: center;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-bottom: 20px;
}

.rightSide .bulletPoints li:hover {
  opacity: 1;
}

.rightSide .bulletPoints li a {
  font-size: 1rem;
  color: var(--basf-blue);
  font-weight: 500;
}

.separatorSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 90px auto;
}

.separatorSection .separatorLine {
  width: 90%;
  height: 2px;
  background-color: var(--basf-blue);
  margin: 0 auto;
}

.separatorSection h1 {
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
  padding: 0 15px;
  margin: 15px auto;
  color: var(--basf-blue);
  text-align: center;
  background-color: var(--basf-light-blue);
}

.thirdSection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
}

.thirdSection div {
  display: flex;
  flex-direction: column;
  width: 45%;
  align-items: center;
}

.thirdSection img {
  width: 40%;
  object-fit: contain;
}

.thirdSection div p {
  width: auto;
  font-size: 1rem;
  font-weight: 500;
  padding: 0px;
}

.suncare-trends {
  list-style-type: disc;       /* standard bullets */
  padding-left: 1.5rem;        /* space from the edge */
  margin: 1rem 0;              /* vertical spacing */
  font-family: 'Arial', sans-serif; /* clean font */
  font-size: 1rem;           /* slightly larger text for readability */
  line-height: 1.5;            /* spacing between lines */
  color: #333;                 /* dark gray for good readability */
}

.suncare-trends li {
  margin-bottom: 0.5rem;       /* space between bullets */
}

/* Optional: make bullets a custom color (orange tone) */
.suncare-trends li::marker {
  color: #F39500;              /* your original orange */
  font-weight: bold;
}

.thirdSection div p a {
  color: var(--basf-blue);
  font-weight: 600;
  text-decoration: underline;
}

.thirdSection div .learnMoreLink {
  background-color: var(--basf-blue);
  color: white;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}

.thirdSection div a:hover {
  opacity: 1;
}

.reversed {
  flex-direction: row-reverse;
}
/* Main end */

/* Footer start */
footer {
  padding: 50px 0;
  margin-top: 3rem;
  background-color: #333333;
}

footer .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;

  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  padding: 0 2rem;
}

footer .wrapper .legal {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  /* -ms-flex-align: center; */
  /* align-items: center; */
  /* -ms-flex-pack: start; */
}

footer .wrapper .legal span {
  display: inline-block;
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.legal span {
  font-weight: 500;
}

footer .wrapper .legal a {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 2rem;
  opacity: 0.8;
  color: white;
  margin-bottom: 5px;
  transition: opacity 0.3s ease;
}

footer .wrapper .legal a:hover {
  opacity: 1;
}

/* Footer end */

@media (min-width: 1024px) and (max-width: 1566px) {
  .secondSection img {
    width: 90%;
  }

  .thirdSection {
    width: 100%;
    padding: 10px;
  }

  .separatorSection {
    margin: 50px auto;
  }

  footer {
    padding: 50px 0;
  }

  footer .wrapper {
    padding: 0 150px;
  }
}

@media (max-width: 768px) {
  /* header */
  .headerContainer {
    display: flex;
    justify-content: center;
    padding: 1vh 0;
    height: 6vh;
  }

  .headerContainer .logoContainer {
    width: auto;
  }

  .logoContainer img {
    width: 8rem;
  }
  /*  */

  /* main container */

  .innerContainer {
    display: flex;
    flex-direction: column;
  }

  .innerContainer .rightSide {
    display: none;
  }

  .innerContainer .leftSide {
    width: 100%;
  }

  .mainContainer .firstSection {
    height: 50vh;
  }

  .firstSection img {
    width: 100%;
    height: 35%;
    margin: 150px auto 0;
    background-color: rgba(255, 255, 255, 0.4); /* Light background */
    padding: 5px;
  }

  .section {
    height: 25vh;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .secondSection img {
    width: 95%;
  }

  .separatorSection {
    width: 100%;
    margin: 40px auto 0;
  }

  .separatorSection .separatorLine {
    width: 100%;
    height: 1px;
  }

  .separatorSection h1 {
    font-size: 1.2rem;
    padding: 0 20px;
    margin: 10px auto;
  }

  .thirdSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
  }

  .thirdSection div {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
    justify-content: center;
  }

  .thirdSection img {
    width: 70%;
  }

  .thirdSection div .learnMoreLink {
    padding: 7px 30px;
    opacity: 1;
  }

  .reversed {
    flex-direction: column;
  }
  /*  */

  /* Footer start */
  footer {
    padding: 20px 10px; /* Add padding for better spacing */
    margin-top: 2rem;
  }

  footer .wrapper {
    flex-direction: column; /* Stack items vertically */
    padding: 20px 0; /* Adjust padding */
  }

  footer .wrapper .legal {
    display: flex;
    flex-direction: column;
  }

  footer .wrapper .legal {
    width: 100%; /* Ensure full width */
    justify-content: center; /* Center-align content */
    align-items: flex-start;
    margin-bottom: 1rem; /* Add spacing between sections */
    padding: 5px 20px;
  }

  footer .wrapper .legal span {
    text-align: center; /* Center-align text */
    font-size: 0.9rem; /* Adjust font size for smaller screens */
  }

  footer .wrapper .legal a {
    font-size: 1rem; /* Adjust link font size */
    margin: 5px; /* Add spacing between links */
  }

  /* Footer end */
}
