:root{
    --primary:#1e5ef3;
    --dark:#04060f;
    --light:#ffffff;
    --gray:#e7e7e8;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Epilogue',sans-serif;line-height:1.6;color:var(--dark);background:var(--light)}
a{text-decoration:none;color:var(--primary)}
.hero{min-height:100vh;background:url('assets/hero.jpg') center/cover no-repeat;display:flex;flex-direction:column}
.navbar{display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;background:rgba(0,0,0,.6)}
.logo{font-weight:700;font-size:1.25rem;color:var(--light)}
.nav-links{list-style:none;display:flex;gap:1.5rem}
.nav-links a{color:var(--light);font-weight:600}
.hero-content{margin:auto;text-align:center;color:var(--light);max-width:700px}
.hero-content h1{font-size:2.5rem;margin-bottom:1rem}
.btn{display:inline-block;background:var(--primary);color:var(--light);padding:.75rem 1.5rem;border-radius:100rem;margin-top:1.5rem}
.section{padding:4rem 2rem}
.section.inverse{background:var(--dark);color:var(--light)}
.section-title{text-align:center;margin-bottom:2rem;font-size:2rem}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;max-width:1100px;margin-inline:auto}
.card{padding:2rem;border:1px solid var(--gray);border-radius:.75rem;box-shadow:0 2px 6px rgba(0,0,0,.05);background:var(--light)}
.card h3{margin-bottom:.5rem}
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;max-width:800px;margin-inline:auto}
.contact-item h3{margin-bottom:.25rem}
.footer{background:var(--dark);color:var(--light);text-align:center;padding:1rem}
/* Animation on scroll */
.animate-on-scroll{opacity:0;transform:translateY(30px);transition:opacity .6s ease-out,transform .6s ease-out}
.animate-on-scroll.animate{opacity:1;transform:translateY(0)}
@media(max-width:600px){
    .hero-content h1{font-size:1.75rem}
}
