/* Styles - Droven Demo */

/* Base styles and utilities */
* {
    box-sizing: border-box;
}

/* Ensure videos display properly */
video {
    max-width: 100%;
    height: auto;
}

/* Icon styling */
i {
    font-style: normal;
}

/* Link styling */
a {
    color: inherit;
    text-decoration: none;
}

/* Button base styles */
button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* Input styling */
input, textarea {
    font-family: inherit;
}

/* Responsive utilities */
@media (max-width: 768px) {
    /* Mobile optimizations */
    .hero-description {
        padding: 0 1rem;
    }
    
    .demo-feature {
        flex-direction: column !important;
        text-align: center;
    }
    
    .demo-feature.reverse {
        flex-direction: column !important;
    }
    
    .demo-content, .demo-visual {
        width: 100% !important;
        margin-bottom: 2rem;
    }
    
    .demo-video-container video {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}
