/*
  ADVANCED, MODERN STYLING
  - Subtle box shadows on hover
  - Fades and scale transitions for a polished look
  - Clean black background (#000), text (#C7C7C7), accent (#D3E97A)
*/

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #000;
  color: #C7C7C7;
  line-height: 1.6;
  overflow-x: hidden;
}

/* SCROLL REVEAL ANIMATION BASE */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.animate-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #000;
  transition: background-color 0.3s ease;
}
.header:hover {
  background-color: #111;
}
.header__logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 24px;
  color: #fff;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar a {
  color: #C7C7C7;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #D3E97A;
}

/* UNDERLINE HOVER */
.underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.underline-hover:hover::after {
  background-color: #D3E97A;
  transform: scaleX(1);
  transform-origin: left;
}

/* HERO SECTION */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  gap: 2rem;
  align-items: center;
}
.hero-content {
  flex: 1 1 400px;
}
.hero-content h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  transition: color 0.3s ease;
}
.hero-content h1:hover {
  color: #D3E97A;
}
.hero-content p {
  margin-bottom: 1.5rem;
  font-size: 18px;
  max-width: 500px;
  transition: color 0.3s ease;
}
.hero-content p:hover {
  color: #e0ff7e;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Primary Button */
.btn-primary {
  background-color: #D3E97A;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease;
}
.btn-primary:hover {
  background-color: #e0ff7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211,233,122,0.3);
}
/* Circle Button */
.btn-circle {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #111;
  color: #D3E97A;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease;
}
.btn-circle:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  background-color: #C7C7C7; /* fallback if no image */
  transition: transform 0.4s ease;
}
.hero-image img:hover {
  transform: scale(1.03);
}

/* PROJECTS SECTION */
.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  color: #fff;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}
.section-title:hover {
  color: #D3E97A;
}
.project-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #111;
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.project-card__img {
  flex: 1 1 300px;
  padding: 1rem;
  max-width: 500px;
}
.project-card__img img {
  width: 100%;
  border-radius: 8px;
  background-color: #333;
  transition: transform 0.3s ease;
}
.project-card__img img:hover {
  transform: scale(1.02);
}
.project-card__info {
  flex: 1 1 400px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-card__info h3 {
  font-size: 24px;
  color: #D3E97A;
  transition: color 0.3s ease;
}
.project-card__info h3:hover {
  color: #e0ff7e;
}
.project-card__info p {
  line-height: 1.6;
}
.meta {
  background-color: #222;
  padding: 0.75rem;
  border-radius: 4px;
}
.meta ul {
  list-style: none;
  margin-top: 0.5rem;
}
.meta li {
  font-size: 16px;
}
.view-link {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 0.5rem;
  color: #C7C7C7;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.view-link:hover {
  color: #D3E97A;
}

/* ABOUT SECTION */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid #333;
}
.about-section .section-title {
  margin-bottom: 1rem;
}
.about-content {
  max-width: 700px;
}
.about-content p {
  margin-bottom: 1rem;
  font-size: 18px;
  transition: color 0.3s ease;
}
.about-content p:hover {
  color: #e0ff7e;
}
.about-link {
  color: #D3E97A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.about-link:hover {
  color: #e0ff7e;
}

/* CONTACT SECTION */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid #333;
}
.contact-section .section-title {
  margin-bottom: 1.5rem;
}
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}
.contact-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 24px;
}
.contact-icons a {
  color: #C7C7C7;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}
.contact-icons a:hover {
  color: #D3E97A;
  transform: translateY(-2px);
}
.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 500;
  font-size: 16px;
}
.contact-form input,
.contact-form textarea {
  background-color: #1A1A1A;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  transition: background-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #333;
}
.btn-submit {
  width: 120px;
  background-color: #D3E97A;
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease,
              box-shadow 0.3s ease;
}
.btn-submit:hover {
  background-color: #e0ff7e;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(211,233,122,0.3);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: #C7C7C7;
  border-top: 1px solid #333;
}

/* SCROLL TO TOP BUTTON (injected by JS) */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #D3E97A;
  color: #000;
  border: none;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* hidden initially */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-to-top:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }
  .navbar ul {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .section-title {
    font-size: 36px;
  }
  .project-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .btn-primary {
    font-size: 14px;
  }
  .btn-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
/*
  PROFESSIONAL, MINIMAL STYLING
  - Enhanced with modern animations and transitions
  - Subtle fade-in on scroll
  - Clean black background with off-white text
*/

/* COLOR SCHEME */
:root {
  --black: #000;
  --offwhite: #C7C7C7; 
  --white: #fff;
  --accent: #D3E97A; /* Subtle accent color */
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--black);
  color: var(--offwhite);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* SCROLL REVEAL ANIMATION BASE
   Simple fade + slight translate from bottom 
*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.animate-on-scroll.animate-show {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8); /* slight transparency */
  backdrop-filter: blur(10px); /* blur effect */
  border-bottom: 1px solid #333; /* subtle line */
  transition: background-color 0.3s ease;
}
.logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--offwhite);
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.navbar a {
  text-decoration: none;
  color: var(--offwhite);
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: var(--accent);
}

/* UNDERLINE HOVER - SIMPLE */
.underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.underline-hover:hover::after {
  background-color: var(--accent);
  transform: scaleX(1);
  transform-origin: left;
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* initially hidden */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-to-top:hover {
  transform: translateY(-3px);
}

/* ABOUT SECTION */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.about-heading h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 100px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.about-heading h2:hover {
  color: var(--accent);
}
.about-content {
  max-width: 700px;
}
.about-content h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.linkedin-circle {
  width: 54px;
  height: 54px;
  background-color: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.linkedin-circle a {
  text-decoration: none;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.linkedin-circle:hover {
  background-color: var(--accent);
}

/* IMAGE SECTION */
.image-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.image-section img {
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  background-color: #C7C7C7; /* fallback if no image */
  transition: transform 0.3s ease;
}
.image-section img:hover {
  transform: scale(1.05);
}

/* CAPABILITIES SECTION */
.capabilities-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  gap: 1.5rem;
}
.cap-left {
  flex: 1 1 300px;
}
.cap-left h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 76px;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.cap-left h2:hover {
  color: var(--accent);
}
.cap-right {
  flex: 1 1 600px;
}
.cap-right p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.cap-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cap-buttons button {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--offwhite);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cap-buttons button:hover {
  background-color: var(--accent);
  color: var(--black);
  transform: translateY(-3px);
}

/* EXPERIENCE SECTION */
.experience-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  gap: 1.5rem;
}
.exp-left {
  flex: 1 1 300px;
}
.exp-left h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 76px;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.exp-left h2:hover {
  color: var(--accent);
}
.exp-right {
  flex: 1 1 600px;
}
.job {
  margin-top: 1rem;
}
.job-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.job-title h3 {
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
}
.job-title span {
  font-size: 16px;
  color: var(--offwhite);
}
.job p {
  font-size: 18px;
  line-height: 1.6;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  gap: 2rem;
}
.contact-left {
  flex: 1 1 300px;
}
.contact-left h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 76px;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.contact-left h2:hover {
  color: var(--accent);
}
.contact-left p {
  font-size: 18px;
  margin-bottom: 1rem;
}
.contact-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-icons a {
  font-size: 24px;
  color: var(--offwhite);
  transition: color 0.3s ease;
}
.contact-icons a:hover {
  color: var(--accent);
}
.contact-right {
  flex: 1 1 400px;
}
.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-right label {
  font-weight: 500;
  font-size: 16px;
}
.contact-right input,
.contact-right textarea {
  background-color: #1A1A1A;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--white);
}
.animated-btn {
  background-color: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.animated-btn:hover {
  transform: translateY(-3px);
  background-color: var(--black);
  color: var(--accent);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid #333;
  color: var(--offwhite);
  margin-top: 2rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  .about-heading h2 {
    font-size: 60px;
  }
  .cap-left h2,
  .exp-left h2,
  .contact-left h2 {
    font-size: 50px;
  }
  .navbar ul {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 24px;
  }
  .about-heading h2 {
    font-size: 48px;
  }
  .cap-left h2,
  .exp-left h2,
  .contact-left h2 {
    font-size: 40px;
  }
}
