/**
 * Responsive Stile für Musiqi Təması
 */

/* ========== Tablets (768px und größer) ========== */
@media (max-width: 991px) {
    /* Layout */
    .content-container {
        flex-direction: column;
    }
    
    .content-area {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .widget-area {
        width: 100%;
    }
    
    /* Footer */
    .footer-widget {
        width: 48%;
    }
}

/* ========== Mobil (bis 767px) ========== */
@media (max-width: 767px) {
    /* Header */
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-branding {
        margin-bottom: 15px;
        margin-right: 0;
        width: 100%;
    }
    
    .header-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-form {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .search-field {
        flex-grow: 1;
    }
    
    /* Navigation */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 10px 0;
        width: 100%;
        text-align: left;
        cursor: pointer;
        position: relative;
    }
    
    .menu-icon {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--secondary-color);
        position: relative;
    }
    
    .menu-icon::before,
    .menu-icon::after {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--secondary-color);
        position: absolute;
        transition: transform 0.3s ease;
    }
    
    .menu-icon::before {
        top: -6px;
    }
    
    .menu-icon::after {
        bottom: -6px;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-icon {
        background-color: transparent;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .main-navigation {
        width: 100%;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .main-navigation li {
        margin-left: 0;
        border-top: 1px solid var(--border-color);
    }
    
    .main-navigation a {
        padding: 10px 0;
    }
    
    /* Content */
    .entry-title {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-widgets {
        flex-direction: column;
    }
    
    .footer-widget {
        width: 100%;
    }
}

/* ========== Kleine Mobilgeräte (bis 480px) ========== */
@media (max-width: 480px) {
    /* Container und Abstände */
    .container {
        padding: 0 15px;
    }
    
    /* Typografie */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Inhalte */
    .hentry {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .entry-title {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .site-info {
        flex-direction: column;
    }
    
    .copyright, 
    .footer-links {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
} 