/* ==========================
   🔷 CSS Variables
========================== */
:root {
  --primary: #f97316;
  --secondary: #f43f5e;
  --text-dark: #1e293b;
  --brand-dark: #1e3a8a;
  --light-bg: #f1f5f9;
  --story-bg: #ffedd5;
  --story-section-bg: #fff7ed;
}

/* ==========================
   🔷 General Styles
========================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3 {
  margin: 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* ==========================
   🔷 Header & Navbar
========================== */
.header {
  background: linear-gradient(to right, #f97316, #f43f5e);
  color: white;
  padding: 10px 0;
}

.container {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.logo {
  font-size: 25px;
  font-weight: bold;
}

.navbar .logo a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffeb3b;
}

.nav-links .btn-primary,
.nav-links .btn-secondary {
  margin-left: 12px;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.btn-primary {
  background-color: #1e3a8a;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background-color: white;
  color: #1e3a8a;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.hero {
  text-align: center;
  background: linear-gradient(to right, #f97316, #f43f5e);
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

.hero h1 {
  color: white;
  font-size: 35px;
}

/* ==========================
   🔷 About Us Section
========================== */
.about-us {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.about-us p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-us h3 {
  font-size: 1.8em;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
}

.about-us ul {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-us ul li {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

/* ==========================
   🔷 Footer
========================== */
footer {
  background-color: var(--brand-dark);
  color: white;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px 20px 0 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer-follow,
.footer-links {
  width: 45%;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

ul li a:hover {
  color: var(--primary);
}

.footer-disclaimer,
.footer-copyright {
  font-size: 14px;
  margin-top: 10px;
}

/* ==========================
   🔷 Mobile Responsiveness
========================== */
@media (max-width: 768px) {
  .container.navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #f97316, #f43f5e);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin: 20px 0;
    font-size: 1em;
  }

  .hamburger {
    display: block;
  }

  .logo {
    font-size: 1.3em;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 0.9em;
    min-width: 120px;
    margin-top: 10px;
  }

  .about-us {
    padding: 30px 15px;
  }

  .about-us h2 {
    font-size: 2em;
  }

  .about-us h3 {
    font-size: 1.5em;
  }

  .about-us p,
  .about-us ul li {
    font-size: 1em;
  }

  .about-us ul {
    max-width: 100%;
  }
}
