@charset "UTF-8";
/* CSS Document */
    :root {
      --main-bg: #174566;
      --header-bg: rgba(255, 255, 255, 0.5);
      --text-dark: #174566;
      --text-light: #ffffff;
      --accent-color: #e09424;
      --font-size-lg: 1.3rem;
      --base-font-size: 1em;
    }

    a {
      color: var(--accent-color);
    }

    a:hover {
      text-decoration: underline;
    }

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

  body, html {
      font-family: sans-serif;
      background: var(--main-bg);
      color: var(--text-light);
      overflow-x: hidden;
      font-size: var(--base-font-size);
    }

  header {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease, height 0.3s ease;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background-color: var(--header-bg);
      color: var(--text-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 20;
      backdrop-filter: blur(6px);
    }
      
  .text-size-controls {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 8px;
      }

  .text-size-controls button {
        font-size: 1rem;
        padding: 4px 10px;
        background: var(--accent-color);
        color: var(--text-dark);
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }
  .text-size-controls button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
  }

  .text-size-controls button:hover {
        background: #f4b04e;
      }
    header.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .header-inner {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px;
      text-align: center;
    }

    .logo {
      height: 36px;
      width: auto;
    }

    .header-title {
      font-size: var(--font-size-lg);
      color: var(--text-dark);
      transition: font-size 0.3s ease;
    }

    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero .overlay {
      position: relative;
      z-index: 2;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
    }

    .hero-title {
      font-size: 3rem;
      color: var(--text-light);
      text-shadow: 2px 2px 8px #000;
      opacity: 0;
      animation: fadeInUp 1.2s ease-out forwards;
      animation-delay: 0.5s;
    }

    .hero-text-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      font-weight: normal;
      color: var(--text-light);
      text-shadow: 1px 1px 6px #000;
      margin: 0;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .credits {
      background-color: var(--accent-color);
      color: var(--text-dark);
      padding: 40px 20px;
      text-align: center;
      font-size: 1rem;
    }

    .credits a {
      color: var(--text-dark);
      text-decoration: none;
    }

    .credits a:hover {
      text-decoration: underline;
    }

    .section {
      padding: 80px 20px;
    }
    
    .section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    }
      
    .container {
      max-width: 900px;
      margin: 0 auto;
    }

    .intro {
      background-color: var(--main-bg);
      color: var(--text-light);
      position: relative;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
      z-index: 2;
    }

    .intro::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('/safe-you/toolkit/assets/intro.jpg') center center / cover no-repeat;
      opacity: 0.2;
      z-index: 0;
    }

    .intro .container {
      position: relative;
      z-index: 1;
    }


    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 600px) {
      .hero-title {
        font-size: 2rem;
      }
      .header-title {
        font-size: 1rem;
      }
      .hero-logo-eu {
        height: auto;
        max-height: 50px;
        width: auto;
      }
    }

  .hero-logo {
    height: 48px;
    width: auto;
  }

  .hero-logo-eu {
    height: 70px;
    width: auto;
    position: absolute;
    bottom: 0;
  }

  .media-section {
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    padding: 100px 20px;
  }

  .media-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .media-section .overlay-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 20px;
    border-radius: 8px;
  }
      
  .riskler-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
                    url('/safe-you/toolkit/assets/risks.png') center center / cover fixed;
    color: var(--text-light);
    padding: 100px 20px;
  }
  
  .parallax-brain {
    height: 50vh;
    background-image: url('/safe-you/toolkit/assets/brain.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
      
  .parallax-iq {
    height: 50vh;
    background-image: url('/safe-you/toolkit/assets/iq.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .parallax-screen-time {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('/safe-you/toolkit/assets/screen-time.jpg') center center / cover no-repeat fixed;
   }

  .side-menu {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 30;
    padding: 10px 8px;
    width: 16px;
    overflow: hidden;
    transition: width 0.3s ease, height 0.3s ease;
    backdrop-filter: blur(6px);
  }

  .side-menu-logo {
    text-align: center;
    margin-bottom: 16px;
  }

  .side-menu-logo img {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .side-menu:hover,
  .side-menu:focus-within {
    width: 160px;
    height: auto;
  }

  .side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .side-menu:hover ul,
  .side-menu:focus-within ul {
    opacity: 1;
  }

  .side-menu li {
    margin: 12px 0;
  }

  .side-menu a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.2s ease;
  }

  .side-menu a:hover {
    background: var(--accent-color);
    color: white;
  }

  html {
    scroll-behavior: smooth;
  }

  .parallax-ai {
    height: 20vh;
    background-image: url('/safe-you/toolkit/assets/parallax1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
      
  .parallax-climate {
    height: 50vh;
    background-image: url('/safe-you/toolkit/assets/climate.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
      
  .parallax-safeyou {
    height: 70vh;
    background-image: url('/safe-you/toolkit/assets/safeyou_digital.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
      
  /* Shared typography for all .section blocks */
  .section p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 1.5em;
  }

  .section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
  }
      
  .section h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
  }
      
  .section ul {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
  }

  .section ul li {
    margin-bottom: 0.5em;
    list-style-type: disc;
    line-height: 1.4;
  }
  .section ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
  }
      
  .section ol li {
    margin-bottom: 0.5em;
    line-height: 1.4;
  }
      
  .image-block img {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0.8em 0;
  }
      
  .ikiz-section {
    background: linear-gradient(to bottom, #3d8044, #095911);
    color: var(--text-light);
  }
      
  .riskler-section {
    background-color: #800c0c;
    color: var(--text-light);
  }
      
  .highlight-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 6px solid var(--accent-color);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1.7em;
  }
      
  .highlight-box h4 {
    text-align: left;
  }
      
  .ai-do-sub {
    background: url('/safe-you/toolkit/assets/ai-do-bg.jpg') center center / cover no-repeat fixed;
    position: relative;
    color: var(--text-light);
  }

  .ai-do-sub::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .ai-do-sub .container {
    position: relative;
    z-index: 1;
  }
      
  .egzersiz {
    background: url('/safe-you/toolkit/assets/brain-exercise.jpeg') center center / cover no-repeat fixed;
    position: relative;
    color: var(--text-light);
  }

  .egzersiz::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
  }

  .egzersiz .container {
    position: relative;
    z-index: 1;
  }
      
  .table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
  }

  .table-wrapper th,
  .table-wrapper td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    font-size: 0.95rem;
  }

  .table-wrapper th {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: bold;
  }

  .ai-sub-alt {
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    padding: 100px 20px;
  }

  .ai-sub-alt .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .ai-sub-alt .overlay-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px 20px;
    border-radius: 8px;
  }

  .ai-sub-hallucination {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),url('/safe-you/toolkit/assets/hallucination.png') center center / cover no-repeat fixed;
    color: var(--text-light);
    padding: 100px 20px;
  }

  .ai-sub-hallucination .overlay-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    border-radius: 8px;
  }

  .sub-literacies-section {
      background: linear-gradient(to bottom, #174566,#363a3e);
      color: var(--text-light);
  }
      
  details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1em;
    border-radius: 6px;
    margin: 2em 0;
    border-left: 4px solid var(--accent-color);
    }

  summary {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--accent-color);
    }

  details[open] summary {
    color: var(--text-light);
    margin: 0 0 20px 0;
    }

  .footer-heading {
    color: #e6d4a8;
    text-align: center;
  }
      
  .footer-text {
    color: #ffffff;
  }
  .footer-link {
    color: #b5d1e6;
 }
  .footer-copyright {
    color: #e09424;
    text-align: center;
  }
  .footer-section {
    background-color: #363a3e;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    max-width: 300px;
    margin-top: 1rem;
  }

  .inline-video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
  }
 
.visually-hidden {
   position: absolute !important;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}


@media (max-width: 768px) {
  .parallax-ai,
  .parallax-brain,
  .parallax-iq,
  .parallax-climate,
  .parallax-safeyou,
  .parallax-screen-time,
  .egzersiz,
  .ai-do-sub,
  .ai-sub-hallucination,
  .riskler-bg {
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
  }
  .ai-do-sub {
    background-attachment: scroll !important;
    background-position: center !important;
    background-size: cover !important;
  }
  .riskler-bg {
    background-attachment: scroll !important;
    background-position: center !important;
    background-size: cover !important;
  }
  .side-menu {
    height: 100px;
    left: 0;
    width: 10px;
  }
}
