/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #111;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.navbar .logo a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Hero */
.about-hero {
  background: url('./images/about-bg.jpeg') center/cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero .overlay {
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Story Section */
.about-story {
  padding: 60px 20px;
  background: #f9f9f9;
}

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

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b36c6c;
}

.about-story p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Call to Action */
.about-cta {
  text-align: center;
  padding: 60px 20px;
  background: #e6a5a5;
  color: #fff;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-cta .btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-cta .btn:hover {
  background: #333;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Hamburger Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Enhance paragraphs */
.about-story p {
  margin-bottom: 24px;          /* Slightly more spacing for readability */
  font-size: 1.15rem;           /* Slightly larger for easier reading */
  line-height: 1.8;             /* More linear flow for lines */
  text-align: justify;           /* Gives paragraphs a neat, linear edge on both sides */
  text-justify: inter-word;     /* Works with justify to reduce awkward spacing */
  color: #4a2c2c;               /* A warmer dark color for readability */
  letter-spacing: 0.5px;        /* Slight letter spacing for smooth reading */
  word-spacing: 1px;            /* Slight word spacing */
  transition: color 0.3s ease;  /* Optional hover effect if needed later */
}

.about-story p::first-letter {
  font-size: 1.4rem;            /* Make first letter pop slightly */
  font-weight: bold;
  color: #b36c6c;
}


@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      background: #1a1a1a;
      position: absolute;
      top: 60px;
      right: 0;
      width: 200px;
      padding: 20px;
      border-radius: 0 0 10px 10px;
      z-index: 999;
  }

  .nav-links.show {
      display: flex;
  }

  .menu-toggle {
      display: flex;
  }

  .nav-links a {
      margin: 10px 0;
  }
}
