body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Satoshi', sans-serif;
        }

        .hero {
            position: relative;
            height: 100vh;
            background-image: url('/images/pozadina-main-pc.4fe6e415.png'); 
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            background-color: black;
        }

        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 30px; 
            margin-top:20px;
        }
        .logo2 {
            top: 20px;
            left: 20px;
            width: 30px;
            float:left;
            margin-bottom:20px;
            margin-top:30px;
        }
        .logo3 {
            top: 20px;
            right: 20px;
            width: 30px;
            float:right;
            margin-bottom:20px;
            margin-top:30px;
        }
        .logo4 {
            position: absolute;
            font-family: 'Syne', sans-serif;
            color:white;
            font-size: 22px;
            top: 1px;
            right: 50px;
            float:right;
            margin-bottom:20px;
            margin-top:30px;
            text-decoration: none;

        }
        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.75rem;
            max-width: 600px;
            font-family: 'Satoshi', sans-serif;
        }

        .cta-button {
            color: black;
            border-radius: 30px;
            border: 2px solid black;
            padding: 15px 40px;
            font-size: 1.5rem;
            margin-top: 20px;
            text-decoration: none;
            cursor: pointer;
            background-image: linear-gradient(to right, #dbf0e5, #11FFBA); 
            font-family: 'Syne', sans-serif;
            transition: transform 0.3s ease, color 0.3s ease;

        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        .cta-button:hover {
            transform: scale(1.1) perspective(1px);
            color: black;
        }
        .about-section {
            background-color: #101111;
            color:white;
            padding: 10px 10px;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-section h1 {
            font-size: 45px;
            font-weight: bold;
            margin-bottom: 10px;
            font-family: 'Syne', sans-serif;
        }

        .underline {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #fff 50%, transparent);
            margin-bottom: 10px;
            border-radius: 1.5px;
        }

        .about-section p {
            font-size: 22px;
            line-height: 1.7;
            margin: 40px 0;
            font-family: 'Satoshi', sans-serif;

        }
        .projects-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 1px 20px;
            text-align: center;
            color:white;

        }

        .projects-section h1 {
            font-size: 45px;
            font-weight: bold;
            margin-bottom: 10px;
            font-family: 'Syne', sans-serif;
        }

        .projects-section p {
            font-size: 22px;
            margin: 40px 0;
            font-family: 'Satoshi', sans-serif;
        }

        

        .project-card {
            background: #101111;
            border-radius: 12px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            width:80%;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        

        .project-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
        }

        .project-card h3 {
            margin-bottom: 10px;
            font-size: 20px;
            color:white;
            font-family: 'Syne', sans-serif;
            margin-top:10px;
        }

        .project-card a {
            text-decoration: none;
            color: black;
            font-weight: bold;
            font-size: 14px;
        }

        .project-card a:hover {
            text-decoration: underline;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .carousel-control-prev,
        .carousel-control-next {
        width: auto; 
        top: 50%;
        transform: translateY(-50%);
        padding: 0 10px; 
        }

        .carousel-control-prev {
        left: 10px; 
        }
        @media screen and (min-width: 768px) {
            .carousel {
                width:60% !important;
                margin: auto;
            }
        }
        .carousel {
            width:100%;
        }
        
        .carousel-control-next {
        right: 10px; 
        }
        .contact-section {
            width: 100%;
            text-align: center;
            margin:auto;
            padding:20px;
            padding-bottom:70px;
            background-image: url('/images/aboutme-bacground-pc.c30305d9.png'); 
            background-size: cover;
            background-position: center;
        }

        .contact-section h1 {
            font-size: 45px;
            margin-bottom: 0.5rem;
            font-family: 'Syne', sans-serif;
            color:white;
            margin-top: 20px;
            font-weight: bold;

        }

        .subtext {
            font-family: 'Satoshi', sans-serif;
            font-size: 22px;
            color: white;
            margin-bottom: 40px;
            margin-top: 40px;
        }

        .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 60%;
        margin:auto;
        }

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0.5rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid #888;
  color: white;
  font-size: 1rem;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom: 1px solid #7efcbf;
}

.form-group label {
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  color: #ccc;
  font-size: 22px;
  pointer-events: none;
  transition: 0.2s ease all;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  font-size: 15px;
  color: white;
  background: black;
  padding: 0 0.3rem;
}


        
        .bckgrnd {
            background: linear-gradient(to bottom, #101111, #060606);

        }
       html {
  scroll-behavior: smooth;
}
 