/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: #333;
  line-height: 1.6;
}


/* =========================
   DEBUG MODE (KEEP)
========================= */
/* div, section {
  border: 1px solid red;
} */
/* =========================
   SECTION BACKGROUNDS
========================= */
#youngprofessionals { background: #fff8f0; }
#student            { background: #ffefdf; }
#coaching           { background: #ffe6c9; }
#leestips           { background: #fff5eb; }
#contact            { background: #fff; }

/* =========================
   TYPOGRAPHY & LAYOUT
========================= */
section {
  padding: 80px 20px;
  scroll-margin-top: 80px;
}

.section-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

/* GRID SYSTEM */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
p  { margin-bottom: 1rem; }

ul {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

li { margin-bottom: 0.5rem; }

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.logo img {
  height: 50px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:active {
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =========================
   HERO
========================= */
#hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("/images/hero.png") center/cover no-repeat;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.4));
}

#hero .section-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

#hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffb000;
  text-transform: uppercase;
}

/* =========================
   ABOUT
========================= */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.profile-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* READ MORE */



.more-content {
  display: none;
  margin-top: 1rem;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 4px;
  background: #ffb000;
  color: #000;
  cursor: pointer;
}

/* =========================
   FORMS (GLOBAL)
========================= */
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
}

button {
  padding: 12px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial {
  margin-bottom: 1rem;
  padding: 15px 20px;
  border-radius: 4px;

  background: #f9f9f9;
  border-left: 4px solid #ffb000;
}



/* =========================
   CONTACT SECTION (MATCHED)
========================= */
#contact ul {
  list-style: none;
  margin:16px;
}

.contact-form {
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: 600px;
  margin-top: 25px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;

  transition: background 0.3s ease;
  font-family: inherit;
}

.btn-submit:hover {
  background: #000;
}

#contact i {
  margin-right: 8px;
  color: #ffb000;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ffb000;
}

.footer-column p,
.footer-column li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-column ul {
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffb000;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #aaa;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}