/* odak font */
@font-face {
    font-family: 'odak';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}

/* mobile start */

@media only screen and (max-width: 950px) {
    
    .dropdown-content {
        display: none;
    }

    .dropdown-content a {
        display: none;
    }
      
    .dropdown:hover .dropdown-content {display: none;}
    
    header h1 {
        display: block;
        color: #fff;
        margin: auto;
        font-family: odak;
        font-weight: 400;
        font-size: max(2.4666666667vw,25px);
    }
    
    .menu {
        display: none; /* Menüyü varsayılan olarak gizle */
        flex-direction: column;
        background-color: #fff;
        align-items: start;
        position: absolute;
        top: 10px;
        right: 25px;
        width: 250px;
        max-height: 0; /* Başlangıçta yüksekliği 0 yapın */
        overflow: hidden; /* İçeriği gizlemek için overflow kullanın */
        padding: 20px;
        border-radius: 5px;
        z-index: 1;
        box-shadow: rgb(7, 7, 7) 0px 0px 15px;
        transition: max-height 0.3s ease-in-out; /* Yükseklik değişikliği için transition kullanın */
    }
    
    .menu.active {
        display: flex; /* Menüyü görünür hale getirin */
        max-height: 350px; /* Menü açıldığında istediğiniz yüksekliği ayarlayın */
        transform: scale(1, 1); /* Transform özelliğini burada kullanabilirsiniz */
        transform-origin: top right;
    }
    
    .menu a {
        display: inline-block;
        text-decoration: none;
        color: #000;
        font-family: odak;
        font-size: 24px;
        font-weight: 400;
        margin: 15px 0;
        transition: transform 0.3s, color 0.3s; /* Birden fazla özellik için virgülle ayırın */
    }
    
    .menu a:hover {
        transform: scale(1.2) translateX(20px);
        color: rgb(0, 0, 0);
    }
    
    .menu a::after {
        content: '';
        display: block;
        width: 0;
        height: 3px;
        background: #000;
        transition: width .3s;
    }
    
    .menu a:hover::after {
        width: 100%;
        transition: width .3s;
    }
    .menu-icon {
      display: block;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      position: relative;
      right: 0px;
      top: -5px;
      z-index: 999;
    }
}

/* Büyük Ekranlı Bilgisayarlar */
@media screen and (min-width: 1025px) and (max-width: 1280px) {    
    
}


/* Daha Büyük Tabletler ve Küçük Ekranlı Bilgisayarlar */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    
}



/* Tabletler */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .slideshow-container {
        width: 69%;
        height: 53%;
        position: relative;
        margin: auto;
    }
    
    .imgs {
        object-fit: fill;
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: 15px;
    }
    
    .phone {
        position: absolute;
        width: 180%;
        height: 65%;
        object-fit: fill;
    }

    .prev, .next {
        padding: 5px;
        font-size: 10px;
        margin-top: -10px;
    }

    .sayfa2-sol-box-devam {
        padding: 0;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown-content a {
        display: none;
    }
      
    .dropdown:hover .dropdown-content {display: none;}
}



/* Küçük Cihazlar (Mobil) */
@media screen and (max-width: 480px) {
    .slideshow-container {
        width: 69%;
        height: 53%;
        position: relative;
        margin: auto;
    }
    
    .imgs {
        object-fit: fill;
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: 15px;
    }
    
    .phone {
        position: absolute;
        width: 180%;
        height: 65%;
        object-fit: fill;
    }

    .prev, .next {
        padding: 5px;
        font-size: 10px;
        margin-top: -10px;
    }

    .sayfa2-sol-box-devam {
        padding: 0;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown-content a {
        display: none;
    }
      
    .dropdown:hover .dropdown-content {display: none;}
    
}