/* CSS Variables for Consistency */
:root {
    --primary-color: #260101;
    --secondary-color: #593A29;
    --font-color: #333;
    --background-color: #f5f5f5;
    --background-light-color: #fff;
    --color-primary: #292623;
    --color-secondary: #025464;
    --color-accent: #4e4b3e;
    --color-background: #e7e7e7;
    --color-text: #333333;
    --spirit-journey-bg: #fff9f0;
    --spirit-card-bg: #ffffff;
    --spirit-border: #e8d9c5;
    --spirit-highlight: #f0e6d2;
    --spirit-primary: #8b5a2b;
    --spirit-secondary: #a67c52;

    
    
    /* --text-color: #333; */
    --bg-color: #ffffff;
    --hover-color: #e6e6e6;
    --border-radius: 8px;
    --transition-speed: 0.3s ease;

}

/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--font-color);
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    transition: all var(--transition-speed);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--primary-color);
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .search-bar {
    position: relative;
    margin-left: auto;
    margin-right: 80px;
    color: var(--primary-color);

  }

  .search-bar input {
    padding: 10px 40px 10px 15px;
    border: 1px solid rgba(216, 213, 213, 0.8);
    border-radius: 25px;
    width: 250px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: all var(--transition-speed);
  }

  .search-bar input:focus {
    width: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: 0 0 0 2px rgba(12, 99, 228, 0.2);
  }

  .search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    cursor: pointer;
    transition: color var(--transition-speed);
  }

  .search-bar i:hover {
    color: var(--primary-color);
  }

  .nav-links {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
  }

  .nav-links li a:hover::after {
    width: 100%;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-trigger {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    padding: 10px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .dropdown-trigger:hover {
    background-color: var(--hover-color);
    /* background-color: #333; */
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px;
    min-width: 160px;
    z-index: 1;
  }

  .dropdown-item {
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color var(--transition-speed);
  }

  .dropdown-item:hover {
    background-color: var(--hover-color);
  }

  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-color);
    transition: transform var(--transition-speed);
  }

  .hamburger.active {
    transform: rotate(90deg);
  }

  @media (max-width: 768px) {
    .nav-left {
      width: 100%;
      justify-content: space-between;
    }

    .search-bar {
      display: none;
    }


    .nav-links {
      display: none;
      flex-direction: column;
      position: fixed;
      color: #e0e0e0;
      top: 70px;
      left: 0;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: rgba(56, 53, 53, 0.9);
      backdrop-filter: blur(20px);
      padding: 20px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      transition: transform var(--transition-speed), opacity var(--transition-speed);
      transform: translateY(-100%);
      opacity: 0;
    }

    .nav-links.show {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }

    .nav-links li {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.show li {
      opacity: 1;
      transform: translateY(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .hamburger {
      display: block;
    }

    .dropdown {
      width: 100%;
    }

    .dropdown-trigger {
      width: 100%;
      justify-content: space-between;
    }

    .dropdown-content {
      position: static;
      box-shadow: none;
      margin-top: 10px;
    }

    .nav-links .search-bar {
      display: block;
      width: 100%;
      margin: 20px 0;
    }

    .search-bar input{
        color: #ddd;
    }

    .nav-links .search-bar input {
      width: 100%;
    }
  }

/* Hero Section */


    .hero {
      width: 100%;
      height: 100vh; /* Full viewport height */
      position: relative;
      overflow: hidden;
      margin-top: 0; /* Remove top margin */
      background-color: #ffffff; /* White background */
    }

    .swiper-container {
      width: 100%;
      height: 100%;
      max-width: 100%; /* Full width */
      margin: 0; /* No margin */
      background-color: #ffffff; /* White background */
    }

    .swiper-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-slide img.slider-image {
        width: 100%;
        height: auto; /* Auto height for proper aspect ratio */
        max-height: 60vh; /* Increased maximum height */
        object-fit: contain; /* Show the full image without cropping */
        object-position: center; /* Centers the image within the container */
        min-height: 300px; /* Increased minimum height */
        /* filter: brightness(95%); Brighter images */
        display: block;
        background-color: #ffffff; /* White background */
        margin-top: 70px; /* Add space for the header */
      }

      /* Make the second slide's image medium-sized */
      .swiper-slide img.slider-image {
        transition: all 0.3s ease; /* Smooth transitions */
      }
      
      /* Apply specific styling to the Beliefs image regardless of position */
      .swiper-slide img[src*="Artboard 5 - Beliefs Overlay.png"] {
        max-height: 50vh;
        min-height: 270px;
        transform: scale(1.1);
        margin-top: 160px;
      }
      
      /* Make the Geography image larger */
      .swiper-slide img.slider-image[src*="Geography and teritory.png"] {
        max-height: 65vh; /* Larger maximum height */
        min-height: 320px; /* Larger minimum height */
        transform: scale(1.3); /* Larger scale */
        margin-top: 70px; /* Reduced top margin */
        transition: all 0.3s ease; /* Smooth transitions */
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
      }

      /* Tablet and mobile devices */
      @media screen and (max-width: 1024px) {
        .swiper-slide img.slider-image[src*="Geography and teritory.png"] {
          max-height: 60vh;
          min-height: 280px;
          transform: scale(1.3);
          margin-top: 60px;
        }
      }

      /* Mobile devices */
      @media screen and (max-width: 768px) {
        .swiper-slide img.slider-image[src*="Geography and teritory.png"] {
          max-height: 50vh;
          min-height: 240px;
          transform: scale(1.1);
          margin-top: 50px;
        }
      }

      /* Small mobile devices */
      @media screen and (max-width: 480px) {
        .swiper-slide img.slider-image[src*="Geography and teritory.png"] {
          max-height: 45vh;
          min-height: 200px;
          transform: scale(1);
          margin-top: 40px;
        }
      }
      
      /* Specific styling for the Cultures image to make it larger */
      .swiper-slide img[src*="Cultures (2).png"] {
        max-height: 75vh; /* Even larger maximum height */
        min-height: 400px; /* Even larger minimum height */
        transform: scale(1.25); /* Scale up by 25% */
        margin-top: 60px; /* Slightly reduced top margin to accommodate larger size */
      }
      
      /* Specific styling for the History image to make it slightly larger */
      .swiper-slide img[src*="History.png"] {
        max-height: 65vh; /* Slightly larger maximum height */
        min-height: 320px; /* Slightly larger minimum height */
        transform: scale(1.1); /* Scale up by 10% */
        margin-top: 65px; /* Slightly reduced top margin */
      }
      
      /* Specific styling for the Languages image to make it slightly smaller */
      .swiper-slide img[src*="culturess.png"] {
        max-height: 40vh; /* Slightly increased from previous 50vh */
        min-height: 200px; /* Slightly increased from previous 270px */
        transform: scale(2.75); /* Scale down by only 5% instead of 10% */
        margin-top: 90px; /* Reduced margin to move image up */
      }
      
      /* Specific styling for the Languages image to make it very small */
      .swiper-slide img.slider-image[src*="culturess.png"] {
        max-height: 20vh; /* Very small maximum height */
        min-height: 100px; /* Very small minimum height */
        transform: scale(0.7); /* Very small scale */
        margin-top: 100px; /* Increased top margin */
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
      }
      
      /* Specific styling for the Geography image to make it slightly larger */
      .swiper-slide img[src*="Geography and teritory.png"] {
        max-height: 62vh; /* Slightly larger maximum height */
        min-height: 310px; /* Slightly larger minimum height */
        transform: scale(1.05); /* Scale up by 5% */
        margin-top: 68px; /* Slightly reduced top margin */
      }
      
      /* Ensure all slider images maintain the same aspect ratio */
      .swiper-slide {
        overflow: hidden;
        background-color: #ffffff; /* White background */
        padding: 20px; /* Add some padding around slides */
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        justify-content: center; /* Center content vertically */
        height: 100vh; /* Full viewport height */
      }

    /* Slide content styling */
    .slide-content {
        position: relative;
        text-align: center;
        color: var(--primary-color);
        z-index: 2;
        width: 100%;
        max-width: 600px; /* Limit maximum width */
        padding: 20px;
        background: rgba(255, 255, 255, 0.9); /* More opaque background */
        margin-top: 15px; /* Reduced space between image and content */
        
      }
    /* Slide Titles */
    .slide-content h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: var(--primary-color);
      font-weight: 700;
      animation: fadeInDown 1.2s ease-out;
    }

    /* Slide Descriptions */
    .slide-content p {
      font-size: 1rem;
      margin-bottom: 15px;
      color: var(--secondary-color);
      animation: fadeInUp 1.4s ease-out;
    }
    
    /* Responsive styles for the hero section */
    @media (max-width: 768px) {
      .hero {
        height: 100vh;
      }
      
      .swiper-slide {
        padding: 15px;
        height: 100vh;
      }
      
      .swiper-slide img.slider-image {
        max-height: 50vh;
        min-height: 200px;
        margin-top: 60px;
      }
      
      .slide-content {
        margin-top: 15px;
        padding: 15px;
        max-width: 90%;
      }
      
      .slide-content h2 {
        font-size: 1.8rem;
      }
      
      .slide-content p {
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        height: 100vh;
      }
      
      .swiper-slide {
        padding: 10px;
        height: 100vh;
      }
      
      .swiper-slide img.slider-image {
        max-height: 40vh;
        min-height: 150px;
        margin-top: 50px;
      }
      
      .slide-content {
        margin-top: 10px;
        padding: 12px;
        max-width: 95%;
      }
      
      .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
      }
      
      .slide-content p {
        margin-bottom: 10px;
        font-size: 0.85rem;
      }
    }

    /* Button Styles */
    .slide-content button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: fadeInUp 1.6s ease-out;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      margin-top: 5px;
    }

    .slide-content button:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    
    @media (max-width: 768px) {
      .slide-content button {
        padding: 8px 18px;
        font-size: 0.85rem;
      }
    }
    
    @media (max-width: 480px) {
      .slide-content button {
        padding: 7px 15px;
        font-size: 0.8rem;
      }
    }

    /* Pagination bullets styling */
    .swiper-pagination-bullet {
      background: rgba(121, 119, 119, 0.8);
      width: 12px;
      height: 12px;
    }

    .swiper-pagination-bullet-active {
      background: #ff5e57;
    }

    /* Navigation arrows styling */
    .swiper-button-next,
    .swiper-button-prev {
      color: #fff;
      opacity: 0.7;
      transition: opacity 0.3s;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      opacity: 1;
    }

    /* Keyframe animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Styling */
    @media screen and (max-width: 768px) {
      .slide-content h2 {
        font-size: 2.2rem;
      }
      .slide-content p {
        font-size: 1rem;
      }
      .slide-content button {
        padding: 10px 25px;
        font-size: 0.9rem;
      }

      .cta-button {
        font-size: 16px;
        padding: 8px 16px;
      }
    }


/* .hero {
    position: relative;
    height: 100vh;
    background-image: url('/images/uVelaphi.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin-bottom: 70px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3a7bc8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
} */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* .african-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    color: #000;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
} */

/* Explore Our Content Section */
.container {
    width: 100%;
    width: 100%;
    margin: 30px auto 0 auto;
    padding: 30px 20px 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(38,1,1,0.07);
    position: relative;
    overflow: hidden;
}

.explore-heading {
    font-size: 2.7rem;
    font-weight: 800;
    color: #260101;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    position: relative;
}
.explore-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #260101, #593A29);
    margin: 18px auto 0 auto;
    border-radius: 2px;
}
.explore-heading::before {
    content: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    background: none;
    box-shadow: none;
}
.category-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(38,1,1,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
}
.category-card:hover {
    box-shadow: 0 8px 32px rgba(131, 56, 21, 0.445);
    transform: translateX(-8px) scale(1.03);
}
.category-card .image-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-bottom: 1px solid #eee;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s;
}
.category-card:hover img {
    transform: scale(1.0);
}
.category-card .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.55s cubic-bezier(0.4, 0.01, 0, 1), opacity 0.35s;
    will-change: transform;
    padding: 24px 18px;
    text-align: center;
    z-index: 2;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}
.category-card:hover .overlay {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}
.category-card .overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.category-card .overlay p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.category-card .view-button {
    background: linear-gradient(90deg, #593A29 0%, #ffb347 100%);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 1.08rem;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.25s, box-shadow 0.25s, transform 0.18s;
    margin-top: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(89,58,41,0.10);
    outline: none;
}
.category-card .view-button:hover, .category-card .view-button:focus {
    background: linear-gradient(90deg, #ffb347 0%, #593A29 100%);
    color: #fffbe9;
    box-shadow: 0 6px 24px rgba(89,58,41,0.18);
    transform: translateY(-3px) scale(1.04);
}
@media (max-width: 900px) {
    .container { padding: 18px 4px 24px 4px; }
    .grid { gap: 18px; }
    .category-card { height: 260px; }
    .category-card .image-container { height: 90px; }
}
@media (max-width: 600px) {
    .container { padding: 8px 0 12px 0; }
    .explore-heading { font-size: 1.3rem; }
    .grid { gap: 8px; }
    .category-card { border-radius: 7px; height: 160px; }
    .category-card .image-container { height: 50px; }
    .category-card .overlay h1 { font-size: 1rem; }
    .category-card .overlay p { font-size: 0.7rem; }
    .category-card .view-button { font-size: 0.8rem; padding: 6px 12px; }
}

/* Cultures & Languages Section */
.culture-section {
    padding: 100px 0 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    animation: sectionPopIn 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 40px rgba(38,1,1,0.07);
}
.culture-section::before,
.culture-section::after {
    content: none !important;
    display: none !important;
}
.culture-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, #ffe5b4 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, #f7d9c4 0%, transparent 60%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.culture-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="8" fill="%23f7d9c4" fill-opacity="0.13"/></svg>') repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: patternPulse 3s infinite;
}
@keyframes sectionPopIn {
    0% { opacity: 0; transform: scale(0.97) translateY(40px); }
    80% { opacity: 1; transform: scale(1.02) translateY(-8px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.africa-heading {
    font-size: 3.7rem;
    color: #260101;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 10px;
    background: linear-gradient(90deg, #593A29 10%, #ffb347 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-fill-color: transparent; */
    animation: headingScale 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.africa-heading::after {
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    background: linear-gradient(to right, #ffb347, #593A29);
    margin: 22px auto 0 auto;
    border-radius: 2px;
    animation: underlineSlide 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.subheading {
    font-size: 2rem;
    color: #593A29;
    text-align: center;
    margin-bottom: 65px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.93;
    animation: fadeIn 1.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.culture-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
    position: relative;
    z-index: 1;
    animation: gridFadeIn 1.5s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.culture-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(38,1,1,0.10);
    cursor: pointer;
    background: #fffbe9;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: cardStaggerFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.culture-card:nth-child(1) { animation-delay: 0.1s; }
.culture-card:nth-child(2) { animation-delay: 0.2s; }
.culture-card:nth-child(3) { animation-delay: 0.3s; }
.culture-card:nth-child(4) { animation-delay: 0.4s; }
.culture-card:nth-child(5) { animation-delay: 0.5s; }
.culture-card:nth-child(6) { animation-delay: 0.6s; }
@keyframes cardStaggerFadeIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.97); }
    80% { opacity: 1; transform: translateY(-8px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.culture-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(38,1,1,0.18);
    background: linear-gradient(120deg, #fffbe9 60%, #ffe5b4 100%);
}
.culture-card .image-container {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #fbeee6 0%, #f7d9c4 100%);
    transition: background 0.4s;
}
.culture-card:hover .image-container {
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
}
.culture-card .image-container img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 16px rgba(38,1,1,0.07));
    transition: transform 0.4s, filter 0.4s;
}
.culture-card:hover .image-container img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 8px 24px rgba(38,1,1,0.13));
}
.culture-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38%;
    background: rgba(44, 44, 44, 0.62);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 22px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.35s, transform 0.35s;
}
.culture-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}
.culture-card .overlay h2 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #fffbe9;
    text-shadow: 0 2px 8px rgba(38,1,1,0.13);
}
.culture-card .overlay p {
    font-size: 1.15rem;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #ffe5b4;
    text-shadow: 0 1px 4px rgba(38,1,1,0.10);
}
.culture-card .overlay .greeting {
    font-size: 1rem;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fffbe9;
}
@media (max-width: 900px) {
    .culture-section { padding: 60px 0 50px 0; }
    .culture-grid { gap: 22px; }
    .culture-card .image-container { height: 150px; }
    .culture-card .overlay { padding: 16px 12px; }
}
@media (max-width: 600px) {
    .culture-section { padding: 40px 0 30px 0; }
    .africa-heading { font-size: 2.1rem; }
    .subheading { font-size: 1.1rem; }
    .culture-grid { gap: 12px; }
    .culture-card { border-radius: 10px; }
    .culture-card .image-container { height: 90px; }
    .culture-card .overlay { height: 55%; padding: 10px 7px; }
    .culture-card .overlay h2 { font-size: 1.1rem; }
    .culture-card .overlay p { font-size: 0.9rem; }
}

.proverbs-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    /* background: linear-gradient(90deg, #fffbe9 0%, #f7d9c4 100%); */
    padding: 40px 0 50px 0;
}

.proverb-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(38,1,1,0.10);
    padding: 38px 32px 32px 32px;
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

#proverb-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #593A29;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    background: linear-gradient(90deg, #593A29 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-fill-color: transparent; */
    margin-bottom: 18px;
    animation: fade-in 1.2s cubic-bezier(0.4, 0.01, 0, 1);
}

#proverb-source {
    font-size: 1.1rem;
    color: #bfa07a;
    margin-top: 6px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    opacity: 0.85;
    text-align: center;
}

@media (max-width: 700px) {
    .proverb-container { padding: 18px 8px 18px 8px; }
    #proverb-text { font-size: 1.1rem; }
    #proverb-source { font-size: 0.9rem; }
}

/* Modern Footer Styling */
.footer {
    background-color: #e7e7e7;
    color: #333;
    padding: 20px 0 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #f5f5f5, #cfcfcf, #f5f5f5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 95%;
    margin: 0 auto;
    padding: 0 10px;
}

.footer-section {
    position: relative;
}

.footer-logo {
    width: 100px; /* Reduced width from 150px to 100px */
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-section p {
    margin-bottom: 20px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333333;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #cccccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #593A29;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.85;
    position: relative;
    padding-left: 0;
}

/* Removed arrow before links */

.footer-links a:hover {
    opacity: 1;
    color: #555555;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: #555555;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(89, 58, 41, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input::placeholder {
    color: rgba(89, 58, 41, 0.6);
}

/* Footer Newsletter Form */
.footer-newsletter {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: 1px solid rgba(89, 58, 41, 0.2);
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter button {
    background-color: #5d4037; /* Dark brown color */
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    width: 100%;
    min-width: 120px;
    height: 42px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.footer-newsletter button:hover {
    background-color: #3e2723; /* Darker brown on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    opacity: 0.8;
}

.footer-section a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #555555;
    text-decoration: underline;
}

/* Hide accordion headers on desktop */
.accordion-header {
    display: none;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accordion-header {
        display: block;
        padding: 15px 0;
        font-weight: 600;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .accordion-header::after {
        content: '+';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .accordion-content {
        display: none;
        padding: 15px 0;
    }
    
    .accordion-content.active {
        display: block;
    }
}


.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-content {
    display: none;
    padding: 1rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #D2B48C !important; /* Light brown color on hover */
}

.social-icons svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

/* Facebook */
.social-icons a[href*="facebook"] svg {
    fill: #1877F2;
}

.social-icons a[href*="facebook"]:hover {
    background-color: #D2B48C !important;
}

/* Twitter/X */
.social-icons a[href*="twitter"] svg,
.social-icons a[href*="x.com"] svg {
    fill: #000000;
}

.social-icons a[href*="twitter"]:hover,
.social-icons a[href*="x.com"]:hover {
    background-color: #D2B48C !important;
}

/* Instagram */
.social-icons a[href*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.social-icons a[href*="instagram"] svg {
    fill: white;
}

/* TikTok */
.social-icons a[href*="tiktok"] svg {
    fill: #000000;
}

.social-icons a[href*="tiktok"]:hover {
    background-color: #D2B48C !important;
}

/* YouTube */
.social-icons a[href*="youtube"] svg {
    fill: #FF0000;
}

.social-icons a[href*="youtube"]:hover {
    background-color: #D2B48C !important;
}

/* LinkedIn */
.social-icons a[href*="linkedin"] svg {
    fill: #0A66C2;
}

.social-icons a[href*="linkedin"]:hover {
    background-color: #D2B48C !important;
}

/* Pinterest */
.social-icons a[href*="pinterest"] svg {
    fill: #E60023;
}

.social-icons a[href*="pinterest"]:hover {
    background-color: #D2B48C !important;
}

.accordion-content.active {
    display: block;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .accordion-header {
        display: none;
    }

    .accordion-content {
        display: block !important;
        padding: 0;
    }

    .footer-section {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Northern Khoikhoi Section Styling */
.tribal-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Spirit World Journey - Modern Design */
.spirit-journey {
    background: linear-gradient(135deg, #fff9f5 0%, #fff3ec 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 200, 180, 0.5);
    position: relative;
    overflow: hidden;
}

.spirit-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4a76a, #8b5a2b);
}

.spirit-journey .section-title {
    color: #5c3a21;
    font-size: 2.2rem;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0e6dd;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.spirit-journey .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    max-width: 800px;
}

.spirit-journey .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* Power Animals - Modern Design */
.power-animals {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 3rem 0;
    align-items: stretch;
}

.primary-animal {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-animal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a76a, #8b5a2b);
    transition: height 0.3s ease;
}

.primary-animal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.primary-animal .animal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.primary-animal:hover .animal-icon {
    transform: scale(1.1);
}

.primary-animal h5 {
    color: #8b5a2b;
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.primary-animal .animal-name {
    font-size: 2rem;
    font-weight: 800;
    color: #5c3a21;
    margin: 0.5rem 0 1.5rem;
    position: relative;
    display: inline-block;
}

.primary-animal .animal-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a76a;
    border-radius: 3px;
}

.primary-animal p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.other-animals {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.other-animals h5 {
    color: #5c3a21;
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.other-animals h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a76a;
    border-radius: 3px;
}

.animal-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.2rem;
    justify-content: center;
}

.animal-item {
    background: #fff9f5;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.animal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4a76a;
    transition: height 0.3s ease;
}

.animal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.animal-item:hover::before {
    height: 5px;
}

.animal-item .animal-icon {
    font-size: 2.2rem;
    display: block;
    margin: 0 auto 0.8rem;
    transition: transform 0.3s ease;
}

.animal-item:hover .animal-icon {
    transform: scale(1.2);
}

.animal-item span {
    display: block;
    font-weight: 600;
    color: #5c3a21;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.animal-item:hover span {
    color: #8b5a2b;
}

/* Trance Dance Section - Modern Design */
.trance-dance,
.altered-states,
.scientific-perspectives {
    background: white;
    padding: 2.2rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trance-dance:hover,
.altered-states:hover,
.scientific-perspectives:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trance-dance h5,
.altered-states h5,
.scientific-perspectives h5 {
    color: #5c3a21;
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0e6dd;
    position: relative;
    font-weight: 700;
}

.trance-dance h5::after,
.altered-states h5::after,
.scientific-perspectives h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #d4a76a;
    border-radius: 3px;
}

.trance-dance p,
.altered-states p,
.scientific-perspectives p {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
}

/* Phenomena List - Enhanced */
.phenomena-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
}

.phenomena-list li {
    background: #fff9f5;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.phenomena-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #d4a76a;
    transition: width 0.3s ease;
}

.phenomena-list li:hover {
    background: #fff3ec;
    transform: translateX(5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.phenomena-list li::after {
    content: '→';
    color: #d4a76a;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 0;
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.phenomena-list li:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Trance Phases */
.trance-phases {
    margin: 2rem 0;
}

.trance-phases h5 {
    color: var(--spirit-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.phase {
    display: flex;
    gap: 1.5rem;
    background: var(--spirit-card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spirit-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phase-number {
    background: var(--spirit-primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.phase-content h6 {
    color: var(--spirit-primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.patterns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.patterns span {
    background: var(--spirit-highlight);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--spirit-primary);
    border: 1px solid var(--spirit-border);
}

.note {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--spirit-border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .power-animals {
        flex-direction: column;
    }
    
    .phase {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .phase-number {
        margin-bottom: 1rem;
    }
    
    .phenomena-list {
        grid-template-columns: 1fr;
    }
}

.tribal-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #e67e22;
    display: inline-block;
}

.tribal-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.tribal-clans, .oorlams-section {
    margin: 2.5rem 0;
}

.tribal-section h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.tribal-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1.5rem;
    background: #e67e22;
    border-radius: 3px;
}

.clan-card {
    background: #f8f9fa;
    border-left: 4px solid #e67e22;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.clan-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clan-card h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.clan-card h5::before {
    content: '•';
    color: #e67e22;
    font-size: 1.8rem;
    margin-right: 0.8rem;
    line-height: 0;
}

.clan-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.oorlams-section {
    background: #f0f4f8;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.oorlams-section h4 {
    color: #2c3e50;
}

.geographical-note {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2.5rem;
    border-left: 4px solid #3498db;
}

.geographical-note p {
    color: #2c3e50;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tribal-section {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .tribal-section h3 {
        font-size: 1.6rem;
    }
    
    .clan-card {
        padding: 1.2rem;
    }
}