/* 2025 */
:root {
    --main-font: 'Arial', Helvetica, sans-serif;

    --bg-color: rgb(244, 244, 244);
    --text-color: rgb(51, 51, 51);
    --bismillah-color: rgb(46, 139, 87);
    --highlight-color: rgb(255, 215, 10);
    --sidebar-bg: rgba(102, 51, 153, 0.9);
    --footer-gradient: linear-gradient(90deg, rgb(66, 7, 92), rgb(0, 0, 0));
    --map-image: url('/css/palestine.png'); 
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-font);
  }
  body {
    background: var(--bg-color);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 60px;
  }
.back-to-home {
  position: fixed;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 3;
}
.back-to-home img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
}
.back-to-home:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.4);
}
  .verse-text {
    font-size: 2em;
    color: var(--text-color);
    line-height: 1.5;
    margin: 15px 0;
    direction: rtl;
    text-align: center;
  }
  
  .verse-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(102, 51, 153, 0.1);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .al-istiazah{
    font-size: 1.5em;
    color: var(--bismillah-color);
    font-weight: bold;
    margin: 25px 0 10px 0;
  }
  .translation {
    font-size: 1em;
    color: rgb(34, 34, 34);
  }
  .history-content {
    position: relative;
    max-width: 800px;
    margin: 20px auto 80px;
    padding: 25px;
    background-color: rgba(50, 50, 50, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: justify;
    margin-bottom: 20px;
    text-indent: 25px;
    font-size: 1.2em;
    word-wrap: break-word;
    direction: rtl;
    overflow: hidden;
  }

  .history-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--map-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
  }
  
  .history-content p {
    line-height: 2;
    color: var(--highlight-color);
  }

  #name {
    font-size: 2em;
    font-weight: bold;
    color: rgb(102, 51, 153);
    text-align: center;
    margin: 20px 0;
  }
  
  .highlight-container {
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 5px 20px;
    border-radius: 12px;
    margin: 20px auto;
    display: inline-block;
  }
  
  .footer {
    background: var(--footer-gradient);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    animation: footerPulse 5s ease infinite;
    position: relative;
    margin-top: auto;
    border: 2px solid rgb(140, 58, 43);
  }
  .footer a {
    color: rgb(255, 87, 51);
    font-weight: bold;
  }
  .footer a:hover {
    color: rgb(255, 160, 122);
    text-decoration: underline;
}

  @keyframes footerPulse {
    30%, 100% { opacity: 1; }
    60% { opacity: 0.6; }
  }
  
  @media (max-width: 768px) {
    .sidebar {
      left: 0;
      top: 0;
      transform: none;
      width: 100%;
      padding: 5px;
    }
    .menu-item {
      font-size: 20px;
    }
    .history-content {
      margin: 10px;
      padding: 15px;
    }
    .verse-text {
      font-size: 1.5em;
    }
    #name {
      font-size: 1.5em;
    }
  }
  