/* @license GPL-2.0-or-later https://www.drupal.org/licensing/faq */
:root{--primary:#0678BE;--primary-dark:#044A7A;--secondary:#FFDC00;--text:#1a1a1a;--text-light:#4a4a4a;--bg:#fafafa;--accent:#00A8E1;}*{margin:0;padding:0;box-sizing:border-box;}body{font-family:'IBM Plex Sans',sans-serif;color:var(--text);background:var(--bg);line-height:1.7;overflow-x:hidden;}.mono{font-family:'Space Mono',monospace;color:var(--secondary);}
@font-face{font-display:swap;font-family:'IBM Plex Sans';font-style:normal;font-weight:400;src:url(/themes/hda_theme/fonts/ibm-plex-sans-v23-latin-regular.woff2) format('woff2');}@font-face{font-display:swap;font-family:'Space Mono';font-style:normal;font-weight:400;src:url(/themes/hda_theme/fonts/space-mono-v17-latin-regular.woff2) format('woff2');}@font-face{font-display:swap;font-family:'Space Mono';font-style:italic;font-weight:400;src:url(/themes/hda_theme/fonts/space-mono-v17-latin-italic.woff2) format('woff2');}@font-face{font-display:swap;font-family:'Space Mono';font-style:normal;font-weight:700;src:url(/themes/hda_theme/fonts/space-mono-v17-latin-700.woff2) format('woff2');}@font-face{font-display:swap;font-family:'Space Mono';font-style:italic;font-weight:700;src:url(/themes/hda_theme/fonts/space-mono-v17-latin-700italic.woff2) format('woff2');}
nav.main{position:sticky;top:0;left:0;right:0;background:rgba(4,74,122,0.95);backdrop-filter:blur(10px);padding:1rem 2rem;z-index:1;box-shadow:0 2px 20px rgba(0,0,0,0.1);}.nav-container{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;}.nav-logo{display:flex;align-items:center;gap:1rem;text-decoration:none;color:white;font-weight:700;font-size:1.2rem;transition:opacity 0.3s ease;}.nav-logo:hover{opacity:0.8;}.nav-logo-svg{width:40px;height:50px;}.nav-menu{display:flex;gap:2rem;list-style:none;margin:0;padding:0;}.nav-menu li a{color:white;text-decoration:none;font-weight:600;font-size:1rem;padding:0.5rem 1rem;border-radius:4px;transition:all 0.3s ease;position:relative;}.nav-menu li a::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:0;height:2px;background:var(--secondary);transition:width 0.3s ease;}.nav-menu li a:hover::after{width:80%;}.nav-menu li a:hover{color:var(--secondary);}.nav-toggle{display:none;background:none;border:none;color:white;font-size:1.5rem;cursor:pointer;}@media (max-width:768px){.nav-toggle{display:block;}.nav-menu{position:absolute;top:100%;left:0;right:0;background:rgba(4,74,122,0.98);flex-direction:column;gap:0;padding:1rem 0;display:none;}.nav-menu.active{display:flex;}.nav-menu li a{display:block;padding:1rem 2rem;}.nav-menu li a::after{display:none;}}
.blog-card{background:white;border-radius:8px;padding:2.5rem;box-shadow:0 4px 20px rgba(0,0,0,0.08);transition:all 0.3s ease;border-top:4px solid var(--primary);}.blog-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px rgba(6,120,190,0.2);}.blog-meta{display:flex;gap:1rem;margin-bottom:1rem;flex-wrap:wrap;}.blog-date{color:var(--primary);font-size:0.85rem;letter-spacing:1px;}.blog-author{color:var(--text-light);font-size:0.85rem;}.blog-title{font-size:1.4rem;margin-bottom:1rem;line-height:1.3;}.blog-title a{color:var(--text);text-decoration:none;transition:color 0.3s ease;}.blog-title a:hover{color:var(--primary);}.blog-excerpt{color:var(--text-light);line-height:1.7;font-size:1rem;}
.hero{min-height:clamp(600px,100vh,1000px);display:flex;align-items:center;justify-content:center;position:relative;background:linear-gradient(135deg,#0678BE 0%,#044A7A 100%);overflow:hidden;}.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:80%;height:150%;background:radial-gradient(circle,rgba(255,220,0,0.1) 0%,transparent 70%);}.hero--animated.hero::before{animation:pulse 15s ease-in-out infinite;}.hero::after{content:'';position:absolute;background-size:500px;top:50%;left:-20%;width:100%;height:150%;background-image:url(/themes/hda_theme/components/hero/./assets/Drupal%20Drop_White.svg);background-repeat:no-repeat;opacity:50%;}@media (min-width:768px){.hero::after{top:20%;left:-20%;width:80%;background-size:unset;}}@keyframes pulse{0%,100%{transform:scale(1) rotate(0deg);}50%{transform:scale(1.1) rotate(5deg);}}.hero-content{max-width:1200px;padding:4rem 2rem;position:relative;z-index:2;}.hero-label{display:inline-block;color:white;font-size:0.9rem;letter-spacing:3px;margin-bottom:2rem;text-transform:uppercase;font-weight:700;}.hero--animated .hero-label{animation:slideInDown 0.8s ease-out;}@keyframes slideInDown{from{opacity:0;transform:translateY(-30px);}to{opacity:1;transform:translateY(0);}}.hero h1{font-size:clamp(2.5rem,4vw,5rem);color:white;line-height:1.1;margin-bottom:2rem;font-weight:700;}.hero--animated .hero h1{animation:slideInUp 0.8s ease-out 0.2s both;}@keyframes slideInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}.hero-highlight{font-size:clamp(2.5rem,4.5vw,5rem);color:var(--secondary);position:relative;display:inline-block;}.hero p{font-size:clamp(1.2rem,3vw,1.5rem);color:rgba(255,255,255,0.9);max-width:800px;margin-bottom:3rem;}.hero--animated .hero p{animation:slideInUp 0.8s ease-out 0.4s both;}.hero-cta{display:inline-flex;gap:1.5rem;flex-wrap:wrap;}.hero--animated .hero-cta{animation:slideInUp 0.8s ease-out 0.6s both;}.btn{display:inline-block;padding:1rem 2.5rem;font-size:1.1rem;text-decoration:none;border-radius:4px;transition:all 0.3s ease;font-weight:600;position:relative;overflow:hidden;}.btn-primary{background:var(--secondary);color:var(--primary-dark);border:2px solid var(--secondary);}.btn-primary:hover{background:transparent;color:var(--secondary);transform:translateY(-2px);box-shadow:0 10px 30px rgba(255,220,0,0.3);}.btn-secondary{background:transparent;color:white;border:2px solid white;}.btn-secondary:hover{background:white;color:var(--primary);transform:translateY(-2px);}
.section{padding:6rem 2rem;max-width:1200px;margin:0 auto;}.section-header{text-align:center;margin-bottom:4rem;}.section-label{color:var(--primary);font-size:0.9rem;letter-spacing:3px;text-transform:uppercase;font-weight:700;margin-bottom:1rem;}.section-title{font-size:clamp(2rem,5vw,3.5rem);color:var(--text);margin-bottom:1.5rem;font-weight:700;}.section-subtitle{font-size:1.3rem;color:var(--text-light);margin:0 auto;}
.stats{background:var(--primary-dark);padding:3rem 2rem;text-align:center;}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:3rem;max-width:1200px;margin:0 auto;}.stat-item{color:white;}.stat-number{font-size:3rem;font-weight:700;color:var(--secondary);display:block;margin-bottom:0.5rem;}.stat-label{font-size:1rem;opacity:0.9;}
