/* Responsive styles for Walkman theme */

/* Mobile styles */
@media (max-width: 767px) {
    .header-container {
        padding: 0 10px;
    }
    
    .header-contact-widget {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 10px;
        text-align: right;
    }
    
    .site-branding .custom-logo {
        max-height: 100px;
    }
    
    .site-title {
        font-size: 22px;
    }
    
    .hero-section {
        height: 58vh; /* slightly smaller on small screens */
        min-height: 360px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .main-navigation ul {
        display: block;
    }
    
    .main-navigation li {
        display: block;
        margin: 5px 0;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .content-area {
        padding: 20px 10px;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .site-branding .custom-logo {
        max-height: 120px;
    }
    
    .hero-section {
        height: 66.666vh;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .footer-widgets-inner {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 1 1 50%; /* Two columns on tablet */
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .site-title {
        font-size: 36px;
    }
}
