/* Windplex - Responsive Stylesheet */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .server-ip-display {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .ip-address {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .connect-steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .rules-container,
    .feature-detail-card,
    .connect-card {
        padding: 1.5rem;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.5rem;
    }
}

/* Small devices (landscape phones, 576px to 768px) */
@media (min-width: 576px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
}

/* Medium devices (tablets, 768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .server-stats {
        flex-direction: row;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .footer,
    .nav-connect-btn,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
        padding-top: 0;
    }
    
    .section {
        padding: 20px 0;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
}