@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Boldonse&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

@keyframes indicator-animation {
    0% {
        color: var(--black);
    }
    50% {
        color: var(--alabaster-white);
    }
    100% {
        color: var(--black);
    }
}

:root {
    --black: #000000;
    --off-white: #F2F0EF;
    --alabaster-white: #FAFAFA;
    --strowberry: #FA5053;
    --royal-blue: #305CDE;
}

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--alabaster-white);
}

.temporaryframe {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.temporaryframe img {
    width: 250px;
}

.temporaryframe span {
    animation: indicator-animation 0.7s infinite;
    font-size: 30px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
}

header nav {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

header nav .brandmark a {
    text-decoration: none;
}

header nav .brandmark a img {
    width: 180px;
}

header nav .brandmark a span {
    animation: indicator-animation 1s infinite;
}

header nav .crossing a {
    text-decoration: none;
    border: 1px solid var(--black);
    padding: 6px 10px;
    color: var(--black);
    transition: 0.5s;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

main article {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slider-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .slide {
      width: 100%;
      max-width: 720px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      padding: 2rem;
      text-align: center;
      box-shadow: 0 0 25px rgba(0,0,0,0.2);
      position: absolute;
      opacity: 0;
      transform: scale(1);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      position: relative;
      z-index: 1;
    }

    .slide h2 {
      font-size: 1.6rem;
      color: #00e0d0;
      margin-bottom: 1rem;
    }

    .slide p {
      font-size: 1.1rem;
      color: #ccc;
    }

    .nav-buttons {
        z-index: 2;
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 1rem;
    }

    .nav-buttons button {
      background: rgba(0, 0, 0, 0.1);
      border: none;
      color: #000000;
      font-size: 0.5rem;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .nav-buttons button:hover {
      background: rgba(0, 224, 208, 0.2);
    }

.top {
    width: 100%;
    margin: 0 0 50px 0;
    padding: 20px;
}

.top .top-title {
    width: fit-content;
    margin: 0 0 20px 0;
    border-top: 1px solid var(--black);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 100;
    transition: 0.5s;
}

.top .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.top .banner img {
  width: 100%;
  max-width: 600px;
  border-radius: 7px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.top .banner .banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.top .banner .banner-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.top .banner .banner-content a {
  padding: 5px;
  color: var(--royal-blue);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
  transition: 0.3s;
}

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

main article .introduction .introduction-title {
    width: fit-content;
    background-color: var(--black);
    color: var(--alabaster-white);
    margin: 0 0 10px 0;
    border: 1px solid var(--black);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 100;
    transition: 0.5s;
}

main article .introduction .introduction-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    background-color: #fafafa;
    color: #222;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

main article .introduction .introduction-description img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

main article .introduction .introduction-description img:hover {
    transform: scale(1.05);
}

main article .introduction .introduction-description h1 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

main article .introduction .introduction-description h1 span {
    color: #ff4d4f;
}

main article .introduction .introduction-description p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    color: #444;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
}

footer .rights {
    width: 75%;
    border-top: 1px solid var(--black);
    padding: 100px 0 10px 0;
    font-size: 10px;
}

@media (pointer: fine) {

    header nav .crossing a:hover {
        background-color: var(--black);
        color: #f8f9fa;
    }

    main article .top .top-title:hover {
        background-color: var(--black);
        color: #f8f9fa;
        cursor: pointer;
    }

    main article .top .banner a:hover {
        opacity: 0.5;
    }

    main article .introduction .introduction-title:hover {
        background-color: var(--alabaster-white);
        color: var(--black);
    }

    main article .productAndServices .productAndServicesLink a:hover {
        background-color: var(--black);
        color: var(--alabaster-white);
    }

}
@media (pointer: coarse) {}
@media only screen and (max-width: 575.9px) {

    header nav {
        width: 100%;
    }

    main article {
        width: 100%;
    }

    main article .productAndServices .productAndServicesLink {
        flex-direction: column;
        margin: 0;
    }

    main article .productAndServices .productAndServicesLink a {
        width: 90%;
        margin: 5px 0;
    }

    footer .rights {
        width: 100%;
    }

}
@media only screen and (min-width: 576px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}