/* =========================
   BRAND COLOURS
========================= */
:root {
  --yellow: #ffde17;
  --cream: #faeb90;
  --orange: #f57e20;
  --purple: #bf89e9;

  --bg-main: #fffdf8;
  --text-main: #444;
  --text-dark: #222;
  --text-light: #ffffff;
}

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

body {
  font-family: system-ui, sans-serif;
  background-color: #fafafa;
  color: var(--text-dark);
  line-height: 1.5;
}

/* =========================
   HEADER / NAVIGATION
========================= */
header {
  position: relative;
}

.navbar {
  display: flex;
  flex-direction: column; /* mobile */
  align-items: center;
  padding: 1.5rem;
  padding-bottom: 0rem;
  padding-top: 0rem;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.logo a {
  text-decoration: none;
  color: #222;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 0.9rem 2.5rem;
  background-color: var(--orange);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--yellow);
}

/* =========================
   ABOUT US SECTION
========================= */
.about {
  background-color: var(--cream);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--text-main);
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.about h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
}

.about p {
  max-width: 750px;
  margin: 1.5rem auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.about ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.about li {
  background-color: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  color: var(--text-main);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about a:hover {
  color: var(--yellow);
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: var(--purple);
  color: var(--text-light);
  text-align: center;
  padding: 1.5rem;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (min-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    /* padding: 1.5rem 3rem; */
  }

  .logo {
    margin-bottom: 0;
  }

  .nav-links {
    flex-direction: row;
  }

  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about {
    padding: 5rem 3rem;
  }

  .about h2 {
    font-size: 2.2rem;
  }

  .about ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   RESPONSIVE DESKTOP
========================= */
@media (min-width: 1024px) {
  .navbar {
    /* padding: 2rem 5rem; */
  }

  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .about {
    padding: 6rem 10rem;
  }

  .about h2 {
    font-size: 2.5rem;
  }

  .about p {
    font-size: 1.1rem;
  }

  .about ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.logo-svg {
  width: 150px;
  height: 50px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .logo-svg {
    width: 180px;
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .logo-svg {
    width: 220px;
    height: 150px;
  }
}
