/* /dev/assets/css/responsive.css */


/* Küçük ekranlar için (tablet & mobil) */


/* Hamburger sadece mobile */

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #3a2c2c;
}


/* Overlay Menü */

#overlay-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.4s;
}

#overlay-menu .overlay-content {
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

#overlay-menu ul {
    list-style: none;
    padding: 0;
}

#overlay-menu ul li {
    margin: 20px 0;
}

#overlay-menu ul li a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

#overlay-menu ul li a:hover {
    color: #aaa;
}

#overlay-menu .closebtn {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    text-decoration: none;
}


/* Responsive */

@media (max-width: 1024px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

@media (max-width: 1024px) {
    /* Container */
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    body {
        overflow-x: hidden;
    }
    /* Flex yapılar */
    .header-actions,
    .search-wrapper,
    .footer-inner,
    .home-links .row,
    #guide-detail .row,
    #profile-detail .row,
    #reservation .row {
        flex-direction: column;
        align-items: flex-start;
    }
    /* Grid yapılar */
    .cards,
    #activity-list .row,
    #news-list .row,
    #related-news .row,
    .meta-grid,
    .content-grid,
    .items-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
    /* Görseller tam genişlik */
    .card img,
    .img-home-left img,
    .res-left img,
    .news-detail-image img,
    .guide-card {
        width: 100%;
        height: auto;
    }
    #inner-promo {
        margin-bottom: 20px;
    }
    #activity-promo {
        margin-bottom: 20px;
    }
    #inner-content {
        padding-bottom: 20px;
    }
    #related-news {
        margin-top: 0;
    }
    #related-news {
        padding: 20px 0;
    }
    .site-footer {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .footer-nav ul {
        flex-direction: column;
    }
    .guide-left {
        max-width: 100%;
    }
    .site-footer img {
        margin-bottom: 60px;
    }
    #activity-calendar {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #activity-calendar p {
        flex-direction: column;
        height: auto;
        line-height: 1.2;
    }
    .res-left,
    .res-right {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .search-wrapper {
        margin-bottom: 20px;
    }
    .lang {
        margin-top: 20px;
        color: #fff
    }
    #category-promo .container h1 {
        left: 20px;
        font-size: 32px;
    }
    #category-promo .container img {
        left: 20px;
    }
    #related-activities .row {
        grid-template-columns: repeat(1, 1fr);
    }
    #activity-promo.no-mb .container .icon {
        left: 20px;
        top: 20px;
    }
    .auth-container {
        width: 90%;
        margin-top: 150px;
    }
    .home-links .row{
         grid-template-columns: repeat(1, 1fr);
    }
    .activity-card .icon img{
        width:50px !important;
    }
    .img-home-inner{
        flex-direction: column;
    }
    .footer-nav{
        margin-bottom: 40px;
    }
}