/* Responsive styles for hero section */

@media (max-width: 992px) {
    /* Tablet styles */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image {
        width: 70%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .text-reveal {
        font-size: 16px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Mobile styles */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin: 10px 0;
        width: 80%;
    }
    
    .hero-image {
        width: 90%;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .text-reveal {
        font-size: 14px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
