/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    
}
 :root {
      --primary-orange: #f28d1f;
      --dark-gray: #222;
      --light-gray: #f8f9fa;
      --text-gray: #666;
      --white: #fff;
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      --border-radius: 12px;
    }

h1, h2 {
    color: #f28d1f;
    text-align: center;
}




    /* :root {
        --white: #ffffff;
        --goldish-orange: #f28d1f;
        --dark-bg: #1a1a1a;
        --overlay-dark: rgba(0, 0, 0, 0.7);
    } */

    /* Navigation Bar - Creative Style */
    .hero-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(242, 141, 31, 0.2);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .hero-nav.scrolled {
        background: rgba(26, 26, 26, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-logo {
        width: 200px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .hero-logo:hover {
        transform: scale(1.05);
    }

    /* Creative Navigation Menu */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
        background: rgba(34, 34, 34, 0.8);
        border-radius: 30px;
        padding: 0.8rem 2rem;
        border: 1px solid rgba(242, 141, 31, 0.3);
        backdrop-filter: blur(10px);
        position: relative;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(242, 141, 31, 0.1), rgba(26, 20, 6, 0.1));
        border-radius: 30px;
        z-index: -1;
    }

    .nav-menu a {
        position: relative;
        font-size: 1rem;
        font-weight: 500;
        color: var(--white);
        text-decoration: none;
        padding: 0.8rem 1.2rem;
        border-radius: 20px;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .nav-menu a:hover {
        color: var(--goldish-orange);
        background: rgba(242, 141, 31, 0.1);
        transform: translateY(-2px);
    }

    /* Dropdown Styles */
    .dropdown {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-link {
        color: white;
        text-decoration: none;
        padding: 0.8rem 1.2rem;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: var(--goldish-orange);
        background: rgba(242, 141, 31, 0.1);
        transform: translateY(-2px);
    }

    .dropdown-toggle {
        background: none;
        border: none;
        color: white;
        font-size: 1rem;
        cursor: pointer;
        padding: 0.8rem;
        margin-left: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dropdown-toggle:hover {
        background: rgba(242, 141, 31, 0.2);
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 120%;
        left: 0;
        background: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        min-width: 200px;
        border: 1px solid rgba(242, 141, 31, 0.3);
        z-index: 1000;
        flex-direction: column;
        overflow: hidden;
    }

    .dropdown-menu a {
        color: white;
        padding: 1rem 1.5rem;
        display: block;
        text-align: left;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        background: linear-gradient(45deg, rgba(242, 141, 31, 0.2), rgba(26, 20, 6, 0.2));
        color: var(--goldish-orange);
        transform: translateX(5px);
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 4;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .hamburger-menu:hover {
        background: rgba(242, 141, 31, 0.1);
    }

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background: var(--goldish-orange);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-menu.hidden {
        transform: translateX(100%);
        display: none;
    }

    .nav-menu.visible {
        transform: translateX(0);
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1.5rem;
        gap: 1rem;
        width: 250px;
        border: 1px solid rgba(242, 141, 31, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-nav {
            padding: 1rem;
        }

        .nav-menu {
            display: none;
        }

        .hamburger-menu {
            display: flex;
        }

        .hero-logo {
            width: 160px;
        }

        .dropdown-menu {
            min-width: 180px;
            left: -50px;
        }
    }

    @media (max-width: 480px) {
        .hero-logo {
            width: 140px;
        }
        
        .nav-menu.visible {
            width: 220px;
            right: 10px;
        }
    }

  
/* Blog Container */
    .blog-container {
      max-width: 1200px;
      margin: 80px auto 40px;
      padding: 0 20px;
      position: relative;
      z-index: 10;
    }

    .blog-header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 2rem;
      background: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    .blog-header h2 {
      font-size: 2.5rem;
      color: var(--primary-orange);
      margin-bottom: 1rem;
    }

    .blog-header p {
      font-size: 1.2rem;
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Newsletter Grid */
    .newsletter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .newsletter-card {
      background: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
    }

    .newsletter-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .newsletter-thumbnail {
      width: 100%;
      aspect-ratio: 3 / 4;
      max-height: 320px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: linear-gradient(135deg, var(--light-gray), #e9ecef);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .newsletter-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      transition: transform 0.3s ease;
      background: white;
    }

    .newsletter-card:hover .newsletter-thumbnail img {
      transform: scale(1.05);
    }

    .newsletter-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(242, 141, 31, 0.9);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      color: white;
      gap: 0.5rem;
    }

    .newsletter-card:hover .newsletter-overlay {
      opacity: 1;
    }

    .newsletter-overlay i {
      font-size: 3rem;
    }

    .newsletter-overlay span {
      font-size: 1.1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .newsletter-info {
      padding: 1.5rem;
    }

    .newsletter-info h3 {
      font-size: 1.4rem;
      color: var(--dark-gray);
      margin-bottom: 0.5rem;
    }

    .newsletter-date {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-gray);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .newsletter-date i {
      color: var(--primary-orange);
    }

    .newsletter-actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .view-pdf-btn {
      width: 100%;
      padding: 0.75rem 1rem;
      background: linear-gradient(135deg, var(--primary-orange), #d47a1b);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .view-pdf-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(242, 141, 31, 0.3);
    }

    .newsletter-buttons-row {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .download-pdf-btn {
      flex: 1;
      padding: 0.65rem 1rem;
      background: transparent;
      color: var(--primary-orange);
      border: 2px solid var(--primary-orange);
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .download-pdf-btn:hover {
      background: var(--primary-orange);
      color: white;
      transform: translateY(-2px);
    }

    /* Empty State */
    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
      background: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    .empty-state i {
      font-size: 4rem;
      color: var(--primary-orange);
      margin-bottom: 1rem;
    }

    .empty-state h3 {
      font-size: 1.8rem;
      color: var(--dark-gray);
      margin-bottom: 0.5rem;
    }

    .empty-state p {
      color: var(--text-gray);
      font-size: 1.1rem;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      z-index: 1000;
      backdrop-filter: blur(4px);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translate(-50%, -55%) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--white);
      border-radius: 16px;
      padding: 0;
      max-width: 900px;
      width: 95%;
      max-height: 90vh;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
      animation: slideIn 0.3s ease;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--dark-gray);
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .modal-close:hover {
      background: var(--primary-orange);
      color: white;
      transform: scale(1.1);
    }

    /* PDF Modal Specific Styles */
    .pdf-modal-content {
      max-width: 1200px;
      width: 95%;
      max-height: 95vh;
      display: flex;
      flex-direction: column;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      border-bottom: 2px solid var(--light-gray);
      background: linear-gradient(135deg, var(--white), var(--light-gray));
    }

    .modal-header h3 {
      color: var(--dark-gray);
      font-size: 1.5rem;
      margin: 0;
    }

    .pdf-modal-content .modal-close {
      position: relative;
      top: auto;
      right: auto;
    }

    .pdf-viewer-container {
      flex: 1;
      width: 100%;
      min-height: 600px;
      background: var(--light-gray);
      position: relative;
    }

    #pdf-viewer {
      width: 100%;
      height: 100%;
      min-height: 600px;
      border: none;
    }

    .modal-footer {
      padding: 1.5rem 2rem;
      border-top: 2px solid var(--light-gray);
      display: flex;
      justify-content: center;
      gap: 1rem;
      background: var(--white);
    }

    .download-pdf-modal-btn {
      padding: 0.75rem 2rem;
      background: linear-gradient(135deg, var(--primary-orange), #d47a1b);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .download-pdf-modal-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(242, 141, 31, 0.3);
    }

    #modal-article-content {
      max-height: 90vh;
      overflow-y: auto;
      padding: 40px;
      line-height: 1.7;
    }

    #modal-article-content h2 {
      color: var(--dark-gray);
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    #modal-article-content h3 {
      color: var(--primary-orange);
      font-size: 1.5rem;
      margin: 2rem 0 1rem 0;
    }

    #modal-article-content p {
      margin-bottom: 1.5rem;
      color: var(--text-gray);
      font-size: 1.1rem;
    }

    #modal-article-content .modal-article-header {
      margin: -40px -40px 2rem -40px;
      overflow: hidden;
      border-radius: 16px 16px 0 0;
    }
     /* Responsive */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }

      .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .newsletter-thumbnail {
        aspect-ratio: 3 / 4;
        max-height: 280px;
      }

      .nav-menu {
        display: none;
      }

      .modal-content {
        width: 95%;
        max-height: 95vh;
      }

      .pdf-modal-content {
        max-height: 90vh;
      }

      .modal-header {
        padding: 1rem 1.5rem;
      }

      .modal-header h3 {
        font-size: 1.2rem;
      }

      .pdf-viewer-container {
        min-height: 400px;
      }

      #pdf-viewer {
        min-height: 400px;
      }

      .modal-footer {
        padding: 1rem 1.5rem;
      }

      #modal-article-content {
        padding: 20px;
      }

      #modal-article-content h2 {
        font-size: 1.8rem;
      }

      #modal-article-content h3 {
        font-size: 1.3rem;
      }

      #modal-article-content .modal-article-header {
        margin: -20px -20px 1.5rem -20px;
      }

      .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .newsletter-thumbnail {
        aspect-ratio: 3 / 4;
        max-height: 260px;
      }

      .newsletter-buttons-row {
        flex-direction: column;
      }

      .download-pdf-btn {
        width: 100%;
      }

      .pdf-viewer-container {
        min-height: 350px;
      }

      #pdf-viewer {
        min-height: 350px;
      }
    }
    /* Modal Content Styles */
.modal-article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.modal-gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-gallery-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    float: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.profile-image-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.cinematographer-profile {
    display: flex;
    align-items: flex-start;
    margin: 35px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
}

.cinematographer-profile .profile-content {
    flex: 1;
}

.team-highlights {
    margin: 35px 0;
}

.team-member {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-orange);
}

.team-member div {
    flex: 1;
}

.podcast-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.podcast-intro {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.intro-content {
    flex: 1;
    margin-left: 25px;
}

.testimonial {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d47a1b 100%);
    color: white;
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(242, 141, 31, 0.2);
}

.call-to-action {
    text-align: center;
    margin: 35px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-orange);
}

.call-to-action p:last-child {
    font-size: 1.1em;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cinematographer-profile,
    .podcast-intro,
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image,
    .profile-image-small {
        float: none;
        margin: 0 auto 15px auto;
        display: block;
    }
    
    .modal-article-gallery {
        grid-template-columns: 1fr;
    }
    
    .podcast-showcase {
        grid-template-columns: 1fr;
    }
}

/* Sharing Functionality Styles */
.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.share-btn {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.share-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 141, 31, 0.3);
}

.share-btn.whatsapp-share:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn.facebook-share:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn.copy-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* Success feedback for copy link */
.share-btn.copied::after {
    content: "Copied!";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-gray);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
}

/* Responsive adjustments for sharing */
@media (max-width: 768px) {
    .blog-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .share-buttons {
        align-self: center;
    }

    .share-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}