/* filepath: /Users/kushshah/Downloads/maya/styles.css */
@font-face {
  font-family: 'SF Pro';
  src: url('./SF-Pro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset & Variables */
:root {
  --text: #333;
  --bg: #fff;
  --gray-light: #f5f5f5;
  --accent: #bfa36a; /* muted gold */
}
* { margin:0; padding:0; box-sizing:border-box; }

body {
 font-family: 'SF Pro', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: var(--gray-light);
}
.profile-pic {
  width: 140px; height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%; overflow: hidden;
  border: 4px solid var(--accent);
}
.profile-pic img {
  width: 100%; height: 100%; object-fit: cover;
}
.heading {
  font-family: 'SF Pro', sans-serif;
  font-size: 2rem;
}

/* EXPERIENCE */
.experience {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.section-heading {
 font-family: 'SF Pro', sans-serif;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text);
}
.exp-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.logo img {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 4px;
}
.details { flex: 1; }
.details h3 {
  margin: 0 0 0.5rem;
 font-family: 'SF Pro', sans-serif;
  font-size: 1.25rem;
}
.company {
  margin: 0;
  font-weight: 500;
  color: #555;
}
.meta {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.95rem;
  color: #777;
  line-height: 1.4;
}
.details ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
  color: #444;
}
.details ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ABOUT */
.about-inner {
  max-width: 70ch;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.about-inner .subheading {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.accent-bar {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 1.2em;
  background: var(--accent);
  border-radius: 2px;
}
@media (min-width: 768px) {
  .about-text { column-count: 2; column-gap: 2rem; }
}

.about-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.about-column {
  flex: 1;
  min-width: 280px;
}

.about-divider {
  width: 1px;
  background-color: var(--accent);
  height: auto;
  min-height: 100%;
  align-self: stretch;
}



/* CONTACT */
.contact {
  max-width: 70ch;
  margin: 2rem auto;
  padding: 2rem 1rem;
  text-align: center;
}
.link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.link:hover { border-color: var(--accent); }

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--accent);
  color: var(--bg);
  border: none; border-radius: 50%;
  width: 3rem; height: 3rem;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
}
#backToTop.visible {
  opacity: 1; visibility: visible;
}

/* SCROLL-REVEAL UTILITY */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE EXPERIENCE CARDS */
@media (max-width: 600px) {
  .exp-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .details ul { padding-left: 0; }
}
