/* Modüler CSS - Her bölüm ayrı dosyalara bölünmüştür */
@import 'modules/variables.css';
@import 'modules/base.css';
@import 'modules/header.css'; 
@import 'modules/mega-dropdown.css';
@import 'modules/mobile-menu.css';
@import 'modules/sections.css';
@import 'modules/footer.css';
@import 'modules/animations.css';
@import 'modules/responsive.css'; 

/* Mobile Dropdown Menu - Revize */
.mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: #fff;
}

.mobile-dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-toggle i.fa-chevron-down {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.mobile-nav-item.opened .mobile-dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    list-style-type: none;
    padding-inline-start: 20px; /* Varsayılan padding yerine */
}

.mobile-nav-item.opened .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    padding: 5px 0;
    margin: 0;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-dropdown-menu a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mobile-dropdown-menu a.current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobil menü için debugging stilleri */
.debug-on .mobile-dropdown-toggle {
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.debug-on .mobile-dropdown-menu {
    border-left: 2px solid rgba(255, 0, 0, 0.3);
} 