/* =========================
FORCED LIGHT MODE & VARIABLES
========================= */
:root {
  --bg-color: #FFFFFF; 
  --text-main: #111111; 
  --text-light: #555555;
  --brand-blue: #3A5CCC; 
  --brand-green: #00FF88; 
  --brand-yellow: #FFB800; 
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.05);
}

/* ANTI-DARK MODE OVERRIDE */
html, body {
  background-color: var(--bg-color) !important;
  color: var(--text-main) !important;
  color-scheme: light !important; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

section { padding: 80px 20px; position: relative; z-index: 2; }
a { text-decoration: none; color: var(--text-main); transition: all 0.3s ease; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.04em; }

/* =========================
2D CANVAS BACKGROUND
========================= */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* =========================
AESTHETIC FLOATING DOCK MENU
========================= */
.s-header {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  width: max-content;
  max-width: 95%;
}

.s-header__menu-links {
  display: flex;
  list-style: none;
  gap: 5px;
  justify-content: center;
}

.s-header__menu-links li a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.s-header__menu-links li a:hover { 
  background: #FFFFFF; 
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* =========================
AESTHETIC CARDS & TYPOGRAPHY
========================= */
.text-pretitle {
  background: #f0f0f0;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.aesthetic-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aesthetic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.aesthetic-card.no-border { box-shadow: none; border: none; background: transparent; }

.accent-bg { 
  background: var(--brand-blue); 
  color: #fff; 
}
.accent-bg h2, .accent-bg a, .accent-bg p { color: #fff; }

/* =========================
INTRO SECTION
========================= */
.hero-section { min-height: 100vh; display: flex; align-items: center; }

.s-intro__content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.s-intro__content-text { flex: 1.2; }
.s-intro__content-title { font-size: 4.5rem; line-height: 1.05; margin-bottom: 20px; }
.s-intro__content-media { flex: 1; display: flex; justify-content: flex-end; }

.aesthetic-frame {
  background: var(--brand-yellow);
  padding: 10px;
  border-radius: 30px;
  transform: rotate(3deg);
  transition: transform 0.4s ease;
}
.aesthetic-frame:hover { transform: rotate(0deg); }

.hero-video {
  width: 100%;
  max-width: 450px;
  display: block;
  border-radius: 24px;
}

.s-intro__scroll-down { margin-top: 60px; text-align: center; }

/* =========================
PROJECTS & GRID
========================= */
.s-footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.link-list li { margin-bottom: 12px; list-style: none; color: var(--text-light); }

.grid-list-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.list-items__item h3 { margin-bottom: 15px; font-size: 1.5rem; }

.img-wrapper {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.grid-list-items__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-list-items__item:hover img { transform: scale(1.05); }

.sewer-img { width: 140px !important; object-fit: contain !important; margin: 0 auto 20px; display: block; }

/* =========================
CONTACT
========================= */
.contact-container { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-info h2 { font-size: 3.5rem; margin-bottom: 20px; }
.contact-info p a { font-weight: 600; font-size: 1.2rem; }

.social-links { margin: 30px 0; display: flex; justify-content: center; gap: 20px; }
.social-icon img { width: 32px; height: 32px; transition: transform 0.3s; }
.social-icon:hover img { transform: translateY(-4px) scale(1.1); }

.modern-btn {
  display: inline-block;
  background: #FFF;
  color: var(--brand-blue) !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.modern-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.copyright { margin-top: 20px; font-size: 0.85rem; opacity: 0.8; }

/* =========================
MOBILE RESPONSIVE
========================= */
@media(max-width: 900px) {
  .s-intro__content-inner { flex-direction: column; text-align: center; margin-top: 40px; }
  .s-intro__content-title { font-size: 3rem; }
  .s-intro__content-media { justify-content: center; width: 100%; }
  .s-header { padding: 5px; width: 90%; }
  .s-header__menu-links li a { padding: 10px 15px; font-size: 12px; }
  .aesthetic-card { padding: 30px 20px; }
  section { padding: 60px 15px; }
}

/* =========================
ANIMATIONS 
========================= */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0px); } }
.float-anim { animation: float 3s ease-in-out infinite; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }