/* ================= GLOBAL FIX ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== GLOBAL BODY FIX ===== */
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  overflow-x: hidden; /* stops side scrolling */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ===== FLOATING NAV (CENTERED PILL - SMALLER PADDING) ===== */
.museum-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  max-width: 900px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 34px;
  box-shadow: 0px 5px 14px rgba(0,0,0,0.05),  0 0 12px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.07);
  z-index: 1000;
}

@keyframes navSlideIn {
  0% { opacity: 0; transform: translate(-50%, -8px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}

/* Subtle pill tilt hover */
.museum-nav:hover {
  background: rgba(255,255,255,0.72);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.08),
    0 0 20px rgba(0,0,0,0.12); /* soft glow */
  transition: 0.3s ease;
  transform: translateX(-50%) perspective(800px) rotateX(3.5deg);
}

/* ===== NAV ICON (JUST AN ICON LOGO NOW) ===== */
.logo-icon i {
  font-size: 1.18rem;
  color: #000;
  opacity: 0.82;
  cursor: pointer;
  display: inline-flex;
  transition: 0.35s cubic-bezier(.34,1.56,.64,1);
}

/* Icon hover animation */
.logo-icon i:hover {
  opacity: 1;
  transform: scale(1.22) rotate(8deg) translateY(-2px);
  text-shadow: 0 0 14px rgba(0,0,0,0.28);
  animation: iconBounce 0.6s ease infinite alternate;
}

@keyframes iconBounce {
  0% { transform: scale(1.22) rotate(6deg) translateY(3px); }
  100% { transform: scale(1.22) rotate(6deg) translateY(-3px); }
}

/* ===== NAV LINKS ===== */
.museum-nav a {
  text-decoration: none;
  font-size: 0.90rem;
  font-weight: 400;
  letter-spacing: 0.25px;
  color: #000;
  opacity: 0.74;
  transition: 0.25s ease;
  position: relative;
}

/* Underline grow from center */
.museum-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0%;
  height: 1.4px;
  background: #000;
  opacity: 0.66;
  transform: translateX(-50%);
  transition: 0.34s ease;
  border-radius: 3px;
}

.museum-nav a:hover::after {
  width: 100%;
}

/* Hover link fade */
.museum-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Hide links on mobile */
@media (max-width: 820px) {
  .museum-nav a { display: none; }
  .museum-nav:hover { transform: translate(-50%,0); rotateX(0); } /* disable tilt in mobile */
}

/* Pressed animation when clicking */
.museum-nav a.nav-pressed {
  transform: scale(0.88);
  opacity: 0.6;
  transition: 0.15s ease;
}

/* Active section highlight */
.museum-nav a.active-nav {
  opacity: 1;
  font-weight: 500;
}

.museum-nav a.active-nav::after {
  width: 100%;
  opacity: 0.9;
}

/* Optional: active section glow */
.museum-nav a.active-nav {
  text-shadow: 0 0 10px rgba(0,0,0,0.25);
}



/* ================= HERO SECTION ================= */
.hero {
  width: 100%;
  height: 100vh;
  padding: 0 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #fefefe 35%, #e8ecef 100%);
  overflow-x: hidden; /* ✅ prevents side scroll */
  position: relative;
}

/* Hero text container */
.hero-content {
  max-width: 600px;
  z-index: 3;
}

/* Main headline (name + dot alignment wrapper) */
.hero-hello {
  display: inline-flex;
  align-items: baseline; /* ✅ keeps dot aligned */
  gap: 6px;
  font-family: "Playfair Display", serif;
  font-size: 5.0rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
}

/* Name reveals letter by letter */
.typed-name {
  display: inline-block;
  font-size: inherit;
  font-weight: 700;
  color: #000;
  clip-path: inset(0 100% 0 0);
  animation: typeReveal 1.6s steps(8) forwards;
}

/* Blinking dot — clean and noticeable */
.dot {
  font-size: inherit; /* keep same size base */
  color: #6e6e73;
  animation: blinkDot 0.7s infinite alternate ease-in-out;
  pointer-events: none;
}

/* Sub paragraph text typing */
.hero-content p {
  font-size: 1.15rem;
  font-weight: 350;
  color: #555;
  letter-spacing: 0.3px;
  opacity: 0;
  clip-path: inset(0 120% 0 0);
  animation: typeReveal 2.4s steps(50) forwards 1.6s, fadeText 0.6s forwards 1.6s;
  transition: 0.25s;
}

/* Keyframes for typing letters */
@keyframes typeReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* Dot blinking animation */
@keyframes blinkDot {
  from { opacity: 0.25; }
  to   { opacity: 1; }
}

/* Paragraph fade animation */
@keyframes fadeText {
  to { opacity: 0.9; }
}

/* Optional subtle fade in */
@keyframes fadeIn { to { opacity: 1; } }

/* Portrait image wrapper */
.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  max-width: 520px;
  z-index: 2;
}

/* Portrait image */
.hero-portrait img {
  width: 520px; /* ✅ BIGGER size */
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  display: block;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.3s ease forwards;
  filter: none; /* full color */
  box-shadow: 0 24px 44px rgba(0,0,0,0.18);
}

/* Clean shadow already below image so it feels floating */
.hero-portrait::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 70%;
  height: 18px;
  background: rgba(0,0,0,0.16);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(14px);
  z-index: 1;
  pointer-events: none;
}

/* Hover micro-interaction for text */
.hero-content h1:hover,
.hero-content p:hover {
  opacity: 1;
  transform: translateY(-2px);
  transition: 0.3s ease;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 50px;
    padding-top: 120px;
  }

  .hero-hello {
    font-size: 3.5rem;
    justify-content: center;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-portrait {
    width: 80%;
    max-width: 300px;
  }

  .hero-portrait img {
    width: 85%;
    max-width: 310px;
  }

  .hero-portrait::after {
    bottom: -20px;
    width: 66%;
    height: 14px;
  }
}

.hero-portrait::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  width: 60%;
  height: 14px;
  background: rgba(0,0,0,0.18);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(12px);
  z-index: 1;
}






/* ======================= ABOUT SECTION ======================= */
#about {
  width: 100%;
  min-height: 100vh;
  padding: 180px 9%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;

}

.about-wrapper {
  max-width: 1300px;
  width: 100%;
}

/* --- TOP ROW: 3-COLUMN LAYOUT (like Olivia) --- */
.about-top {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.2fr;  /* left / center / right */
  gap: 40px;
  align-items: center;
}

/* LEFT COLUMN (small text + small image at bottom left) */
.about-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.about-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0eeee;
  margin-bottom: 14px;
}

.about-side-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #eeeded;
  max-width: 220px;
}

.about-left-img {
  margin-top: 40px;
  width: 210px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.about-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER COLUMN (Hi there / I’m Dzey / paragraphs) */
.about-center {
  position: relative;
}

/* small image on top (like the paper photo in inspiration) */
.about-top-img {
  position: absolute;
  top: -80px;
  left: 40px;
  width: 120px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.about-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* heading styles to mimic Olivia layout in B&W */
.about-script {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.about-name {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #e7e7e7;
  margin: 0 0 18px 0;
  margin-top: 110px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0dede;
  max-width: 480px;
}

/* RIGHT COLUMN (big vertical image on the right) */
.about-right {
  display: flex;
  justify-content: flex-end;
}

.about-main-img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0,0,0,0.18);
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= INFO GRID ================= */

.info-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* ================= INFO CARD ================= */

.info-card {
  background: #000;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Hover */
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

/* ================= TITLES ================= */

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= LIST ================= */

.info-card ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.info-card li {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 0.93rem;
  color: #e6e6e6;
  position: relative;
  padding-left: 18px;
}

/* custom bullet */
.info-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #aaa;
}

/* Nested list */
.info-card li ul {
  margin-top: 8px;
  padding-left: 14px;
}

.info-card li ul li {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* ================= EDUCATION ================= */

.education-list strong {
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}




/* --- GENERAL WORKS STYLING --- */
#works {
  width: 100%;
  padding: 110px 10%;
  background: #F3F6F8;
}

.worksection-title {
  text-align: center;
  font-size: 2.4rem;
  color: #000000;
  margin-bottom: 20px;
}

.works-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 300;
}

.works-category {
  font-size: 2rem;
  margin: 60px 0 20px;
  font-weight: 600;
  color: #000000;
  border-bottom: 2px solid #C9D6DF;
  padding-bottom: 6px;
}

/* ============================================================
   AUTO CAD – CLEAN & CONSISTENT CARD LAYOUT
   ============================================================ */

.autocad-swipe {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 8%;
  -webkit-overflow-scrolling: touch;
}

.autocad-swipe::-webkit-scrollbar {
  display: none;
}

.cad-card {
  flex: 0 0 340px;          /* consistent card width */
  height: 420px;            /* FIXED HEIGHT → no stretching */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;

  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.cad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.cad-card img {
  width: 100%;
  height: 100%;             /* fill entire card */
  object-fit: cover;        /* CUTS nicely instead of stretching */
  border-radius: 20px;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  border-radius: 20px;
}

.cad-card:hover .overlay {
  opacity: 1;
}

.overlay p {
  color: white;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 12px;
}
/* ============================================================
   VIDEO EDITING — PREMIUM SHOWCASE LAYOUT (UPGRADED)
   ============================================================ */

#video-section {
  width: 100%;
  padding: 80px 8% 60px;
  background: #fff;
  color: #000;
  font-family: "Inter", sans-serif;
}

/* HEADER */
.video-header {
  margin-bottom: 40px;
  text-align: left;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 580px;
}

/* SLIDER */
.video-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d3d3d3 transparent;
}

/* Scrollbar (Chrome / Edge) */
.video-slider::-webkit-scrollbar {
  height: 8px;
}
.video-slider::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 10px;
}

/* CARD */
.video-card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #000;
  transition: filter 0.3s ease;
}

.video-card:hover video {
  filter: brightness(0.9);
}

/* TAG */
.video-tag {
  display: inline-block;
  margin: 14px 16px 6px;
  padding: 5px 14px;
  font-size: 0.75rem;
  background: #f4f4f4;
  color: #555;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

/* CAPTION */
.video-caption {
  padding: 0 16px 18px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.35;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.3rem;
  }

  .video-card {
    flex: 0 0 75%;
  }

  .video-card video {
    height: 170px;
  }
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  background: #000;
}




/* ===== GRAPHIC DESIGN MASONRY ===== */
.masonry-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  columns: 3 280px;
  column-gap: 22px;
  padding-bottom: 80px; /* spacing for bottom aesthetic breathing */
}

/* Masonry Card */
.masonry-item {
  break-inside: avoid;
  position: relative;
  border-radius: 20px;
  margin-bottom: 22px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;

  /* light clean shadow for Pinterest card feel */
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

/* Keep your images colored, no grayscale */
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transition: 0.4s ease;
}

/* Subtle spice hover lift */
.masonry-item:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.92);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
  transition: 0.28s ease;
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.overlay p {
  background: rgba(0,0,0,0.28);
  color: #fff;
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0.97;
}

/* Reveal animation hooks */
.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease-out;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   WEB DESIGN — SHOWCASE GRID
============================================================ */

.webshowcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
  margin-top: 25px;
  padding: 0 20px;
}

/* CARD */
.web-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}

.web-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.web-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  transition: transform .4s ease;
}

.web-card:hover img {
  transform: scale(1.04);
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .35s ease;
}

.web-card:hover .overlay {
  opacity: 1;
}

.overlay p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin: 0;
}


/* ============================================================
   SMOOTH REVEAL ANIMATION
   ============================================================ */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ===================== TOOLS SECTION ===================== */
#tools {
  position: relative;
  padding: 110px 7% 100px;
  background: #0b0b0b; /* Pure black base */
  overflow: hidden;
  text-align: center;
}

/* Soft grayscale glow background */
.tools-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.06), transparent 60%);
  filter: blur(90px);
  opacity: .5;
  animation: bgDrift 12s ease-in-out infinite alternate;
}
@keyframes bgDrift { 
  to { transform: translateY(-60px) translateX(60px); } 
}

/* Title */
.tools-title {
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fafafa; /* White */
  letter-spacing: 1px;
}

/* Title underline */
.tools-title::after {
  content: "";
  height: 3px;
  width: 160px;
  background: linear-gradient(90deg, #f2f2f2, #cfcfcf);
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
  animation: underlineGrow 1s forwards ease-out;
}
@keyframes underlineGrow {
  from { width: 0; }
  to { width: 160px; }
}

/* Intro paragraph */
.tools-intro {
  max-width: 780px;
  margin: 0 auto 55px auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #d9d9d9; /* soft white */
}

/* Legend */
.tools-legend {
  text-align: center;
  max-width: 750px;
  margin: -20px auto 45px auto;
  font-size: 0.95rem;
  color: #c8c8c8;
  opacity: 0.75;
  font-style: italic;
}

/* ================= GRID ================= */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* ================= TOOL CARD ================= */
.tool {
  background: #121212;       /* Dark card */
  border: 1px solid #2a2a2a; /* Subtle border */
  padding: 18px 14px;
  border-radius: 16px;
  width: 100%;
  max-width: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  transform: translateY(40px);
  opacity: 0;
  transition: .45s ease;
}

/* Reveal */
.tool.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect — strong but clean */
.tool:hover {
  transform: translateY(-12px) scale(1.07);
  border-color: #ffffff33;
  box-shadow:
    0 18px 45px rgba(255,255,255,0.07),
    0 0 22px rgba(255,255,255,0.15);
}

/* Tool icon — ORIGINAL COLORS ONLY */
.tool img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: none !important; /* Ensures no grayscale/brightness applied */
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  50% { transform: translateY(-6px); }
}

/* Tool name */
.tool span {
  font-size: .95rem;
  font-weight: 500;
  color: #e6e6e6;
  transition: .3s ease;
}
.tool:hover span {
  color: #ffffff;
  font-weight: 600;
}

/* Years experience */
.tool .years {
  font-size: 0.85rem;
  color: #b5b5b5;
}

/* ================= SKILL BAR ================= */
.skill-bar {
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 5px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #fff, #bfbfbf);
  width: 0%;
  border-radius: 5px;
  transition: width 1.3s cubic-bezier(.4,0,.2,1);
}

.tool.reveal-active .skill-fill {
  width: var(--level);
}

/* Responsive */
@media (max-width: 768px) {
  .tools-title { font-size: 2.3rem; }
  .tools-intro { font-size: 1rem; }
}



/* ===================== CONTACT SECTION ===================== */

#contact {
  width: 100%;
  padding: 120px 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 60%, #f2f2f2 100%);
  text-align: center;
  overflow-x: hidden;
  position: relative;
}

#contact .section-title {
  font-size: 3.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
  opacity: 0;
  animation: connectReveal 1s ease forwards 0.2s;
}

@keyframes connectReveal {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes textSlideUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-text {
  max-width: 620px;
  font-size: 1.12rem;
  font-weight: 300;
  color: #555;
  opacity: 0;
  transform: translateY(15px);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  margin-bottom: 38px;
  animation: textSlideUp 1.2s ease forwards 0.6s;
}

.contact-details {
  font-size: 1.05rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 42px;
  opacity: 0;
  animation: textSlideUp 1.2s ease forwards 0.9s;
}

.contact-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: textSlideUp 1.4s ease forwards 1.2s;
}

.contact-links a {
  text-decoration: none;
  font-size: 1rem;
  color: #000;
  background: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.09);
  box-shadow: 0 5px 14px rgba(0,0,0,0.07);
  transition: 0.28s ease;
}

.contact-links a:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.11);
}

.contact-links i {
  font-size: 1.14rem;
  transition: 0.25s;
}

.contact-links a:hover i {
  animation: iconPulse 0.45s ease;
}

@keyframes iconPulse {
  50% { transform: scale(1.34); }
}

/* MOBILE CONTACT */
@media (max-width: 900px) {
  #contact { padding-top: 160px; height: auto; }
  #contact .section-title { font-size: 2.3rem; }
  .contact-text { font-size: 1rem; }
  .contact-links a { padding: 10px 18px; }
}

/* ===================== PREMIUM FOOTER ===================== */

.mega-footer {
  width: 100%;
  padding: 70px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.mega-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: 300px;
  animation: floatBG 12s infinite alternate ease-in-out;
}

@keyframes floatBG {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-20px) scale(1.05); }
}

.footer-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 30px;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: 0.34s ease;
  position: relative;
}

.social-icon:hover {
  transform: translateY(-7px) scale(1.12);
}

.social-icon::after {
  content: attr(data-tip);
  position: absolute;
  bottom: -32px;
  opacity: 0;
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 0.7rem;
  border-radius: 6px;
  transition: 0.25s ease;
}

.social-icon:hover::after {
  opacity: 1;
  transform: translateY(0);
}



/* Simple Footer – clean and stable */
.simple-footer {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  background: #000000;
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.simple-footer p {
  margin: 0;
  letter-spacing: 0.3px;
}

