/*
Theme Name: Kiki Theme
Theme URI: http://kiki.com
Author: Your Name
Author URI: http://kiki.com
Description: A custom theme created for kiki
Version: 1.0
*/

/* CSS Reset - Normalize default browser styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter/inter.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DM_Sans/DMSans.ttf") format("truetype");
}
* {
  font-family: "Inter";
}

html {
  font-size: 62.5%; /* Set base font size to 10px (1rem) */
  line-height: 1.5;
  scroll-behavior: smooth;
}
/* Reset anchor tag styles */
a {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits color from parent */
  cursor: pointer; /* Changes cursor to a pointer on hover */
}

/* Style for unvisited links */
a:link {
  color: inherit; /* Adjust to desired color for unvisited links */
}

/* Style for visited links */
a:visited {
  color: inherit; /* Adjust to desired color for visited links */
}

/* Style for hover state */
a:hover {
  color: #007bff; /* Example color on hover; adjust as needed */
  text-decoration: underline; /* Optional: add underline on hover */
}

/* Style for active state */
a:active {
  text-decoration: underline; /* Optional: underline when active */
}

/* Style for focus state (important for accessibility) */
a:focus {
  outline-offset: 2px; /* Adds space between outline and element */
}

body {
  color: #333;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
button:hover {
  cursor: pointer;
}
/* Layout Styling */
header {
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    #ff6b3c;
  color: #fff;
  padding: 2rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 7.2rem;
  z-index: 3 !important;
}
header .logo a:hover {
  text-decoration: unset;
  color: unset;
}
header .logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Inter";
}
@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }
  header nav {
    display: none;
  }
  .hamburger-menu {
    display: block; /* Add your hamburger menu implementation */
  }
}
header nav {
  margin-left: auto;
  margin-right: auto;
}
header nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 4.8rem;
}

header nav ul li {
  margin: 0 1rem;
}

header nav ul li a {
  color: var(--White, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem; /* 100% */
  text-transform: capitalize;
  text-decoration: none;
}

main {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

main section {
  padding: 14rem;
}
main section:first-of-type {
  padding-top: 5rem;
}
main section h1,
main section h2 {
  color: #333;
  margin-bottom: 1rem;
}

.btn-primary {
  border-radius: 4rem;
  background: #3eb3c2;
  color: #fff;
  display: flex;
  width: 23.1rem;
  height: 4.8rem;
  padding: 0.4rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  outline: none;
  border: none;
  text-align: center;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.4rem; /* 171.429% */
}

#home {
  background-color: #ff6b3c;
  padding-top: calc(8rem + 7.2rem);
  display: flex;
}
@media (max-width: 1280px) {
  #home {
    gap: 0px;
    justify-content: flex-start;
  }
}

#home small {
  text-transform: uppercase;
  font-family: "Inter";
}
#home .hero-text {
  width: 50%;
  display: flex;
  flex-flow: column;
}
#home .hero-text small {
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6rem; /* 133.333% */
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
#home .hero-text h1 {
  color: var(--White, #fff);
  font-family: "DM Sans";
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.4rem; /* 106.667% */
  letter-spacing: -0.1rem;
  text-transform: capitalize;
}
#home .hero-detail {
  width: 50%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
#home .hero-detail p {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.8rem; /* 140% */
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  #home {
    display: flex;
    padding-top: 10rem; /* Adjust padding for smaller screens */
    flex-flow: column;
    padding-bottom: 10rem;
  }
  #home .hero-text {
    width: 100%;
    height: fit-content !important;
  }
  #home .hero-detail {
    width: 100%;
    height: fit-content !important;
  }
  #home .hero-text h1 {
    font-size: 4rem; /* Reduce font size */
    line-height: 4.4rem;
  }
}
#video {
  background-color: #a93fc3;
  padding-top: 10rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-left: 31.2rem;
  padding-right: 31.2rem;
}
#video img {
  object-fit: contain;
  height: 4.8rem;
  width: 4.8rem;
  margin-bottom: 1.6rem;
}
#video h2 {
  color: var(--White, #fff);
  text-align: center;
  font-family: "DM Sans";
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.5rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0.2rem;
}
#video p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "Inter";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300 !important;
  line-height: 2.4rem; /* 150% */
  margin-bottom: 3.2rem;
}

#features {
  padding-top: 10rem;
  padding-bottom: 10rem;
  height: 100%;
}
@media (max-width: 768px) {
  #features {
    padding-top: 0;
    padding-bottom: 5rem;
  }
  #features .feature-row {
    flex-direction: column;
    gap: 2rem;
  }
  .feature-row:nth-child(3) {
    display: block; /* Ensure all features are displayed */
  }
  .feature-row .feature-details {
    order: 1;
  }

  .feature-row .feature-image {
    order: 2;
  }
}

#features .feature-row {
  display: flex;
  width: 100%;
  gap: 10rem;
  margin-bottom: 8rem;
}
#features .feature-row .feature-details {
  width: 100%;
  padding-top: 8rem;
}
#features .feature-row small {
  margin-bottom: 0.8rem;

  color: #000;
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6rem; /* 133.333% */
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
#features .feature-row h3 {
  margin-bottom: 2.4rem;

  color: #000;
  font-family: Inter;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4rem; /* 125% */
}
#features .feature-row p {
  color: #000;
  font-family: Inter;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.2rem; /* 160% */
}
#features .feature-row .animation {
  display: flex;
  z-index: 2;
  position: absolute;
  height: 100%;
  width: 100%;
}
#features .feature-row .animation img {
  object-fit: contain;
  max-height: 30rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  #features .feature-row .animation img {
    bottom: -5%;
    transform: scale(2) !important;
  }
}
@media (max-width: 1024px) {
  #features .feature-row .animation img {
    bottom: -5%;
    transform: scale(1.2) !important;
  }
}
#features .feature-row .feature-image {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  min-height: 34rem;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

/* First .feature-image */
.feature-row:nth-of-type(1) .feature-image {
  background-color: #3fb3c3;
}
.feature-row:nth-of-type(1) .feature-image .fg {
  width: 50%;
  height: 100%;
  left: 15%;
  flex-shrink: 0;
  position: absolute;
  bottom: -35%;
}
@media (max-width: 1024px) {
  .feature-row:nth-of-type(1) .feature-image .fg {
    left: 0 !important;
    bottom: -55%;
  }
  .feature-row:nth-of-type(2) .feature-image .fg {
    left: 10% !important;
    top: -50% !important;
  }
  .feature-row:nth-of-type(3) .feature-image .fg {
    right: 0 !important;
    top: -50% !important;
  }
}
/* Second .feature-image */
.feature-row:nth-of-type(2) .feature-image {
  background-color: #a93fc3; /* Your custom color */
}
.feature-row:nth-of-type(2) .feature-image .fg {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  top: -35%;
  transform: rotate(220deg);
}
/* Third .feature-image */
.feature-row:nth-of-type(3) .feature-image {
  background-color: #3f6cc3; /* Your custom color */
}
.feature-row:nth-of-type(3) .feature-image .fg {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  top: -20%;
  right: 0;
  transform: rotate(180deg);
}
@media (min-width: 1440px) {
  .feature-row:nth-of-type(3) .feature-image .fg {
    top: -30%;
  }
}
#features .feature-row .feature-image img {
  object-fit: contain;
  border-radius: 2rem;
  width: 100%;
}
section {
  flex: 1;
}
footer {
  background: #3eb3c2;
  color: #fff;
  text-align: center;
  display: flex;
  padding: 8rem 14.4rem;
  width: 100%;
  bottom: 0;
  flex: 1;
  align-items: center;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding-bottom: 12rem;
  }
  footer .footer-menu,
  footer .footer-right {
    width: 100%;
    text-align: center;
  }
  .footer-menu {
    width: 100% !important;
    margin-bottom: 10rem;
  }
  .footer-menu li {
    display: flex;
    vertical-align: baseline;
  }
  .footer-menu li:nth-of-type(2),
  .footer-menu li:nth-of-type(4) {
    text-align: right;
  }
}

footer .footer-menu {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap into multiple rows */
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: auto;
  width: 49%;
}

footer .footer-menu li {
  width: calc(50% - 1rem); /* 50% width minus the gap space */
  padding: 1rem;
  text-align: left;
  text-transform: uppercase;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem; /* 100% */
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
footer .footer-right {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
footer .footer-right .socials {
  display: flex;
  gap: 0.8rem;
}
footer .footer-right .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #535353;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
footer .footer-right .socials a.tiktok {
  padding: 5px;
}
footer .footer-right .socials a.tiktok::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  z-index: 2;
}
footer .footer-right .socials a img {
  z-index: 3;
}

@media (max-width: 768px) {
  footer .footer-right .socials {
    margin-top: 3rem;
    gap: 0.8rem;
  }
}
footer .footer-right p {
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem; /* 150% */
}
@media (max-width: 1280px) {
  main section {
    padding-bottom: 10rem !important;
    height: auto;
  }
}
/* Responsive Styling */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  header nav ul li {
    margin: 0.5rem 0;
  }
  main section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #features .feature-row {
    flex-direction: column;
    gap: 4rem;
  }

  #video {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  footer {
    padding: 4rem 2rem;
  }
  .feature-row:nth-child(3) {
    display: none;
  }
}

/* Additional Responsive Touches */
@media (max-width: 480px) {
  body {
    font-size: 1.4rem; /* Reduce base font size */
  }
  .btn-primary {
    width: 100%; /* Ensure buttons are full-width on mobile */
    font-size: 1.2rem;
  }
  header,
  footer {
    text-align: center;
  }

  main section h1,
  main section h2 {
    font-size: 3rem;
  }

  header nav ul {
    gap: 1rem;
  }

  #features .feature-row {
    gap: 2rem;
  }
}
img,
video {
  max-width: 100%;
  height: auto;
}

.animation img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.animation img.active {
  opacity: 1;
}

/* Styles for the hamburger menu */
.hamburger-menu {
  display: none; /* Hidden by default */
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
}

.hamburger-menu .bar {
  background-color: #fff;
  height: 0.3rem;
  width: 2rem;
  margin: 0.3rem 0;
  border-radius: 0.2rem;
}

/* Styles for the mobile navigation */
.mobile-nav {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff6b3c;
  color: #fff;
  padding: 2rem;
  padding-top: 5rem !important;
  z-index: 4;
  overflow: auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 2rem;
}

.mobile-nav ul li a {
  color: #fff;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

/* Show hamburger menu and mobile navigation on small screens */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  header nav {
    display: none;
  }

  .mobile-nav.show {
    display: block;
  }
}
/* Styles for the close button */
.close-button {
  font-family: "Inter";
  font-size: 15rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Styles for the hamburger menu */
.hamburger-menu {
  display: none; /* Hidden by default */
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
}

.hamburger-menu .bar {
  background-color: #fff;
  height: 0.3rem;
  width: 2rem;
  margin: 0.3rem 0;
  border-radius: 0.2rem;
}

/* Styles for the mobile navigation */
.mobile-nav {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff6b3c;
  color: #fff;
  padding: 2rem;
  z-index: 4;
  overflow: auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 2rem;
}

.mobile-nav ul li a {
  color: #fff;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

/* Show hamburger menu and mobile navigation on small screens */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  header nav {
    display: none;
  }

  .mobile-nav.show {
    display: block;
  }
}
/* Styles for the close button */
.close-button {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Styles for the hamburger menu */
.hamburger-menu {
  display: none; /* Hidden by default */
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
}

.hamburger-menu .bar {
  background-color: #fff;
  height: 0.3rem;
  width: 2rem;
  margin: 0.3rem 0;
  border-radius: 0.2rem;
}

/* Styles for the mobile navigation */
.mobile-nav {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff6b3c;
  color: #fff;
  padding: 2rem;
  z-index: 4;
  overflow: auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 2rem;
}

.mobile-nav ul li a {
  color: #fff;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

/* Show hamburger menu and mobile navigation on small screens */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  header nav {
    display: none;
  }

  .mobile-nav.show {
    display: block;
  }
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */

  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
/* Modal Container */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  opacity: 0; /* Start hidden */
  transition: opacity 0.5s ease-in-out; /* Fade-in effect */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 10px 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  min-height: 300px;
  border-radius: 15px;
  animation: fadeIn 0.5s ease-in-out; /* Add fade-in animation */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show Modal */
.modal.show {
  display: block;
  opacity: 1; /* Make modal visible */
}

#privacy-policy {
    padding: 2rem;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #333;
}

#privacy-policy .hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #222;
}

#privacy-policy .hero-detail {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#privacy-policy .hero-detail p {
    margin-bottom: 1.2rem;
}

#privacy-policy .hero-detail a {
    color: #0073aa;
    text-decoration: none;
}

#privacy-policy .hero-detail a:hover {
    color: #005177;
    text-decoration: underline;
}

#privacy-policy .hero-detail ul,
#privacy-policy .hero-detail ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

#privacy-policy .hero-detail li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    #privacy-policy .hero-text h1 {
        font-size: 2rem;
    }

    #privacy-policy .hero-detail {
        font-size: 1rem;
        padding: 1rem;
    }
}