/* Unified Font */
body, h1, h2, h3, h4, h5, h6, input, textarea, select, button, a {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
}

/* Variables */
:root {
  --bg:#0b0b0b;
  --panel:#111;
  --muted:#a0a0a0;
  --gold:#d4af37;
  --white:#f8f8f8;
  --max-width:1150px;
  --header-h:64px;
  --container-padding:24px;
  --radius:8px;
}

/* Base */
* { box-sizing:border-box; }
html, body { height:100%; margin:0; background:var(--bg); color:var(--white); -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
.container { max-width:var(--max-width); margin:0 auto; padding:var(--container-padding); }

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(11,11,11,0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
  z-index: 90;
}

.brand {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
}

.nav-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  color: var(--white);
  font-weight: 500;
  opacity: 0.9;
}

.lang button {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.lang button.active {
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.cta {
  background: var(--gold);
  color: #0b0b0b;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 150;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 20px;
  transition: right 0.3s;
  z-index: 200;
}



.mobile-nav.open {
  right: 0;
}

/* Fix mobile nav links showing */
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  display: block;
}

.mobile-nav a {
  font-size: 1.1rem;
  display: block;
  padding: 6px 0;
}


.mobile-nav a {
  font-size: 1.1rem;
}

.mobile-nav .lang {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.close-nav {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
}

/* Page spacing */
main { padding-top: calc(var(--header-h) + 12px); }

/* Hero */
.hero {
  min-height:70vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  position:relative;
}
.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(11,11,11,0.6);
}
.hero-inner {
  position:relative;
  z-index:2;
  padding:36px var(--container-padding);
  max-width:1200px;
}
.kicker { color:var(--gold); font-weight:500; letter-spacing:.5px; margin-bottom:10px; }
h1 { font-size:2rem; margin:0 0 12px; color:var(--white); line-height:1.1; }
p.lead { max-width:700px; color:var(--muted); margin:0 0 18px; font-size:1rem; }
.hero-cta { display:inline-block; background:none; border:1px solid var(--gold); color:var(--gold); padding:8px 14px; border-radius:8px; font-weight:500; margin-right:10px; margin-top: 5px;}
.hero-cta.secondary { background:var(--gold); color:#0b0b0b; }

/* Sections */
section { padding:48px 0; }
h2.section-title { color:var(--gold); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; font-weight:500; }
.lead-quiet { color:var(--muted); max-width:760px; margin-bottom:16px; }

/* About */
.about-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:16px; }
.about-card {
  background: #111;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth animation */
}

.about-card:hover {
  transform: translateY(-5px) scale(1.03); /* lifts and slightly enlarges */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* adds depth */
}

.step:hover {
  transform: translateY(-5px) scale(1.03); /* lifts and slightly enlarges */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* adds depth */
}

.about-card h3 { margin:0 0 6px; font-weight:500; }
.about-card p { color:var(--muted); margin:0; font-size:.95rem; }

/* Portfolio */
.portfolio-wrapper-vertical { margin-top:10px; max-height:480px; overflow-y:auto; padding-right:6px; }
.portfolio-scroll-vertical { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.proj { position:relative; overflow:hidden; border-radius:var(--radius); height:200px; cursor:pointer; background:#0b0b0b; border:1px solid rgba(255,255,255,0.05); }
.proj img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.proj:hover img { transform:scale(1.03); }
.proj .meta { position:absolute; left:10px; bottom:10px; background:rgba(0,0,0,0.4); padding:6px 10px; border-radius:6px; font-weight:500; }

/* Process & Testimonials */
.process { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:10px; }
.step { background:#111; padding:14px; border-radius:var(--radius); text-align:center; border:1px solid rgba(255,255,255,0.05);   transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step h3 { margin:8px 0 6px; font-size:1rem; font-weight:500; }
.step p { color:var(--muted); font-size:.9rem; margin:0; }
.testi { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.testi .card { background:#111; padding:16px; border-radius:var(--radius); border-left:3px solid var(--gold); }

/* Contact */
.contact-panel { display:grid; grid-template-columns:1fr 380px; gap:20px; align-items:start; }
.contact-panel form { background:#0a0a0a; padding:20px; border-radius:var(--radius); }
label { display:block; margin-bottom:4px; color:var(--muted); font-size:.9rem; font-weight:500; }
input, textarea, select { width:100%; padding:10px; border-radius:6px; border:1px solid rgba(255,255,255,0.08); background:#111; color:var(--white); margin-bottom:10px; font-size:14px; font-weight:500; }
input::placeholder, textarea::placeholder { color:#7a7a7a; }
.submit { background:var(--gold); color:#0b0b0b; padding:10px 14px; border-radius:8px; border:none; font-weight:500; cursor:pointer; }

/* Footer */
footer { padding:24px 0; color:var(--muted); border-top:1px solid rgba(255,255,255,0.05); text-align:center; }

/* Scrollbar minimal */
.portfolio-wrapper-vertical::-webkit-scrollbar { width:6px; }
.portfolio-wrapper-vertical::-webkit-scrollbar-track { background:transparent; }
.portfolio-wrapper-vertical::-webkit-scrollbar-thumb { background:var(--gold); border-radius:6px; }

/* Responsive */
@media (max-width:1000px){
  .portfolio-scroll-vertical { grid-template-columns:repeat(2,1fr); }
  .process { grid-template-columns:repeat(2,1fr); }
  .about-grid { grid-template-columns:repeat(2,1fr); }
  .contact-panel { grid-template-columns:1fr; }
}
@media (max-width:640px){
  nav ul, .lang { display:none; }
  .hamburger { display:flex; }
  .hero-inner { padding:24px var(--container-padding); }
  h1 { font-size:1.6rem; }
  .about-grid { grid-template-columns:1fr; }
  .portfolio-scroll-vertical { grid-template-columns:1fr; }
  .process { grid-template-columns:1fr; }
  .hero { min-height:55vh; }
  .container { padding:16px; }
}
@media (max-width:420px){
  .brand { font-size:1rem; }
  .cta { padding:6px 12px;}
  .mobile-nav { width:80%; }
}

/* Accessibility */
.sr-only { position:absolute !important; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: var(--header-h);
  background: rgba(11,11,11,0.85);
  display: flex;
  align-items: center;
  z-index: 90;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}


@media (max-width: 640px) {
  .nav-right > .cta {
    display: none; /* hide CTA on mobile header */
  }

  nav ul, .lang {
    display: none; /* keep hamburger visible */
  }

  .hamburger {
    display: flex;
  }
}


#mobileNav .lang {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}


/* All clickable "button-like" elements */
button,
a.cta,
a.submit,
a.hero-cta,
.lang button {
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
button:hover,
a.cta:hover,
a.submit:hover,
a.hero-cta:hover,
.lang button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  opacity: 0.9;
}

/* Active/click effect */
button:active,
a.cta:active,
a.submit:active,
a.hero-cta:active,
.lang button:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

