/**
 * UniversTex Website - Section Styles
 * Styles for specific page sections like hero, features, etc.
 */

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: calc(100vh - 80px);
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}