/* 
  Dark theme with bright pink accent (#FF4081).
  Subtle fade-in for each section, 
  hover zoom for images/icons, 
  2-column video layout on desktop,
  Dad Life pattern in the .hero without any blend or gradient.
*/

  /* Basic Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body & Font Setup */
  body {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    background-color: #121212; /* Black background for the rest of the page */
    line-height: 1.6;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  html {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* HERO with Dad Life Pattern (with dark gradient overlay) */
  .hero {
    position: relative;
    background: url("../images/DADLIFEVECTORARTPATTERN.png") center center no-repeat;
    background-size: cover;
    width: 100%;
    min-width: 100vw;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  
  /* Gradient overlay */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.85));
    z-index: 1;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #FF4081; /* Pink accent */
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
    letter-spacing: 1px; /* Slightly increased letter spacing */
  }
  .hero-subtitle {
    font-size: 1.2rem;
    color: #fff; /* Brighter text color */
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
  }
  .hero-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  /* Social Links & Icons */
  .social-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 50%;
    margin: 0 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-link:hover {
    background-color: rgba(255, 64, 129, 0.7); /* Pink accent with transparency */
    transform: translateY(-2px);
  }
  
  /* Social Icon Hover Zoom */
  .hover-zoom {
    transition: transform 0.3s ease;
  }
  .hover-zoom:hover {
    transform: scale(1.1);
  }
  
  /* Social Icon Sizing */
  .social-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
  
  /* Main Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  /* Headings */
  section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #FF4081;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #FF4081;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  
  /* Paragraphs */
  section p {
    margin-bottom: 1rem;
  }
  
  /* VIDEO GALLERY: 2-column layout on desktop, 1-column on mobile */
  .video-gallery {
    display: grid;
    grid-template-columns: 1fr; /* single column for mobile by default */
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 900px) {
    .video-gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .video-item {
    background: #1c1c1c; 
    padding: 1rem;
    border: 1px solid #333; 
    border-radius: 4px;
  }
  
  /* For responsive iframes */
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-top: 0.5rem;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* For YouTube Shorts vertical embed (9:16) */
  .short-vertical {
    padding-bottom: 177.78% !important; /* 9:16 ratio */
  }
  
  /* IMAGE GALLERY */
  .image-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  .gallery-item {
    position: relative;
    background: #1c1c1c; 
    border: 1px solid #333; 
    border-radius: 4px;
    padding: 0.5rem;
  }
  .gallery-item img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 2px;
  }
  
  /* LIGHTBOX MODAL */
  .lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    padding-top: 2rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }
  .lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
  }
  .lightbox-caption {
    margin: 1rem auto;
    text-align: center;
    color: #ccc;
    max-width: 80%;
    font-size: 1rem;
  }
  
  /* Press Clippings, Contact, Download All (generic styling) */
  .press-clippings p,
  .contact-info p,
  .download-all p {
    margin-top: 1rem;
  }
  
  /* Footer */
  .footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 2rem 1rem;
    color: #fff;
  }
  
  /* FADE-IN ANIMATIONS */
  .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.4rem;
    }
    .hero-subtitle {
      font-size: 1rem;
    }
  }