/* ===== Global Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', 'Roboto', sans-serif;
  background-color: #1e1e1e; /* change to your preferred background */
  color: #fafafa;            /* change to your preferred text color */
  line-height: 1.6;
}

/* ====== Container ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* ====== Header ====== */
.header {
  background-color: #1e1e1e;
  padding: 1rem 0;
  
  
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.logo {
  font-size: 40px;
  font-weight: bold;
  color: #fafafa; /* Edit your brand color */
  
}
/* === Navigation Links with Hover + Active Underline === */
.nav-link {
  position: relative;
  padding: 0.5rem;
  text-decoration: none;
  color: #333; /* <-- Change to your preferred text color */
  font-weight: 500;
}

/* Hover underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #4ade80; /* <-- Change to your brand color */
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Keeps underline on the active page */
.nav-link.active::after {
  width: 100%;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #4ADE80;
  font-weight: 500;
}

/* ===== About Section ===== */
.about {
  padding: 2rem 0;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px; 
}
.section-title::after {
  content: "";
  display: block;
  width: 200px;       /* length of the underline */
  height: 3px;       /* thickness */
  background-color: #4ade80; /* color of the line */
  margin-top: 6px;   /* space between text and line */
}

.intro-text {
  max-width: 800px;
  margin: 0px;
  font-size: 18px;
  line-height: 1.7;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 70px; /* space between image and text */
  margin-top: 2rem;
  flex-wrap: wrap; /* makes it responsive on small screens */
}

.about-image img {
  width: 564px;      /* or adjust as needed */
  height: 336px;
  border-radius: 10px; /* optional styling */
}

.about-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px; /* spacing between paragraphs */
}


.about-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.custom-btn {
  background-color: #4ade80;
  color: black;
  padding: 12px 24px;
  border-radius: 12px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  width: 240px;
  height: 40px;
  text-align: center;
  line-height: 1;
}

.custom-btn:hover {
  background-color: transparent;
  border: 2px solid #4ade80;
  color: white;
}


/* ===== Footer ===== */
.footer {
  margin-top: 20px;
  background-color: #101010;
  color: #fafafa;
  padding: 2rem 1rem;
  text-align: center;
}

.footer a {
  color: #4ade80; /* soft green link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.social-links {
  margin-top: 1rem;
}

.social-links img {
  width: 30px;
  height: 30px;
  margin: 0 10px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}
.footer p:last-of-type {
  margin-top: 2rem; /* space before the copyright line */
  font-size: 0.9rem;
  opacity: 0.7;
}

