@import 'modules/variables.css';
@import 'modules/base.css';
@import 'modules/layout.css';
@import 'modules/components.css';
@import 'modules/animations.css';

/* Hero Section specifics */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    background: linear-gradient(to right, #94a3b8, #f1f5f9, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness Overrides */
@media (max-width: 900px) {
    header { top: 10px; width: calc(100% - 20px); }
    .nav-container { padding: 12px 20px; gap: 20px; }
    nav { display: none; }
}

@media (max-width: 768px) {
    .col-2, .col-3, .col-full, .span-2, .span-3 { grid-column: span 1 !important; }
    .row-2, .row-3 { grid-row: span 1 !important; }
    .bento-grid, .bento-contact-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
    }
    .bento-card { 
        min-height: auto !important;
        padding: 1.5rem !important;
    }
    .section-header h2 { font-size: 2.5rem; }
    .footer-cta h2 { font-size: 3rem; }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 6px 12px !important;
        gap: 8px !important;
        border-radius: 50px !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 320px !important;
    }
    
    .logo {
        font-size: 0.85rem !important;
        width: auto !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        white-space: nowrap !important;
    }
    
    .logo span { display: inline; }

    .nav-controls {
        gap: 8px !important;
    }

    .tag {
        padding: 8px 16px !important;
        font-size: 0.6rem !important;
    }
    
    .card-title {
        font-size: 1.4rem !important;
    }
}