* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #080041;

}

.fade-in-paragraph {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(1px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out, filter 0.9s ease-out;
    will-change: opacity, transform, filter;
}

.fade-in-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

#ikiust {
    opacity: 100%;
    width: 0%;
    display: block;
    margin-top: 0px;
}

#takımlar {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}

.ust p {
    font-size: 90px;
    font-family: fantasy;
    text-align: center;
    letter-spacing: 5px;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 6rem;
    background-color: rgba(3, 12, 91, 0.85);
    /* eski rengi white'dı */
    position: sticky;
    top: 0;
    z-index: 10;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}

.logo {
    font-size: 25px;
  font-weight:bold;
  color: #2e7d32;
  position: relative;
  padding: 12px;
}

.nav-links a {
    margin-left: 3rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.03rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff0000;
}

.menu-icon {
    display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-right: 0px;
  position: absolute;
  right: 5%;
  padding: 20px;
}

.menu-icon span {
    height: 3px;
    width: 25px;
    background: #92f0ff;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgb(1, 6, 51);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 1.0s ease;
    z-index: 20;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-weight: 450;
}

.mobile-menu a:hover {
    color: #ff0000;
}

.close-btn {
    font-size: 3rem;
    align-self: flex-end;
    cursor: pointer;
    color: #92f0ff;
}

.navbar img {
    width: 85px;
    left: 3%;
    position: absolute;
}

.container-1 {
    display: block;

    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Resim ve yazı arası boşluk */
    
    flex-wrap: wrap;
    /* Küçük ekranlarda alt alta geçsin */

}

.container-1 p {
    
    
    padding-left: 20px;
    text-align: center;
    font-size: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.container-1 img {
    width: 25%;

    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 300px;
    border-radius: 20px;
    align-items: center;
}

.container-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;

}

.container-2 p {
    width: 45%;
    min-width: 300px;
    padding-right: 20px;
    text-align: justify;
    font-size: 20px;
}

.container-2 img {
    width: 45%;
    min-width: 300px;
    border-radius: 20px;
}

.container-1 a {
    text-decoration: none;
    color: #0071f2;
    font-weight: 550;
    font-size: 30px;
    cursor: default;
}

.container-2 a {
    text-decoration: none;
    color: #0071f2;
    font-weight: 550;
    font-size: 30px;
    cursor: default;
}

.ust img {
    width: 100%;
}

footer {
    background-color: #282828;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 200px;
    margin: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-social a {
    color: #ccc;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .navbar img {
        width: 90px;
        left: 2.7%;
        position: absolute;

    }

    #ustust {
        opacity: 0%;
    }

    #ikiust {
        opacity: 100%;
        position: relative;
    }

    .container-1 {
        flex-direction: column;
        text-align: center;
        
    }
   .container-1 #mail{
    font-size: 17px;
   }
   .container-1 #formlink{
    font-size: 17px;
   }
    .container-1 a {
        cursor: default;
        text-align: center;
        
        
    }
    .container-1 p {
        display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 300px;
    font-size: 17px;
    text-align: justify;
    padding-right: 15px;
    
        
    }

   
    .container-1 img {
        width: 60%;
        min-width: 300px;
        border-radius: 20px;
    }

    /**/
    .container-2 {
        flex-direction: column;
    }

    .container-2 p {
        padding-left: 0;
        width: 90%;
        font-size: 17px;
    }

    .container-2 img {
        width: 100%;
        min-width: 300px;
        gap: 20px;
        border-radius: 20px;
    }

    .container-2 a {
        text-align: left;
        cursor: default;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 20px 0;
    }
    

    #takımlar {
        width: 70%;
    }

}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: opacity, transform;

}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

p {
    color: white;
}

.container-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Resim ve yazı arası boşluk */
    padding: 40px;
    flex-wrap: wrap;
    /* Küçük ekranlarda alt alta geçsin */

}

.container-3 p {
    width: 45%;
    min-width: 300px;
    padding-left: 20px;
    text-align: justify;
    font-size: 20px;
}

.container-3 img {
    width: 45%;
    min-width: 300px;
    border-radius: 20px;
}

.container-3 a {
    text-decoration: none;
    color: #0071f2;
    font-weight: 550;
    font-size: 30px;

}
#formlink{
    color: #0071f2;
    cursor: pointer;
    font-size: 20px;
}
#mail{
    font-size: 20px;
}

