/* Responsive Styles for Piiply Landing Page */

/* Base responsive settings */
@media only screen and (max-width: 1024px) {
    #banner-content h1 {
        font-size: 36px;
    }
    
    #banner-content h2 {
        font-size: 18px;
    }
}

/* Tablet */
@media only screen and (max-width: 768px) {
    #banner-content {
        width: 90%;
        margin: 0 auto;
    }
    
    #banner-content h1 {
        font-size: 32px;
    }
    
    #banner-content h2 {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .page-border {
        display: none;
    }
}

/* Mobile */
@media only screen and (max-width: 480px) {
    #banner-content {
        width: 95%;
        padding: 20px;
    }
    
    #banner-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    #banner-content h2 {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    #landing-footer .clearfix {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    #copyright {
        display: block;
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.6;
    }
}

/* Fix for very small screens */
@media only screen and (max-width: 320px) {
    #banner-content h1 {
        font-size: 24px;
    }
    
    #banner-content h2 {
        font-size: 13px;
    }
}

/* Fix for height on small devices */
@media only screen and (max-height: 500px) {
    #banner {
        height: auto;
        min-height: 100vh;
        padding: 50px 0;
    }
}
