:root {
    --error: #dc3545;
    --success: #198754;
    --primary: #00b3ff;
    --secondary: #3bc5ff;
    --border-color: #61428f;
    --button-text: #fff;
    --button-focus: 0 0 0 3px rgb(121, 82, 179, 0.25);
    --link-color: #0167ff;
    --text-main: #363636;
    --text-bright: #000;
    --background-body: #F9F9F9;
    --main-bg: #fff;
    --input-text-color: #000;
    --input-placeholder-color: #c2c2c2;
    --input-border-color: #ccc;
    --input-background-color: #fff;
    --input-disabled: #f5f5f5;
    --input-focus: 0 0 0 3px rgb(121, 82, 179, 0.25);
}

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

}
body {
    position: relative;
    min-height: 100%;
    height: 100%;
    font-family: Roboto, sans-serif;
    font-weight: 200;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    font-weight: 500;
     color: var(--link-color);
}

ul {
    list-style: none;
    padding-inline-start: 0;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
  color: black;
  padding: 10px 0px;
}

/* ---------------- h1-h3 content ---------------*/

h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: black;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: black;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: black;
  padding: 20px 0px;
}

/* ---------------- h4-h6 footer---------------*/

h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin: 20px 0; 
}

h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: black;
}

h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: black;
}

.divider-dark {
  border: 0px; 
  border-top: 1px solid #d9d9d9; 
  margin: 15px 0;
}

.divider-bright {
  border: 0px; 
  border-top: 2px solid #ffffff; 
  margin: 15px 0;
}

.header {
    position: sticky;
    width: 100%;
    height: 50px;
    background-color: #f9f9f9; 
    display: flex;
    top: 0;
    align-items: center; 
    justify-content: space-between; 
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.logo {
    color: #f9f9f9; 
}
.logo img {
    width: auto;
    height: 55px;
    padding: 10px 10px 5px 10px;
}

.logo2 {
    color: #f9f9f9; 
}
.logo2 img {
    width: auto;
    height: 30px;
    padding: 0px 0px;
}

.container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: auto; 
    padding: 30px 0px 0px 0px;
    background-color: #ffffff; 
}
.container img {
    width: 350px; 
    height: 350px; 
    object-fit: cover; 
    border-radius: 50%; 
}

/* -------Navigation---------- */

.nav {
    width: 100%;
    position: fixed;
    background-color: #f9f9f9; 
    overflow: hidden;
    top: 50px; 
    display: none; 
    transition: max-height .5s ease-out;
}
.menu a {
    display: block;
    padding: 15px 10px; 
    color: #36383F; 
   font-weight: 400;
    text-align: center; 
}
.menu a:hover {
    background-color: #eeeeee; 
}
.hamb {
    cursor: pointer;
    padding: 0 20px; 
    display: flex; 
    align-items: center; 
    height: 50px; 
    margin-right: 0px; 
}
.hamb-line {
    background: #36383F; 
    height: 2px;
    width: 24px;
    position: relative;
}
.hamb:active {
    background-color: #f9f9f9; 
}
.hamb-line::before,
.hamb-line::after {
    background: #36383F; 
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
}
.hamb-line::before {
    top: 6px;
}
.hamb-line::after {
    top: -6px;
}
.side-menu {
    display: none;
}
.side-menu:checked ~ .nav {
    max-height: 100vh; 
    display: block; 
}
.side-menu:checked ~ .hamb {
    background-color: #f9f9f9; 
}
.side-menu:checked ~ .hamb .hamb-line {
    background-color: #f9f9f9; 
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top: 0;
}

/* -------Screens bigger than---------- */
@media (min-width: 600px) {

    .nav {
        max-height: none;
        position: relative;
        background-color: transparent;
        top: 0; 
        display: flex; 
        align-items: center;
        justify-content: flex-end; 
    }
    .menu {
        display: flex; 
        justify-content: flex-end; 
        margin-right: 10px;
    }
    .menu li {
        margin: 0px;  
    }
    .menu a {
        padding: 15px 10px;  
    }
    .hamb {
        display: none;
        margin-right: 0px;
    }

    .about-container {
        padding: 40px 60px; 
    }
    
    .wrapper {
        padding: 40px 60px; 
    }

    .footer {
     padding: 20px 60px;
    }

}

/* Screens smaller than */
@media (max-width: 600px) {

p {
  font-weight: 400;
}

    .about-container {
        padding: 20px 20px;  
   }
    .wrapper {
        padding: 20px 20px;  
    }
      .footer {
     padding: 20px 20px;
    }

}

.footer-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: black;
    text-align: center;
    padding: 10px 0;
    z-index: 100;
}
.footer {
  width: 100%; 
  margin: 0; 
  background-color: #f9f9f9;
  color: black;
  box-sizing: border-box; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .row {
  display: flex;
  justify-content: space-between; 
  flex-wrap: wrap; 
  width: 100%;
  background-color: #f9f9f9;
}

.footer .section, .footer .logo2 {
  flex: 1 1 23%; 
  box-sizing: border-box; 
}

@media (max-width: 1000px) {
  .footer .section, .footer .logo2 {
    flex: 1 1 50%; 
    text-align: center;
  }
}

@media (max-width: 400px) {
  .footer .section, .footer .logo2 {
    flex: 1 0 100%; 
    text-align: center;
  }
}

.footer .section ul {
  list-style: none;
  padding: 0;
}

.footer .section ul li {
  margin: 10px 0;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.footer .row:last-child {
  justify-content: space-between; 
  padding-top: 0;
}

.icons a img {
    width: 20px;
    height: 20px;
    margin: 10px;
    padding: 0;
    text-align: center;
    cursor: pointer; 
    transition: transform 0.2s ease-in-out; 
}

.icons a img:hover {
    transform: scale(1.1); 
}

.footer .icons a {
 color: var(--link-color);
  margin: 0 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 0px;
    text-align: center;
}

.copyright {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: black;
  font-weight: 400;
  width: 100%;
}




/* ---------------- About container ---------------*/

.about-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: auto;
    margin-top: auto; 
    background-color: #ffffff;
}

.about-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
    object-fit: contain;
}

.about-container p {
  line-height: 1.4;
 letter-spacing: 0.3px;
  padding: 5px 0;
}

.about-container a:hover img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}


/* ---------------- Wrapper container ---------------- */

.wrapper {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    gap: 60px; 
    height: 100%; 
}
.wrapper img, .wrapper video {
  width: 40%;
  height: auto;
  border-radius: 10px; 
  align-self: flex-start;
}

.wrapper a:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.wrapper p {
  line-height: 1.4;
 letter-spacing: 0.3px;
}


@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px; 
  }

.wrapper img {
  width: 100%;
  order: 2; 
}

.wrapper video {
  width: 100%;
  order: 2; 
}

  .wrapper a {
    flex: none;
    width: 100%; 
  }

  .side {
    width: 100%; 
  }

  .wrapper a {
    order: 2; 
  }

  .side {
    order: 1; 
  }}


/* ---------------- Animations ---------------- */

@keyframes fromleft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fromright {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anime1 {
  position: relative;
  animation-name: fromleft;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

.anime2 {
  position: relative;
  animation-name: fromright;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}
