       @import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One:ital@0;1&family=DM+Serif+Text:ital@0;1&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #C69C3F;
          --text-light: #ffffff;
            --text-dark: #333333;
          }
          body {
            color: var(--text-light);
            overflow-x: hidden;
          }

        .hero {
            height: 500px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./image/inner-bg01.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 50px;
        }

        .hero h1 {
            color: white;
            font-size: 48px;
            font-weight: bold;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .workshops-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding-bottom: 50px;
        }

        .workshop-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .workshop-card:hover {
            transform: translateY(-5px);
        }

        .workshop-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .workshop-content {
            padding: 20px;
        }

        .workshop-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .workshop-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .read-more {
            display: inline-block;
            padding: 10px 20px;
            background-color: #B8860B;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .read-more:hover {
            background-color: #8B6508;
        }
/* Tablet Screens (up to 768px) */
@media (max-width: 768px) { 
        nav {
            position: relative;
            z-index: 1000;
        }
    
        .zuhd-store-btn {
            display: none; /* Hide desktop store button on mobile */
        }
    
        .mobile-store-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            margin-top: 1rem;
        }
    
        .mobile-menu-btn {
            display: block;
            z-index: 1001;
            position: relative;
        }
    
        .nav-links {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: 0.3s ease-in-out;
            z-index: 1000;
            padding: 2rem;
            overflow-y: auto;
        }
    
        .nav-links.active {
            left: 0;
        }
    
        .nav-links a {
            font-size: 1.2rem;
            margin: 1rem 0;
        }
    }
    /* Hero Section */
    .hero {
      z-index:-1;
        padding: 1rem;
        min-height: auto;
    }
  
    .hero-content {
        padding-top: 60px;
        max-width: 100%;
    }
  
    .hero h1 {
        font-size: 36px;
    }
  
    /* Partners Section */
    .partners {
      width: 100%;
        position: relative;
        top: 0;
        padding: 2rem 1rem;
        border-radius: 0;
    }
  
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
  
    /* Lectures Series */
    .lec-series-container {
        padding-top: 2rem;
    }
  
    .lec-series-card {
        min-width: 100%;
    }
  
    .lec-series-card-img {
        height: 300px;
    }

        @media (max-width: 768px) {
            .workshops-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 36px;
            }
        }
        .zuhd-footer {
          background-image: url(./image/footerbg.jpg);
          background-position: center;
          background-size: cover;
            color: white;
            padding: 4rem 2rem;
        }
        
        .zuhd-footer__content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            font-family: "Open Sans", serif;
        
        }
        .zuhd-footer__logo{
            width: 30%;
            height: 30%;
        }
        
        .zuhd-footer__section {
            margin-bottom: 2rem;
            font-family: "Open Sans", serif;
        
        }
        
        .zuhd-footer__heading {
            color: #c69438;
            margin-bottom: 1rem;
            font-family: "Open Sans", serif;
        
        }
        .zuhd-footer__text{
          padding: 10px 0px;
          line-height:20px;
          font-family: "Open Sans", serif;
        
        }
        
        .zuhd-footer__list {
            list-style: none;
        }
        
        .zuhd-footer__list-item {
            margin-bottom: 0.5rem;
            font-family: "Open Sans", serif;
        
        }
        
        .zuhd-footer__link {
            color: white;
            text-decoration: none;
        }
        
        .zuhd-social__wrapper {
            display: flex;
            gap: 1rem;
            
            margin-top: 1rem;
        }
        
        .zuhd-social__link {
            color:#b38a2f;
            font-size: 1.5rem;
        }
        
        .zuhd-signup__form {
            display: flex;
            margin-top: 1rem;
        }
        
        .zuhd-signup__input {
            padding: 10px;
            border-radius: 30px;
            border: 1px solid;
            flex: 1;
        }
        
        .zuhd-signup__button {
            padding: 10px 20px;
            background-color: #c69438;
            border: none;
            color: white;
            border-radius: 30px;
            cursor: pointer;
        }
        
        .zuhd-footer__bottom {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-between;
        }
        
/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .nav-links {
        height: -webkit-fill-available;
    }
  }
  
  /* Improved touch targets for mobile */
  @media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .zuhd-footer__link,
    .zuhd-social__link {
        padding: 12px;
    }
  
    .workshop-nav-btn,
    .nav-arrow {
        min-width: 44px;
        min-height: 44px;
    }
  }
  @media (max-width: 768px) {
  
}
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
}
.nav-links {
    display: flex
;
    gap: 2rem;
}

