@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif !important;
}

:root {
  --bg-color: #000000;
  --text-color: #ededed;
  --main-color: #00abf0;
}

html { font-size: 62.5%; overflow-x: hidden; }
body { background: var(--bg-color); color: var(--text-color); font-family: 'Poppins', sans-serif !important; }

.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.background img { width: 100%; height: 100%; object-fit: cover; }

/* --- Header / Nav --- */
.blizzard-header {
  position: fixed;
  height: 60px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1600px;
  background: rgba(26, 28, 38, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  z-index: 1000;
  gap: 1.5rem;
}

.site-logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  color: #fff;
  white-space: nowrap;
}

.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.main-nav ul { list-style: none; display: flex; gap: 1rem; }
.main-nav li { position: relative; }
.main-nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ccc;
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: rgba(42, 45, 59, 0.7); color: #fff; }

section { padding: 10rem 2% 2rem; }

/* --- Hero (home) --- */
.center-section2 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 9%;
  background-image: url(https://blog.passeos.com/wp-content/uploads/2025/09/baniere-site.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.center-section2::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.center-section2 > * { position: relative; z-index: 2; }

.hero-content { display: flex; flex-direction: column; align-items: center; }

.hero-title {
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.hero-title-accent {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: var(--main-color);
}

.vision-heading { font-size: 2.1rem; font-weight: 500; text-align: center; max-width: 780px; line-height: 1.5; }

.hero-tags {
  position: absolute;
  bottom: 6rem;
  right: 4%;
  display: flex;
  gap: 4rem;
  z-index: 2;
  max-width: 60%;
}
.hero-tag { text-align: right; max-width: 260px; }
.hero-tag-title {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--main-color);
  margin-bottom: 0.6rem;
}
.hero-tag-desc { font-size: 1.3rem; line-height: 1.5; color: #ccc; }

/* --- Page hero (sub-pages) --- */
.page-hero {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14rem 9% 4rem;
  background-image: url(https://blog.passeos.com/wp-content/uploads/2025/09/baniere-site.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-title {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 4.4rem;
  margin-bottom: 1.5rem;
}
.page-lead { font-size: 1.8rem; max-width: 720px; color: #ccc; line-height: 1.6; }

/* --- Generic content sections --- */
.content-section { padding: 6rem 2%; max-width: 1100px; margin: 0 auto; }
.content-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.content-section p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.content-block { margin-bottom: 5rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* --- Team --- */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 4rem 0;
}
.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  text-align: center;
  min-width: 260px;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 171, 240, 0.1);
  border: 1px solid rgba(0, 171, 240, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 3.2rem;
  color: var(--main-color);
}
.team-name {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}
.team-role {
  font-size: 1.3rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.join-block { text-align: center; margin-top: 3rem; }
.join-text {
  font-size: 1.6rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}
.info-card i { font-size: 2.8rem; color: var(--main-color); margin-bottom: 1.2rem; display: block; }
.info-card h3 { font-size: 1.9rem; margin-bottom: 1rem; }
.info-card p { font-size: 1.4rem; color: #ccc; margin: 0; }

/* --- What We Craft (home teaser) --- */
.section-title { font-size: 3.4rem; font-weight: 700; text-align: center; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.7rem; color: #aaa; text-align: center; margin-bottom: 5rem; }

.craft-section { padding: 8rem 2% 6rem; }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.craft-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3.5rem 3rem;
}
.craft-number { display: block; font-size: 1.6rem; color: var(--main-color); font-weight: 700; margin-bottom: 1.5rem; }
.craft-card h3 { font-size: 2.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.craft-card p { font-size: 1.5rem; line-height: 1.6; color: #ccc; margin-bottom: 2rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}
.link-arrow i { font-size: 1.8rem; transition: transform 0.2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* --- Projects --- */
#proj .section-title, .projects-page .section-title { margin-bottom: 2rem; }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { border-color: rgba(255, 255, 255, 0.35); }
.filter-btn.active { background: var(--main-color); border-color: var(--main-color); color: #fff; }

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 5;
  background: rgba(0, 171, 240, 0.9);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.card-badge--trailer { background: rgba(255, 140, 0, 0.9); }

.grid-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px; max-width: 1300px; margin: 0 auto; }
.project-card { position: relative; text-align: center; overflow: visible; border-radius: 10px; }
.card-image { position: relative; width: 100%; height: 420px; overflow: hidden; border-radius: 5px; }
.card-image:hover { transition: transform 0.6s ease; transform: scale(1.03); z-index: 10; }
.card-image img, .card-image video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.card-image .hover-video { opacity: 0; transition: opacity 0.25s ease; }
.project-card:hover .card-image .hover-video { opacity: 1; }
.project-card:hover .card-image .default-image { opacity: 0; }

/* --- Process --- */
.process-section { padding: 8rem 2% 6rem; text-align: center; }
.process-eyebrow { font-size: 1.4rem; letter-spacing: 0.2rem; color: var(--main-color); margin-bottom: 1rem; text-transform: uppercase; }

.process-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; max-width: 1400px; margin: 5rem auto 0; }
.process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.process-card:hover { background: rgba(255, 255, 255, 0.06); }
.process-card.active { background: rgba(0, 171, 240, 0.08); border-color: var(--main-color); }
.process-oval {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.2rem 1.2rem;
}
.process-card-title { font-size: 1.5rem; font-weight: 700; line-height: 1.3; color: #fff; }

.process-timeline { position: relative; max-width: 1400px; margin: 3rem auto 0; padding: 0 1.5rem; }
.process-timeline-track { position: relative; display: flex; justify-content: space-between; height: 1px; background: rgba(255, 255, 255, 0.2); }
.process-tick { width: 1px; height: 10px; background: rgba(255, 255, 255, 0.3); transform: translateY(-4px); }
.process-marker {
  position: absolute; top: -5px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--main-color); transform: translateX(-50%); transition: left 0.3s ease;
}

.process-cta { margin: 6rem auto 0; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.process-cta-text { font-family: 'Playfair Display', serif !important; font-style: italic; font-weight: 600; font-size: 2rem; color: #ededed; text-align: center; }

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #EDEDED;
  background: rgba(26, 28, 38, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn-quote i { font-size: 1.9rem; }
.btn-quote:hover { background: rgba(42, 45, 59, 0.85); border-color: rgba(255, 255, 255, 0.2); }

.process-detail { max-width: 1000px; margin: 5rem auto 0; display: flex; gap: 3rem; text-align: left; }
.process-detail-number { font-family: 'Playfair Display', serif !important; font-style: italic; font-size: 2.4rem; color: var(--main-color); flex-shrink: 0; }
.process-detail-title { font-family: 'Playfair Display', serif !important; font-style: italic; font-weight: 600; font-size: 2.6rem; margin-bottom: 1.5rem; }
.process-detail-text { font-size: 1.6rem; line-height: 1.6; color: #ccc; max-width: 650px; }

/* --- Lang switch --- */
.lang-switch { display: flex; align-items: center; gap: 0.6rem; font-size: 1.4rem; }
.lang-btn { background: none; color: #999; font-weight: 600; cursor: pointer; padding: 0.3rem 0.2rem; }
.lang-btn.active { color: #fff; }
.lang-sep { color: #555; }

/* --- Footer --- */
.footer { width: 100%; padding: 4rem 0; color: var(--text-color); text-align: center; margin-top: auto; }
.footer-container { width: 100%; padding: 0 4rem; display: flex; flex-direction: column; gap: 2rem; align-items: center; justify-content: center; text-align: center; }
.footer-logo { font-size: 2.2rem; font-weight: 700; color: var(--main-color); }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-color); font-size: 1.4rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--main-color); }
.footer-socials a { font-size: 2.4rem; color: var(--main-color); margin: 0 1rem; transition: transform 0.3s ease; }
.footer-socials a:hover { transform: scale(1.2); }
.footer-copy { font-size: 1.2rem; color: #888; }

/* --- Nav CTA --- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #EDEDED;
  background: #060C11;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}
.nav-cta i { font-size: 1.9rem; }
.nav-cta:hover { background: #101723; }
.nav-cta:active { transform: translateY(0); }

@media screen and (max-width: 991px) {
  .craft-grid { grid-template-columns: 1fr; }
  .process-cards { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .grid-container { grid-template-columns: repeat(2, 1fr); }
  .hero-tags { position: static; max-width: 100%; flex-direction: column; align-items: center; gap: 2.5rem; margin-top: 3rem; }
  .hero-tag { text-align: center; max-width: 340px; }
}

@media screen and (max-width: 767px) {
  .center-section2, .page-hero { padding: 12rem 5% 4rem; }
  .hero-title { font-size: 4rem; }
  .hero-title-accent { font-size: 1.9rem; }
  .vision-heading { font-size: 1.8rem; }
  .page-title { font-size: 3rem; }
  .nav-cta { font-size: 1.3rem; padding: .75rem .95rem; }
  .lang-switch { font-size: 1.2rem; }
  .footer-links { flex-direction: column; gap: 1.2rem; }
  .footer-socials a { font-size: 2rem; }
  .footer-copy { font-size: 1.2rem; }
  .grid-container { grid-template-columns: 1fr; }
  .site-logo { font-size: 1.4rem; }
  .main-nav a { font-size: 1.3rem; padding: 0.6rem 0.7rem; }
}
