
    body {
      margin: 0;
      padding: 0;
       font-family: "Courier Prime", monospace;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
    }

    nav {
      background-color: #202766;
      color: #fff;
      padding: 10px 20px;
      position: fixed;
      width: 100%;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      padding: 8px 0;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 25px;
      height: 20px;
      justify-content: space-between;
    }

    .hamburger div {
      height: 3px;
      background: white;
    }

    .spaceline {
    width: 60px;
    


}

    /* Responsive styling --------------------------------------------------------------------------00000000000000*/
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: #202766;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 20px;
      }
      
      .nav-links.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      .logo {
        margin-right: 20px;
      }
      .logo-text {
       font-weight: 100%;
       margin-right: 10px;
       display: none;
      }
    }

    .logo {
      font-size: 12px;
      color: white;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #202766;
  }

  .icon-container {
    font-size: 10px;
  }

  .quote-display {
    font-size: 0.7rem;
  }
  .home {
    padding-top: 60px; /* Adjust for fixed navbar */
    height: 100px;
  }


/*------------------------------------------------------------------------------------------------Lang Button start*/
  .lang-buttons {
      margin-bottom: 5px;
      display: flex;
      gap: 5px;
    }

    .lang-buttons button {
      padding: 5px 10px;
      border: 2px solid #007bff;
      border-radius: 5px;
      background-color: transparent;
      color: #007bff;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .lang-buttons button:hover {
      background-color: #007bff;
      color: white;
    }

    .lang-buttons button.active {
      background-color: #007bff;
      color: white;
    }

    /*----------------------------------------------------------------------------------------------Lang Button end*/
    /*--------------------------------------------------------------------------------------------------home start */
.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: auto;
    background-image: linear-gradient(to bottom, #202766, #7508a0);
    color: white;
    text-align: center;
    font-size: 1.2rem;
}
.home h1{
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3177f8;
    width: 60%;
}
.home h4{
    font-size: 1rem;
    margin-bottom: 20px;
    width: 55%;
    font-weight: lighter;
    padding-top: 1%;
    padding-bottom: 1%;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 35px;
}

.profile-portrait {
    width: 300px;
    height: auto;
    border-radius: 20%;
    margin-top: 40px;
}
/* ------------------------------------------------------------------------------------------------------Stilizacija citata start */
.quote-display {
    max-width:  100%;
    overflow: visible;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    margin: 5px 5px;
    
}

/* Stilizacija imena autora */
.author {
    display: block;
    margin-top: 1px;
    font-size: 0.7rem;
    font-weight: normal;
    color: #bdc3c7;
}
/*------------------------------------------------------------------------------------------------------Stilizacija citata end */

/*----------------------------------------------------------------------------------------------------- home end */

/*--------------------------------------------------------------------------------------------------about start */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background-image: linear-gradient(to bottom, #7508a0, #202766);
    color: white;
    text-align: center;
}

.about h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 4%;
}

.about h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    width: 80%;
    font-weight: lighter;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.image-box h4 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 10px;
  color: white;
  text-align: center;
}
.image-box img {
  width: 45%;
  height: auto;
  border-radius: 8px;
}

.image-box p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

/*project section start */

.projects-section {
border-radius: 14px;

overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}





.project-image {
width: 100%;
height: 180px;
object-fit: cover;
}


@media (min-width: 768px) {
.project-image {
height: 210px;
}
}


.project-content {
padding: 18px;
text-align: left;
}


.project-title {
font-size: 1.4rem;
margin-bottom: 8px;
color: white ;
}


.project-description {
font-size: 0.95rem;
line-height: 1.5;
color: white;
margin-bottom: 15px;
}


.project-btn {
display: inline-block;
width: 100%;
text-align: center;
padding: 12px 0;
background: #007bff;
color: #fff;
font-weight: bold;
text-decoration: none;
border-radius: 8px;
transition: background 0.3s ease;
}


.project-btn:hover {
background: #0056b3;
}
/* 📱 Responzivnost za manje ekrane */
@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------------------------------------------about end */