body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: #000000;
  color: #f4f4f5;
  overflow-x: hidden;
}

.hero {
  background: url('/uolkvlu/assets/hero-bg.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  flex-direction: column; 
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: relative;
}

/* Logo container - top left */
.hero-logo {
  position: absolute;
  top: 1rem;
  left: 5rem;
}

.logo {
  width: 250px;
  margin: 0;
}

/* Text + CTA container - bottom left */
.hero-text {
  position: absolute;
  bottom: 4rem;
  left: 5rem;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10; /* Add this line */
}

.hero-text h1 {
  font-size: 25px;
  font-weight: 700;
  color: #9E834C;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: #f4f4f5;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: #9E834C;
  color: #000000;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #b49760;
}

.fox {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: 1rem;
  right: 4rem;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out 0.3s forwards;
  z-index: 5;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.moon {
  position: absolute;
  width: 700px; /* adjust based on how big you want it */
  bottom: 3rem;
  right: 8rem;
  z-index: 1;
}

.about {
  background-color: #f4f4f5;
  color: #000000;
  padding: 6rem 2rem 2rem 2rem; /* top right bottom left */
  z-index: 10;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 24px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 2rem;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-highlight {
  font-weight: 700;
  font-size: 16px;
}

.focus-area {
  background-color: #f4f4f5;
  padding: 4rem 2rem;
  text-align: center;
}

.focus-area h2 {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #000;
}

.focus-container {
  max-width: 1200px;
  margin: 0 auto;
}

.focus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.8rem;
}

.focus-item {
  width: 155px;
}

.focus-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.focus-item p {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
}

.approach {
  background-color: #f4f4f5;
  padding: 4rem 2rem;
  text-align: center;
}

.approach h2 {
  font-size: 24px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #000;
}

.approach-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.approach-card {
  background-color: #000;
  color: #d2b67b;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 240px; /* keep the original card size as a max */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s;
   box-sizing: border-box;    /* ensures padding is included in width */
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-number {
  font-size: 1.5rem;
  color: #9E834C;
  margin-bottom: 1rem;
  border: 2px solid #9E834C;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.approach-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f4f4f5;
}

.approach-card p {
  font-size: 14px;
  color: #d2b67b;
}

.footer {
  background-color: #000;
  color: #9E834C;
  padding: 2rem 1rem;
  text-align: left;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.footer h3 {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}

.footer p {
  font-size: 16px;
  color: #d2b67b;
  margin: 0.5rem 0 0;
}

.navbar {
  background-color: transparent;
  padding: 1.5rem 3rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  bottom: 3rem;
  box-sizing: border-box; /* Important to prevent padding from causing overflow */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0; /* Ensure no internal spacing adds to the width */
  box-sizing: border-box;
  flex-wrap: wrap; /* allows logo and links to wrap if needed */
}

.navbar-links {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}


.navbar-logo .logo-img {
  height: 80px;
  width: auto;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
}

.nav-link:visited {
  color: #ffffff;
  text-decoration: none;
}

.nav-link:hover {
  color: #d2b67b;
}

.nav-link.gold {
  color: #9E834C;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    position: relative;
    padding: 0;
    height: calc(100vh - 80px); /* subtract navbar height */
  }

  .moon {
    width: 90vw;
    max-width: 320px;
    position: absolute;
    top: 8rem; /* <--- changed from bottom to top */
    right: 3rem;
    z-index: 1;
  }

  .fox {
    width: 70vw;
    max-width: 280px;
    height: auto;
    position: absolute;
    top: 12rem; /* <--- adjusted to float over moon */
    right: 2rem;
    animation: slideUp 1s ease-out 0.3s forwards;
    z-index: 5;
  }

  .hero-text {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0);
    z-index: 10;
  }

  .hero-text h1 {
    font-size: 20px;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

 .navbar {
  background-color: transparent;
  padding: 1.5rem 3rem;
  position: relative; /* <- change from absolute to fixed */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none; /* disables all pointer interactions */
}


  .navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    pointer-events: auto;
  }
  
  .navbar-logo img {
    height: 30px;
    width: 40;
  }
  
.navbar-links {
  display: none;
}

  
  .navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
}
/*-------- copied this and will change later------*/

/* Hamburger icon styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #9E834C;
  display: block;
  transition: 0.3s ease;
}

/* Mobile menu drawer styles */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 95px; /* or adjust based on actual navbar height */
  left: 0;
  right: 0;
  background-color: #9E834C;
  padding: 2rem 2rem 0rem;
  z-index: 500; /* lower than navbar’s z-index */
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  height: auto;
  box-sizing: border-box;
}

.mobile-menu a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-align: left;
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Animate hamburger to X */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Enable smooth transition */
  .hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

/* Show menu with slide-down */
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
}

/* Menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0); /* or 0.3 if you want slight dimming */
  z-index: 400;
}

.menu-overlay.active {
  display: block;
}

/*for hero line break*/
.line-break {
  display: inline;
}

@media (max-width: 768px) {
  .line-break {
    display: none;
  }
}

@media (max-width: 768px) {
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }
}

/*OUR FOCUS SECTION*/
@media (max-width: 768px) {
  .focus-grid > .focus-item:last-child {
    grid-column: span 2;
    justify-self: center;
  }
}



