.header-logo {
    height: 40px; /* Adjust height as needed */
    margin-right: 10px;
    vertical-align: middle;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .header-logo {
        height: 30px; /* Slightly smaller on mobile */
    }
}

#story .content-section {
  background-color: rgba(255, 255, 255, 0.8); /* 50% transparent white background */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.story {
  position: relative;
  padding: 5rem 0;
  color: var(--dark);
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://fortifiedpanels-website.s3.us-east-1.amazonaws.com/artifacts/logo.jpeg');
  background-size: contain; /* Changed from 'cover' to 'contain' */
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.75; 
  z-index: -1;
}

.story .container {
  position: relative;
  z-index: 1;
}

.story .content-section {
  background-color: rgba(255, 255, 255, 0.9); /* Increased from 0.8 to 0.9 (less transparent) */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.story p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.story .btn {
  margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    line-height: 40px;
    margin: 0 0.5rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-style: normal;
}

.social-links a:hover {
    background-color: var(--secondary);
}

.social-links .yt {
    font-size: 20px;
}

.social-links .ig {
    font-size: 20px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid #333;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

#videoModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    z-index: 999999 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#videoModal.show {
    display: block !important;
}

#videoModal .modal-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 800px !important;
    background: #000 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

#videoModal .modal-video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    border: none !important;
}

#videoModal .close-button {
    position: absolute !important;
    top: -50px !important;
    right: 0 !important;
    color: white !important;
    font-size: 35px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    z-index: 1000000 !important;
}