/* ───── CSS RESET & TOKENS ───── */
:root{
  --bg:#0d0d0d;
  --surface:#1a1a1a;
  --text:#f5f6fa;
  --muted:#a1a1aa;
  --primary:#3b82f6;
  --primary-hover:#2563eb;
}

*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}

/* generic container */
.container{width:min(90%,1100px);margin-inline:auto}

/* ───── NAV BAR ───── */
.navbar{
  position:sticky;top:0;z-index:1000;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(10px);
}
.nav-content{
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 0;
}
.logo img{height:32px}
.nav-links{display:flex;gap:1.25rem;align-items:center}
.nav-links a{font-size:.9rem;color:var(--muted);transition:color .2s}
.nav-links a:hover{color:var(--text)}

.btn-outline,.btn-primary{
  padding:.5rem 1.2rem;border-radius:6px;font-weight:600;font-size:.9rem
}
.btn-outline{border:1px solid var(--muted);color:var(--muted)}
.btn-outline:hover{border-color:var(--text);color:var(--text)}
.btn-primary{
  background:linear-gradient(135deg,#ff7a18 0%,#af002d 74%);
  color:#fff;border:none;transition:filter .25s;
}
.btn-primary:hover{filter:brightness(1.15)}

/* mobile hamburger */
#nav-toggle{display:none;flex-direction:column;gap:4px;background:none;border:0;cursor:pointer}
#nav-toggle .bar{width:22px;height:2px;background:var(--text)}

/* ─── CSS RESET ─── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}

/* ─── TOKENS ─── */
:root{
  --overlay-bg:rgba(0,0,0,.45);   /* dark glass behind text */
  --text:#ffffff;
  --accent:#3b82f6;
  --font:'Inter',sans-serif;
}

/* ─── HERO (background fills entire viewport) ─── */
.hero{
  min-height:100vh;  
  background:url('hero.png') center/cover no-repeat fixed;
  display:flex;
  justify-content:center;
  align-items:flex-end;   /* keep horizontally centred, but move to bottom */
  padding-bottom:6vh;     /* gives a little breathing room from the edge */
  text-align:center;
  color:var(--text);
  font-family:var(--font);
}

#contact{
  
}

/* ─── OVERLAY CARD ─── */
.overlay{
  display:flex;flex-direction:column;align-items:center;
  gap:.25rem;
  background:none;padding:0;width:auto;text-align:center;
}
.logo{height:72px;margin:0 auto;}   /* centers the favicon */

/* logo optional */
.logo{
  height:60px;
  margin-bottom:1.5rem;
  justify-content: center;
}

/* typography */
.site-name{font-size:2.75rem;font-weight:700;margin-bottom:.5rem}
.tagline{
  font-size:clamp(1rem,2.2vw,1.25rem); /* shrinks nicely on mobile */
  font-weight:500;
  margin-bottom:.25rem;                /* pulls business line closer */
}
.business-info p{
  font-size:clamp(.55rem,3.6vw,0.95rem); /* 0.75 rem on narrow phones, up to 0.95 rem on desktop */
  line-height:1.4;
  opacity:.9
}

/* ─── RESPONSIVE TWEAKS ─── */
@media(max-width:600px){
  .site-name{font-size:2.1rem}
  .tagline{font-size:1.05rem}
  .logo{height:48px}
   .hero{background-attachment:scroll;}
}

/* ─── SITE HEADER ─── */
.site-header{
  position:absolute;       /* sits over hero art */
  top:0; left:0; width:100%;
  display:flex; justify-content:center;
  padding:2rem 0; z-index:1001;
  background:transparent;
}

.site-title{
  font-size:clamp(2rem,4vw,3rem);
  font-weight:700; letter-spacing:.05em;
  animation:glow 6s ease-in-out infinite alternate;
}

/* ─── ANIMATIONS ─── */
@keyframes glow{
  0%  {text-shadow:0 0 4px var(--primary);}
  100%{text-shadow:0 0 22px var(--primary);}
}

.fade-up{
  opacity:0; transform:translateY(24px);
  animation:fadeUp .8s ease-out forwards;
}

@keyframes fadeUp{to{opacity:1;transform:none}}

/* ───── ABOUT & CONTACT SECTIONS ───── */
.about,.contact{
  padding:4rem 0;
  background:var(--surface);
  text-align:center;   /* now really centered */
}
/* center everything inside the section containers */
.about .container,
.contact .container{
 ;align-items:center;
}

.about p{margin-inline:auto}          /* centers the paragraph */

.about h2,.contact h2{font-size:2rem;margin-bottom:1.5rem}
.about p{max-width:700px;color:var(--muted)}

.contact-form{
  display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem;
  align-items:center;               /* ↔︎ centers inputs & button */
}
.contact-form input,
.contact-form textarea{
  width:min(500px,90%);              /* roomy but collapses on small screens */
  padding:1rem 1.2rem;
  background:#111;border:1px solid #2a2a2a;
  border-radius:6px;color:var(--text);resize:vertical
}
.contact-info{list-style:none;color:var(--muted);font-size:.95rem}

/* ───── FOOTER ───── */
.footer{background:#111;padding:1rem 0;text-align:center;font-size:.85rem;color:var(--muted)}
.footer-info{
  list-style:none;display:flex;gap:2rem;flex-wrap:wrap;
  justify-content:center;margin-top:.5rem;font-size:.9rem;
}
/* ───── RESPONSIVE ───── */
@media(max-width:900px){
  .hero{grid-template-columns:1fr;text-align:center}
  .hero-art{order:-1;margin-bottom:2rem}
}
@media(max-width:700px){
  #nav-toggle{display:flex}
  .nav-links{
    position:absolute;top:100%;right:0;background:var(--surface);
    flex-direction:column;width:200px;padding:1rem;
    transform:translateX(100%);opacity:0;pointer-events:none;
    transition:transform .3s ease, opacity .3s ease;
  }
  .nav-links.open{transform:translateX(0);opacity:1;pointer-events:auto}
  .nav-links a{padding:.5rem 0}
}