/* Combined Layout Styles - All inline CSS extracted */

/* Critical CSS - Above the Fold Only - Ultra Optimized */
*{margin:0;padding:0;box-sizing:border-box}
html{font-size:16px;line-height:1.6;scroll-behavior:smooth;height:100%}
body{font-family:'Roboto',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;color:#1a1a1a;background-color:#fff;font-display:swap;overflow-x:hidden;min-height:100vh}

/* Critical Header Styles */
.header-main-eight{padding:15px 0}
.container-style8{max-width:1200px;margin:0 auto;padding:0 15px}
.header8-logo img{max-height:60px;width:auto;height:60px;min-width:120px;min-height:40px;object-fit:contain}
.header-btn-eight img{max-width:160px;height:auto;cursor:pointer;transition:transform 0.3s ease;min-width:120px;min-height:40px}

/* Critical Hero Styles */
.cs_hero{position:relative;width:100%;height:100vh;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.cs_hero_overlay{position:absolute;inset:0;width:100%;height:100%;background:rgba(0,0,0,0.3);z-index:1}
.cs_hero_img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:73% -50px;aspect-ratio:16/9;min-height:100vh;max-height:100vh;}

/* Critical Button Styles */
.btn{display:inline-block;padding:12px 24px;border:none;border-radius:6px;text-decoration:none;font-weight:600;transition:all 0.3s ease;cursor:pointer}
.btn-primary{background:#0f7e7e;color:white}
.btn-primary:hover{background:#0a5f5f;transform:translateY(-2px)}

/* Mobile Critical */
@media (max-width:768px){
    .header-main-eight{padding:10px 0}
    .header8-logo img{max-height:50px}
    .header-btn-eight img{max-width:120px}
    .cs_hero { min-height: 65vh; }
}

/* Accessibility Improvements */
h1{font-size:2.5rem;font-weight:700;line-height:1.2;margin-bottom:1rem}
h2{font-size:2rem;font-weight:600;line-height:1.3;margin-bottom:0.875rem}
h3{font-size:1.5rem;font-weight:600;line-height:1.4;margin-bottom:0.75rem}
h4{font-size:1.25rem;font-weight:600;line-height:1.4;margin-bottom:0.625rem}
h5{font-size:1.125rem;font-weight:600;line-height:1.4;margin-bottom:0.5rem}
h6{font-size:1rem;font-weight:600;line-height:1.4;margin-bottom:0.5rem}

/* Project and team name styling */
.project-name{font-size:1.25rem;font-weight:600;line-height:1.4;margin-bottom:0.625rem;color:#2c3e50}
.name{font-size:1.25rem;font-weight:600;line-height:1.4;margin-bottom:0.625rem;color:#2c3e50}

/* Focus indicators for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus{
    outline: 2px solid #0f7e7e;
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link{
    position: absolute;
    top: -40px;
    left: 6px;
    background: #0f7e7e;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}
.skip-link:focus{
    top: 6px;
}

/* Font Loading */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2') format('woff2');
}

