/* ------------------------------ */
/* RESET & BASE STYLES */
/* ------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin: 4px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-copy {
  margin-top: 10px;
  color: #999;
  font-size: 0.85rem;
}
html, body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Accent color: a warm orange */
:root {
  --accent-color: #fa8c14;
}

/* ------------------------------ */
/* HEADER / NAV */
/* ------------------------------ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(1, 1, 1, 1);
  z-index: 1000;
  height: 65px;
}

.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  width: 120px;
  transition: width 0.5s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  flex: 2;
  text-align: center;
}

.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a.active {
  color: var(--accent-color);
}

/* ------------------------------ */
/* HERO SECTION */
/* ------------------------------ */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("smp.png") no-repeat center center/cover;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(153, 166, 148, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.6rem;
}

/* ------------------------------ */
/* ABOUT CONTENT */
/* ------------------------------ */
.about-content {
  padding: 4rem 0;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}

/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 16.5px;
}

.footer-content {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ------------------------------ */
/* ABOUT SECTIONS */
/* ------------------------------ */
.about-section {
  background: #efefef;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.about-section:hover {
  transform: translateY(-5px);
}

.about-section h2 {
  font-size: 28px;
  color: #333433;
  margin-bottom: 15px;
  border-left: 5px solid #333433;
  padding-left: 15px;
}

.about-section p {  
  font-size: 18px;
  line-height: 1.6;
}

.about-section ul {
  list-style-type: none;
  padding: 0;
}

/* Desktop List Styling */
.about-section ul li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.about-section ul li::before {
  content: "✔";
  color: #fa8c14;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 5px;
}

.about-section a {
  color: #fa8c14;
  text-decoration: none;
  font-weight: bold;
}

.about-section a:hover {
  text-decoration: underline;
}

/* Desktop bullet labels alignment */
.about-section ul li strong {
  min-width: 260px;
  display: inline-block;
  vertical-align: top;
}

.about-section ul li span {
  display: inline-block;
  max-width: calc(100% - 270px);
  text-align: left;
}

/* ------------------------------ */
/* RESPONSIVE DESIGN (MOBILE FIXES) */
/* ------------------------------ */
@media (max-width: 768px) {
  .hero-text h1 {
      font-size: 1.8rem;
  }
  .hero-text p {
      font-size: 1.2rem;
  }
  .about-section h2 {
      font-size: 1.5rem;
  }
  .about-section p {
      font-size: 1rem;
  }

  /* HIDE CHECK MARKS ON MOBILE */
  .about-section ul li::before {
      content: none;
  }

  /* MAKE MOBILE LISTS STACK UNDER HEADERS */
  .about-section ul {
      padding-left: 0;
  }

  .about-section ul li {
      display: block;
      text-align: left;
      margin-bottom: 10px;
      width: 100%;
      white-space: normal;
  }

  .about-section ul li strong {
      display: block;
      margin-bottom: 5px;
  }

  .about-section ul li span {
      display: block;
      width: 100%;
      word-wrap: break-word;
  }

  /* HIDE DESKTOP ABOUT */
  .desktop-about {
      display: none;
  }

  /* SHOW MOBILE ABOUT */
  .mobile-about {
      display: block;
  }

  .mobile-about .about-item {
      margin-bottom: 15px;
  }

  .mobile-about strong {
      display: block;
      margin-bottom: 5px;
  }

  .mobile-about p {
      word-wrap: break-word;
      white-space: normal;
      max-width: 100%;
  }
.mobile-sign-in{
  display: block;
}
  /* MOBILE MENU FIX */
  .nav-links {
      display: flex;
      position: fixed;
      top: 65px;
      right: 0;
      width: 80vw;
      max-width: 300px;
      background: #d7d7d7;
      text-align: center;
      flex-direction: column;
      padding: 15px 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1000;
  }

  .nav-links.active {
      transform: translateX(0);
  }

  .nav-links ul {
      flex-direction: column;
      width: 100%;
      padding: 0;
      margin: 0;
  }

  .menu-toggle {
      display: block;
      position: fixed;
      right: 20px;
      top: 15px;
      font-size: 24px;
      cursor: pointer;
      color: white;
      background: none;
      border: none;
  }

  /* HIDE SIGN-IN BUTTON */
  .sign-in {
      display: none;
  }
}
@media (min-width: 769px) {
  .menu-toggle {
      display: none; /* Hides the hamburger menu on desktop */
  }
}
@media (max-width: 768px) {
  .sign-in.desktop {
      display: none; /* ✅ Hides desktop sign-in on mobile */
  }
}

@media (min-width: 769px) {

  .sign-in {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
  }
}
@media (min-width: 769px) {

.mobile-sign-in
{
  display: none;
}

.about-section.mobile-about{
  display: none;
}


.sign-in-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sign-in-button:hover {
.sign-in {
    margin-left: auto; /* Pushes sign-in to the right */
}}

.sign-in-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sign-in-button:hover {
    background-color: #fa8c14;
}
}