/* ============================================================
   SAAS DARK THEME — black base, purple/indigo accent, glow + glass
   Change tokens here and the whole site updates.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --bg: #08080d;
  --bg-elevated: #121220;
  --bg-glass: rgba(24, 22, 42, 0.55);
  --line: #2a2740;
  --line-bright: #3d3763;
  --text: #f3f1fb;
  --text-dim: #9d98b8;

  --accent: #a855f7;       /* violet */
  --accent-2: #6366f1;     /* indigo */
  --accent-3: #ec4899;     /* pink, used sparingly in gradients */
  --accent-soft: rgba(168, 85, 247, 0.16);
  --glow: rgba(139, 92, 246, 0.45);

  --gradient: linear-gradient(120deg, var(--accent-2), var(--accent), var(--accent-3));

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius: 16px;
  --radius-sm: 10px;
}

/* GENERAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

/* ambient glow blobs, fixed behind all content */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}
body::before {
  top: -200px;
  left: -160px;
  background: var(--accent-2);
}
body::after {
  bottom: -220px;
  right: -180px;
  background: var(--accent);
}

/* faint dot-grid, common SaaS texture */
.dot-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

p {
  color: var(--text-dim);
}

a,
.btn {
  transition: all 250ms ease;
}

/* DESKTOP NAV */

nav,
.nav-links {
  display: flex;
}

nav {
  justify-content: space-around;
  align-items: center;
  height: 12vh;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 13, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-links {
  gap: 0.5rem;
  list-style: none;
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.nav-links li a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  display: inline-block;
}

.nav-links li a:hover {
  background: var(--accent-soft);
  color: var(--text);
  text-decoration: none;
}

a {
  color: var(--text-dim);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

.logo:hover {
  cursor: default;
}

/* HAMBURGER MENU */

#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--text);
  transition: all 0.3s ease-in-out;
}

.menu-links {
  position: absolute;
  top: 130%;
  right: 0;
  background-color: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.menu-links a {
  display: block;
  padding: 12px 24px;
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.menu-links a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
  transform: none;
  opacity: 1;
}

/* SECTIONS */

section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  box-sizing: border-box;
  min-height: fit-content;
  border-top: 1px solid var(--line);
}

#profile {
  border-top: none;
}

.section-container {
  display: flex;
}

/* SECTION LABELS / TITLES */

.section__text__p1 {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: var(--accent-soft);
  margin: 0 auto;
}

.section__text__p2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-weight: 500;
}

.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
  margin: 0.6rem 0 1.3rem;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* PROFILE SECTION */

#profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: 92vh;
  position: relative;
}

.section__pic-container {
  display: flex;
  aspect-ratio: 1 / 1;
  height: 380px;
  width: 380px;
  margin: auto 0;
  position: relative;
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--gradient);
}

.section__pic-container img {
  --pic-zoom: 1.35; /* increase to crop more of the empty background out, decrease if the subject gets cropped too tight */
  border-radius: 50;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  transform: scale(var(--pic-zoom));
  transform-origin: center;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 500;
}

.section__text__p1:first-child {
  margin-bottom: 1rem;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

/* ICONS */

.icon {
  cursor: pointer;
  height: 2rem;
}


#socials-container {
  padding: 0.5rem;
}

#socials-container .icon {
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--bg-glass);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#socials-container .icon:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 8px 20px -4px var(--glow);
  border-color: transparent;
}

#socials-container .icon:active {
  transform: translateY(-2px) scale(1.05);
}

#socials-container .icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #ff5ecb, #7b5cff); /* match your Contact Info button gradient */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon--instagram {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="2.5" y="2.5" width="19" height="19" rx="5" fill="none" stroke="black" stroke-width="2"/><circle cx="12" cy="12" r="4.5" fill="none" stroke="black" stroke-width="2"/><circle cx="17.4" cy="6.6" r="1.3" fill="black"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="2.5" y="2.5" width="19" height="19" rx="5" fill="none" stroke="black" stroke-width="2"/><circle cx="12" cy="12" r="4.5" fill="none" stroke="black" stroke-width="2"/><circle cx="17.4" cy="6.6" r="1.3" fill="black"/></svg>');
}
.icon--facebook {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9.5" fill="none" stroke="black" stroke-width="2"/><path d="M14 8.2h-1.4c-.7 0-.9.3-.9.9V11h2.3l-.3 2.3h-2v5.4H9.5v-5.4H8V11h1.5V8.9c0-1.8 1.1-2.9 2.8-2.9H14z" fill="black"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9.5" fill="none" stroke="black" stroke-width="2"/><path d="M14 8.2h-1.4c-.7 0-.9.3-.9.9V11h2.3l-.3 2.3h-2v5.4H9.5v-5.4H8V11h1.5V8.9c0-1.8 1.1-2.9 2.8-2.9H14z" fill="black"/></svg>');
}
.icon--whatsapp {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M493.4 24.6l-104-24c-11.8-2.7-24 3.9-28.1 15.3l-48 112c-3.8 8.8-1.1 19.1 6.5 25l60.5 49.6c-35.9 74.9-96.6 135.7-171.4 171.4l-49.6-60.5c-5.9-7.6-16.2-10.3-25-6.5l-112 48c-11.4 4.1-18 16.3-15.3 28.1l24 104c2.6 11.1 12.5 19 24 19 251.3 0 448-197.9 448-448 0-11.5-7.9-21.4-19-24z" fill="black"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M493.4 24.6l-104-24c-11.8-2.7-24 3.9-28.1 15.3l-48 112c-3.8 8.8-1.1 19.1 6.5 25l60.5 49.6c-35.9 74.9-96.6 135.7-171.4 171.4l-49.6-60.5c-5.9-7.6-16.2-10.3-25-6.5l-112 48c-11.4 4.1-18 16.3-15.3 28.1l24 104c2.6 11.1 12.5 19 24 19 251.3 0 448-197.9 448-448 0-11.5-7.9-21.4-19-24z" fill="black"/></svg>');
}


/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
  padding: 0.95rem 1.7rem;
  width: auto;
  min-width: 8rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -6px 12px -6px rgba(255, 255, 255, 0.08),
    0 10px 30px -12px rgba(0, 0, 0, 0.6);
}

/* glossy top sheen, sits above the blur, below the text */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0.7;
  pointer-events: none;
}

/* soft light sweep on hover, like light catching curved glass */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 550ms ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 130%;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-color-1 {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(99, 102, 241, 0.35));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -6px 14px -6px rgba(168, 85, 247, 0.35),
    0 12px 34px -10px var(--glow);
}

.btn-color-1:hover {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -6px 16px -6px rgba(168, 85, 247, 0.45),
    0 16px 40px -8px var(--glow);
}

.btn-color-2 {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-color-2:hover {
  border-color: rgba(168, 85, 247, 0.5);
  color: var(--accent);
  background: rgba(168, 85, 247, 0.12);
}

/* ABOUT SECTION */

#about {
  position: relative;
}

#about .section__pic-container {
  margin: 0 auto 2rem;
}

.about-containers {
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.about-details-container {
  justify-content: center;
  flex-direction: column;
}

.about-containers,
.about-details-container {
  display: flex;
}

.section__pic-container{
    border:0.25px solid #9D4EDD;
    background:#1A1633;

    box-shadow:
        0 0 8px #9D4EDD,
        0 0 18px rgba(157,78,221,.8),
        0 0 40px rgba(157,78,221,.5),
        inset 0 0 8px rgba(157,78,221,.3);

}.about-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}

.icon--experience,
.icon--education,
.contact-icon.icon--whatsapp {
  background: linear-gradient(135deg, #ff5ecb, #7b5cff);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon--experience {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6V5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1h3a2 2 0 0 1 2 2v2H4V8a2 2 0 0 1 2-2h3zm2-1v1h2V5h-2zM4 11h16v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-7zm7 2v2h2v-2h-2z" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6V5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1h3a2 2 0 0 1 2 2v2H4V8a2 2 0 0 1 2-2h3zm2-1v1h2V5h-2zM4 11h16v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-7zm7 2v2h2v-2h-2z" fill="black"/></svg>');
  width: 1.4rem; height: 1.4rem;
}
.icon--education {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3l10 5-10 5L2 8l10-5zm-6 8.2v4.3c0 1.5 2.7 3.5 6 3.5s6-2 6-3.5v-4.3l-6 3-6-3zM20 9.5v6.5" stroke="black" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3l10 5-10 5L2 8l10-5zm-6 8.2v4.3c0 1.5 2.7 3.5 6 3.5s6-2 6-3.5v-4.3l-6 3-6-3zM20 9.5v6.5" stroke="black" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 1.4rem; height: 1.4rem;
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 90px;
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.arrow {
  position: absolute;
  right: -5rem;
  bottom: 2.5rem;
  opacity: 0.5;
  filter: invert(0.95) brightness(1.1);
}

.arrow:hover {
  opacity: 1;
}

.details-container {
   display: flex;
    flex-direction: column;
  align-items: center;   /* Centers icon and text */
  justify-content: center;
  text-align: center;
  padding: 1.75rem;
  flex: 1;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.25s;
}

.details-container:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px -12px var(--glow);
  transform: translateY(-4px);
}

.details-container h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  margin: 0.7rem 0 0.4rem;
}

.section-container {
  gap: 4rem;
  height: 80%;
}

/* EXPERIENCE SECTION */

#experience {
  position: relative;
  height: fit-content;
  padding-bottom: 6rem;
}

.experience-sub-title {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.experience-details-container {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  min-height: fit-content;
}

.experience-details-container .details-container {
  text-align: left;
  padding: 2.2rem 2rem 2.6rem;
}

/* skill dashboard grid — fills the card with proficiency rings */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 1rem;
  margin-top: 2rem;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
}

.skill-ring {
  --pct: 50;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-2) 0%,
    var(--accent) calc(var(--pct) * 1%),
    var(--line) calc(var(--pct) * 1%)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 1px var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.skill:hover .skill-ring {
  transform: scale(1.06);
  box-shadow: 0 0 26px -4px var(--glow);
}

.skill-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--bg-elevated);
}

.skill-ring span {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.skill h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.skill p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

/* PROJECTS SECTION */

#projects {
  position: relative;
}

.color-container {
  border-color: var(--line);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.article-container {
  display: flex;
  justify-content: center;
}

.project-img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.project-title {
  margin: 1rem;
  color: var(--text);
  font-family: var(--font-display);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 1rem 1.25rem;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: var(--accent-soft);
}

.project-btn {
  color: var(--text);
  border-color: var(--line-bright);
}

.color-container .btn-container {
  margin-top: auto;
  padding-bottom: 1.75rem;
} 

/* SHOWREEL SECTION */

#reel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reel-container {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 20px 60px -20px var(--glow);
}

.reel-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--bg-elevated);
}

.reel-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1.2rem;
  max-width: 480px;
}

video.project-img {
  background: var(--bg);
}

/* REVIEWS SECTION */

#reviews {
  position: relative;
}

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

.quote-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: all 0.25s;
}

.quote-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px var(--glow);
}

.quote-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.quote-who b {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.quote-who span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
}

/* CONTACT */

#contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 70vh;
}

.contact-info-upper-container {
  display: flex;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  margin: 2rem auto;
  padding: 0.5rem;
  box-shadow: 0 20px 60px -24px var(--glow);
}

.contact-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem 1.5rem;
}

.contact-info-container p {
  font-size: 1.05rem;
}

.contact-info-container a:hover {
  color: var(--accent);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #b4679b);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-icon:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}

/* Email icon */
.icon--email::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: rgb(19, 18, 18);
  -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTIwIDRINGMtMS4xIDAtMS45OS45LTEuOTkgMkwyIDE4YzAgMS4xLjkgMiAyIDJoMTZjMS4xIDAgMi0uOSAyLTJWNmMwLTEuMS0uOS0yLTItMnptMCA0bC04IDUtOC01VjZsOCA1IDgtNXYyeiIvPjwvc3ZnPg==');
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTIwIDRINGMtMS4xIDAtMS45OS45LTEuOTkgMkwyIDE4YzAgMS4xLjkgMiAyIDJoMTZjMS4xIDAgMi0uOSAyLTJWNmMwLTEuMS0uOS0yLTItMnptMCA0bC04IDUtOC01VjZsOCA1IDgtNXYyeiIvPjwvc3ZnPg==');
}
/* Phone / contact icon */
.icon--whatsapp::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: rgb(19, 18, 18);
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M493.4 24.6l-104-24c-11.8-2.7-24 3.9-28.1 15.3l-48 112c-3.8 8.8-1.1 19.1 6.5 25l60.5 49.6c-35.9 74.9-96.6 135.7-171.4 171.4l-49.6-60.5c-5.9-7.6-16.2-10.3-25-6.5l-112 48c-11.4 4.1-18 16.3-15.3 28.1l24 104c2.6 11.1 12.5 19 24 19 251.3 0 448-197.9 448-448 0-11.5-7.9-21.4-19-24z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M493.4 24.6l-104-24c-11.8-2.7-24 3.9-28.1 15.3l-48 112c-3.8 8.8-1.1 19.1 6.5 25l60.5 49.6c-35.9 74.9-96.6 135.7-171.4 171.4l-49.6-60.5c-5.9-7.6-16.2-10.3-25-6.5l-112 48c-11.4 4.1-18 16.3-15.3 28.1l24 104c2.6 11.1 12.5 19 24 19 251.3 0 448-197.9 448-448 0-11.5-7.9-21.4-19-24z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* FOOTER SECTION */

footer {
  height: 26vh;
  margin: 0 1rem;
  border-top: 1px solid var(--line);
}

footer nav {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  position: static;
}

footer p {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
