/* Responsive styles for ExploreHull theme */

/* Tablet Styles (768px to 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
    .site-header-inner {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .site-branding {
        margin-bottom: 15px;
    }
    
    .menu-toggle {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        width: 100%;
    }
    
    .menu a {
        padding: 12px 15px;
        text-align: center;
    }
    
    .menu .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 153, 204, 0.1);
    }
    
    .menu .sub-menu a {
        padding-left: 30px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-section,
    .site-main {
        padding: 40px 0;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
        width: 100%;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .featured-image {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .main-navigation,
    .site-footer,
    .widget-area,
    .comments-area {
        display: none;
    }
    
    .site-main {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    img {
        max-width: 100% !important;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    h2, h3 {
        page-break-after: avoid;
    }
}
