
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* 🔧 Fix mobile tap highlight + focus outline */
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

/* Remove blue outline on click/focus */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:active,
button:active {
  background-color: transparent !important;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Regular.woff2') format('woff2'),
       url('assets/fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('assets/fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

body {
  background: #121212;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #1f1f1f;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  font-weight: bold;
}

.logo a {
  text-decoration: none;
  font-weight: bold;
  font-family: 'Poppins', Sans-Serif;
  font-size: 25px;
}

.white-txt {
  color: white;
}

.orange-txt {
  color: orange;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

#nav-menu {
  display: flex;
  gap: 15px;
}

#nav-menu a {
  color: white;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
}

#nav-menu a:hover {
  background: #333;
}

header input {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  outline: none;
  width: 100%;
  max-width: 250px;
  margin-top: 10px;
  background: #2c2c2c;
  color: white;
}

.hero {
  text-align: center;
  padding: 40px 10px;
  background: linear-gradient(to right, #1f1f1f, #3a3a3a);
  color: white;
}

.search-container {
  padding: 10px 20px;
  background-color: #1a1a1a; /* optional: match with header */
  text-align: center;
}

.search-container input {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-results {
  position: absolute;
  width: 80%;
  max-width: 400px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f1f1f; /* Dark background */
  color: #ffffff; /* White text */
  border: 1px solid #444;
  border-top: none;
  z-index: 10;
  display: none;
  font-size: 15px;
}

.search-results div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #333;
}

.search-results div:hover {
  background: #333; /* Slightly lighter on hover */
}

.story-section {
  background-color: #1a1a1a;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  color: white;
  font-family: 'Poppins', sans-serif;
}


.story-title {
  font-size: 24px;
  color: orange;
  margin-bottom: 10px;
  font-weight: 600;
}

.fstory {
      color: #d35400;
      font-size: 30px;
      margin-bottom: 10px;
      text-align: center;
    }
    
     .story-content {
      font-size: 17px;
      line-height: 1.8;
      color: white;
      text-align: justify;
      padding: 24px; /* increase from 20px to 24px or more */
  background-color: #1e1e1e; /* dark grey */
  border-radius: 12px;
  margin: 16px;
  line-height: 1.9;
  font-size: 18px;
  font-weight: 400;
    }
  
  
.story-content {
  font-size: 16px;
  line-height: 1.7;
}


.story-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 20px; /* adjust spacing */
}

.prev-btn,
.next-btn {
  padding: 10px 20px;
  background-color: #ff6b00;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #e55a00;
}


.read-full-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff8800;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-full-btn:hover {
  background-color: #e76f00;
}



.social-media {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ff4081; /* Example hover color */
}

html {
  scroll-behavior: smooth;
}

footer {
  text-align: center;
  padding: 15px;
  background: #1f1f1f;
  color: white;
  margin-top: auto;
 
  bottom: 0;
  width: 100%;
}


















/* Responsive Toggle Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #2c2c2c;
    margin-top: 10px;
  }

#nav-menu a {
   color: #fff;
  padding: 1px 0;
  display: block;
  transition: 0.2s;
  font-weight: 500;
}

  #nav-menu.show {
    display: flex;
  }

  header input {
    margin: 10px auto;
    width: 100%;
  }

  /* 🔧 Fix mobile tap highlight + focus outline */
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

/* Remove blue outline on click/focus */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:active,
button:active {
  background-color: transparent !important;
}
}
