/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
}

.comic-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #49a078;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 2px 2px 0px #1c6b4c;
  transition: all 0.3s ease;
  cursor: pointer;
}

.comic-button:hover {
  background-color: #d9a441;
  color: #0b3d2e;
  border: 2px solid #ffd700;
  box-shadow: 2px 2px 0px #3a3a3a;
}

.comic-button:active {
  background-color: #fff7e0;
  box-shadow: none;
  transform: translateY(4px);
}

/* Desktop layout */
.navbar {
    background: linear-gradient(to bottom, #000, #0b2a12);
    color: white;
    width: 250px;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
    padding: 20px;
    flex-shrink: 0;
}

.navbar-header {
      display: none;
}

.logo {
          max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.nav-section {
    margin-bottom: 20px;
}

.nav-section h3 {
    margin-bottom: 10px;
}

.nav-section ul {
    list-style-type: none;
}

.nav-section ul li {
    margin: 8px 0;
}

.nav-section ul li a {
    color: white;
    text-decoration: none;
}

/* Main content area */
.content {
    margin-left: 251px;
    flex: 1;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }
  
  /* Video for desktop */
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
  }
  
  /* Fallback image (shown on mobile) */
  .hero-image {
    background-image: url('img/your-image.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    display: none;
  }
  
  /* Overlay to darken background */
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  /* Centered text content */
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
  }
  
  .hero-text-box {
    border: 2px solid white;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    max-width: 90%;
    margin: auto;
  }
  
  .hero-text-box h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-text-box p {
    color: #fff;
    font-size: 1.2rem;
  }
  
  .banner-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 60vh;
  background-color: #f5f5f5;
}

.banner-image,
.banner-text {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

/* Image styling */
.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Text styling */
.banner-text {
  flex-direction: column;
  text-align: left;
}

.banner-text h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.banner-flex2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 60vh;
    background-color: #0a4d35;
  }
  
  .banner-image2,
  .banner-text2 {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
  }
  
  /* Image styling */
  .banner-image2 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Text styling */
  .banner-text2 {
    flex-direction: column;
    text-align: left;
  }
  
  .banner-text2 h2 {
    font-size: 2rem;
    color: #ededed;
    margin-bottom: 20px;
  }
  
  .banner-text2 p {
    font-size: 1.1rem;
    color: #aab49b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 0;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left,
.footer-right {
  flex: 1 1 48%;
  padding: 20px;
  box-sizing: border-box;
}

.footer-left h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 1rem;
  line-height: 1.6;
}

.newsletter-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form label {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: #ffffff;
  color: #000;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e0e0e0;
}

.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.9rem;
  margin-top: 30px;
}
  


.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
}

.card h3 {
    font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.25rem;
  margin: 15px 0 10px;
  color: #222;
}

.card p {
    font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.card button:hover {
  background-color: #005fa3;
}  

  .card-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .card {
    width: 32%;
  }
  
/* Mobile styles */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    
.card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  transition: transform 0.2s ease;
}

    .banner-image,
  .banner-text {
    flex: 1 1 100%;
    padding: 20px;
    text-align: center;
  }

  .banner-text h2 {
    font-size: 1.6rem;
  }

  .banner-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .banner-image2,
  .banner-text2 {
    flex: 1 1 100%;
    padding: 20px;
    text-align: center;
  }

  .banner-text2 h2 {
    font-size: 1.6rem;
  }

  .banner-text2 p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .logo {
         max-width: 60px;
    height: auto;
        margin-bottom: 0;
    }
    
    .navbar {
        
            flex-direction: column;
        align-items: stretch;
        padding: 10px 20px;
            display: flex;
        justify-content: space-between;
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
             width: 100%;
        justify-content: flex-end;
    }

    .hamburger {
    
        font-size: 28px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    .nav-sections {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        flex-direction: column;
    }

    .nav-sections.show {
        max-height: 600px;
    }

    .content {
        margin-left: 0;
    margin-top: 120px;
    }

    .hero-video {
        display: none;
      }
    
      .hero-image {
        display: block;
      }
    
      .hero-text-box h1 {
        font-size: 1.8rem;
      }
    
      .hero-text-box p {
        font-size: 1rem;
      }
    
      .hero-text-box {
        padding: 20px;
      }
      
      .footer-content {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    padding: 20px 10px;
  }

  .footer-logo {
    margin-top: 20px;
  }
}

