@media only screen and (min-width: 1025px) {
    .aside-menu {
        display: none;
    }
    html {
        scroll-behavior: smooth;
    }

    header {
        padding-top: 1%;
        min-height: 100vh;
    }

    #section2-down {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.729);
        width: 60px;
        height: 60px;
        right: 20px;
        top: 90%;
    }

    #section2-down p {
        color: white;
        font-size: 40px;
        width: 100%;
        height: 100%;
        text-align: center;
        margin: 0%;
        font-weight: bolder;
    }

    #background-Video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        z-index: -1;
        margin: 0;
        padding: 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    #background-Video video {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;
    }

    #background-Video img {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;
    }

    #section1 {
        margin: 0%;
        min-height: 20vh;
        position: relative;
        display: flex;
        justify-content: center;
    }

    #section1-div1 {
        width: min(1000px, 92%);
        height: 100%;
        display: flex;
        justify-content: space-between;
        margin: 0%;
        align-items: center;
    }

    #section1-div1-div1 {
        width: 15%;
        height: 50%;
        position: relative;
    }

    #section1-div1-div1 img {
        width: 100%;
        height: 100%;
        animation: animasyon 3s infinite ease-in-out;
    }

    @keyframes animasyon {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }

        100% {
            transform: translateY(0);
        }

    }

    #section1-div1-div2 {
        width: 80%;
        position: relative;
    }

    #section1-div1 ul {
        width: auto;
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 0px;
    }

    .section1-div1-list {
        position: relative;
        z-index: 20;
        float: left;
        list-style-type: none;
    }

    .section1-div1-a {
        text-decoration: none;
        position: relative;
        display: inline-block;
    }

    .section1-div1-a span {
        color: white;
        font-size: 18px;
        font-family: sans-serif;
        font-weight: 700;
        display: inline-block;
        position: relative;
    }

    .section1-div1-a span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 2px;
        background: white;
        transition: width 0.3s ease;
    }

    .section1-div1-a:hover span::after {
        width: 100%;
    }

    /* Dil Seçici Stilleri */
    .language-switcher-desktop {
        display: inline-block;
    }

    .language-select-desktop {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        color: white;
        padding: 8px 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .language-select-desktop:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .language-select-desktop:focus {
        outline: none;
        border-color: #00AAFF;
        box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.3);
    }

    .language-select-desktop option {
        background: #1a1a1a;
        color: white;
        padding: 10px;
    }

    #active {
        border-bottom: white solid 2px;
    }
    .open{
        display: none;
    }
    .hamb-btn{
        display: none;
    }

    /* Video Button Styles */
    .video-button {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 25px;
        cursor: pointer;
        text-decoration: none;
        position: relative;
        display: inline-block;
        padding: 12px 24px;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .video-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .video-button:hover::before {
        left: 100%;
    }

    .video-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }

    .video-button:active {
        transform: translateY(0);
    }

    .video-button span {
        color: white;
        font-size: 16px;
        font-family: sans-serif;
        font-weight: 700;
        display: inline-block;
        position: relative;
        z-index: 1;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .video-button span::before {
        content: "▶";
        margin-right: 8px;
        font-size: 14px;
    }

    /* Video Modal Styles */
    .video-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .video-modal-content {
        position: relative;
        margin: 2% auto;
        width: 85%;
        max-width: 1200px;
        background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(102, 126, 234, 0.3);
        animation: slideIn 0.4s ease;
    }

    @keyframes slideIn {
        from { 
            transform: translateY(-50px) scale(0.9);
            opacity: 0;
        }
        to { 
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    .video-close {
        position: absolute;
        top: 20px;
        right: 25px;
        color: white;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1001;
        background: linear-gradient(135deg, #ff4757, #ff3742);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }

    .video-close:hover {
        background: linear-gradient(135deg, #ff3742, #ff2f3a);
        transform: scale(1.15) rotate(90deg);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }

    #intro-video {
        width: 100%;
        height: auto;
        max-height: 75vh;
        display: block;
        border-radius: 15px;
    }
}
