@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

a {
    text-decoration: none !important;
}

.navbar .nav-link {
    color: #121212 !important;
}

.navbar .nav-link:hover {
    color: #FBD2D4 !important;
}

.navbar-toggler {
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.rotated {
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}

.anti-rotated {
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.project-image {
    border-radius: 25px;
}

.project-title {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 30px;
    font-size: clamp(15px, 3vw, 30px) !important;
}

.inverse-block {
    background-color: #FFF3F6 !important;
}

.personal-block {
    background-color: #FFFFFF;
    border-radius: 25px;
    flex-direction: column;
    height: 650px;
    
}

.profile_pic {
    border-radius: 50%;
    border-color: #FBD2D4;
    border-width: 10px;
    border-style: solid;
    width: 200px;
    width: clamp(150px, 8vw, 200px) !important;
}

.personal-card-title {
    font-family: "roca", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(20px, 3.6vw, 40px) !important;
}

.personal-card-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-size: clamp(10px, 0.8vw, 20px) !important;
}

.main-button {
    padding-bottom: 12px !important;
    background-color: #121212;
    color: white;
    border-style: solid;
    border-color: #121212;
    border-width: 0px;
    border-radius: 25px;
    max-width: 300px;
    font-size: clamp(13px, 1.5vw, 20px) !important;
}

.main-button:hover {
    background-color: #ED9498;
    color: white;
    border-width: 0px;
    border-style: solid;
    border-color: #ED9498;
    border-radius: 25px;
    max-width: 300px;
    font-size: clamp(13px, 1.5vw, 20px) !important;
}


.gradient-hover {
    cursor: pointer;
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.gradient-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, #FBD2D4, #ED9498, #FBD2D4);
    border-color: linear-gradient(100deg, #FBD2D4, #ED9498, #FBD2D4);
    ;
    background-size: 400% 400%;
    animation: none;
    opacity: 0;
    z-index: -1;
    transition: opacity 1s ease;
}

.gradient-hover:hover::before {
    animation: gradientMove 4s ease infinite;
    opacity: 1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}


.insta_post_image {
    border-radius: 25px;
    width: 300px;
    height: 300px;
}

.control-icon {
    color: #131313;
}

.form-control {
    border-radius: 25px;
}

.footer {
    background-color: #121212;
    color: white;
}

.footer-text {
    font-family: "roca", sans-serif;
    font-size: clamp(15px, 3.6vw, 30px) !important;
}

.footer-name {
    font-family: 'Poppins';
    font-weight: 200;
    font-size: clamp(10px, 1.5vw, 15px) !important;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

}

.icon {
    width: 50px;
    height: 50px;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
}


.icon svg {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.project-title {
    font-family: "roca", sans-serif;
    font-size: clamp(15px, 5vw, 100px) !important;
}

.category-tag {
    font-family: 'Poppins';
    font-weight: 200;
    font-size: clamp(10px, 2vw, 20px) !important;
    border-color: #121212;
    border-width: 1px;
    border-radius: 25px;
    border-style: solid;
} 

.project-textblock {
    font-family: 'Poppins';
    font-weight: 200;
    font-size: clamp(15px, 3vw, 20px) !important;
}

.transparent-button {
    background-color: #FFF3F6;
    opacity: 100%;
    text-decoration: none;
    border-color: #FFF3F6 !important;
    color: #121212;
    border-width: 1px !important;
    border-radius: 25px !important;
}

/*anim*/

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.slide-item {
  flex-shrink: 0;
  width: 300px; /* vagy amit szeretnél */
  margin-right: 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.icon svg {
  color: white;
}

/*scroll reveal*/

.scroll-reveal-init {
    opacity: 0;
    transition: opacity 1.0s ease-in, transform 1.0s ease-out;
}

/* Külön mozgási irányok */
.scroll-reveal-left {
    transform: translateX(-70px);
}

.scroll-reveal-right {
    transform: translateX(70px);
}

.scroll-reveal-bottom {
    transform: translateY(70px);
}

.scroll-reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}


.carousel-img {
  max-height: 900px; /* vagy amennyit szeretnél */
  object-fit: cover; /* hogy ne torzuljon a kép, csak legyen levágva */
  width: 100%;
}