/* highlight-theme.css - Optimized and Cleaned Up */

/* Lightbox Title and Description Styling */
.lightbox-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .lightbox-description {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    line-height: 1.4;
  }
  
  /* Rest of the styles */
  
  body {
    background-color: #f5f5f5;
    color: #333;
    font-family: Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
  }
  
  header {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: none;
    line-height: 1.2;
  }

  .main-text {
    width: 90%;
    max-width: 900px;
    text-align: left;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.4;
    color: #555;
  }
  
  .social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  
  .social-buttons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
    opacity: 50%;
  }
  
  .social-buttons img:hover {
    transform: scale(1.2);
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 10px;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1001;
  }
  
  .lightbox-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .left-arrow {
    left: 20px;
  }
  
  .right-arrow {
    right: 20px;
  }
  
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    text-align: left;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 70%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 2px;
    margin-bottom: 20px;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .close:hover {
    transform: scale(1.2);
  }
  
  .tools-used {
    margin-top: 2px;
    margin-bottom: 10px;
    background-color: #ffffff22;
    padding: 1px 8px;
    color: #ffffff;
    text-align: center;
  }
  
  .tools-list {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .tool-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-family: monospace;
  }
  
  .tool-icon {
    font-size: 1.2rem;
    margin-right: 8px;
  }
  
  .tool-icon.filled {
    color: #fc00f8;
    stroke: white;
  }
  
  .tool-icon.hollow {
    color: #ffffff; 
  }
  
  .decorative-circle {
    position: absolute;
    top: 4%;
    left: -30px;
    width: 150px;
    height: 150px;
    color: white;
    background-color: #6a1b9a;
    border-radius: 50%;
    border-color: #222;
    border-style: solid;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 170%
  }
  