:root {
    --primary-red: #ba1728;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --dark-gold : #3f2300;
    --medium-gold : #7c4e03;
    --light-gold : #c68600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.hero {
      position: relative;
      min-height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      color: white;
      background-color: #1a2c24; /* fallback dark green */
    }

    /* BACKGROUND VIDEO */
    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.75) contrast(1.05);
    }

    /* OVERLAY for text readability */
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.26) 100%);
      z-index: 1;
    }

    /* TOP BAR (hamburger | logo | 3 buttons) */
    .header-top {
      position: relative;
      z-index: 20;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2rem;
      flex-wrap: wrap;
      backdrop-filter: blur(0px);
      background: transparent;
    }

    /* LEFT HAMBURGER MENU BUTTON */
    .menu-btn {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 60px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
      font-size: 28px;
      color: white;
      font-weight: 400;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .menu-btn:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: scale(1.02);
    }

    /* CENTER LOGO - medium sized */
    .logo {
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #FFF9E0, #F5E7A3);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      white-space: nowrap;
    }

    .logo span {
      font-weight: 500;
      font-size: 1.3rem;
      letter-spacing: normal;
      color: #F9E074;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
    }

    /* RIGHT BUTTONS GROUP (Experience, Products, Search) */
    .nav-buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .action-btn {
      background: rgba(255, 255, 255, 1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 0.9rem;
      color: #4e4516;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.3px;
    }

    .action-btn:hover {
      background: rgba(255, 215, 120, 0.8);
      border-color: #F5D742;
      color:#fff;
      transform: translateY(-2px);
      backdrop-filter: blur(10px);
    }

    /* INTRO TEXT - centered just below the logo */
    .hero-content {
      position: relative;
      z-index: 15;
      text-align: center;
      max-width: 880px;
      margin: 3rem auto 4rem auto;
      padding: 0 1.5rem;
      animation: fadeUp 0.9s ease-out;
    }

    .hero-content h1 {
      font-size: clamp(2rem, 6vw, 3.8rem);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      letter-spacing: -0.02em;
    }

    .hero-content p {
      font-size: clamp(1rem, 4vw, 1.35rem);
      font-weight: 400;
      max-width: 720px;
      margin: 0 auto 2rem auto;
      line-height: 1.6;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
      opacity: 0.95;
    }

    .intro-cta {
      display: inline-block;
      background: #D4AF37;
      color: #1E3A2F;
      border: none;
      padding: 0.8rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: inherit;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-decoration: none;
    }

    .intro-cta:hover {
      background: #F5D742;
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* -------------------------
       LEFT OFF-CANVAS MENU (mobile-first)
    ------------------------- */
    .side-menu {
      position: fixed;
      top: 0;
      left: -320px;
      width: min(320px, 85%);
      height: 100%;
      background: #0f2c21;
      backdrop-filter: blur(12px);
      background: rgba(18, 35, 28, 0.97);
      z-index: 1000;
      transition: left 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
      padding: 2rem 1.8rem;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(212, 175, 55, 0.4);
    }

    .side-menu.open {
      left: 0;
    }

    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2.5rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.5);
      padding-bottom: 1rem;
    }

    .menu-header h3 {
      font-size: 1.4rem;
      color: #F5E7A3;
      font-weight: 500;
    }

    .close-menu {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #fff3cf;
      transition: transform 0.2s;
      line-height: 1;
    }

    .close-menu:hover {
      transform: rotate(90deg);
      color: #D4AF37;
    }

    .side-menu ul {
      list-style: none;
      flex: 1;
    }

    .side-menu ul li {
      margin: 1.2rem 0;
    }

    .side-menu ul li a {
      color: #FEF5E0;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0.5rem 0;
    }

    .side-menu ul li a:hover {
      color: #E9C84A;
      transform: translateX(6px);
    }

    .side-menu ul li a img {
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
    }

    .menu-footer {
      margin-top: auto;
      padding-top: 2rem;
      font-size: 0.8rem;
      color: #b1cbbe;
      text-align: center;
    }

    /* overlay when menu is open */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(3px);
      z-index: 999;
      display: none;
      transition: 0.2s;
    }

    .menu-overlay.active {
      display: block;
    }

    /* body scroll lock when menu open */
    body.menu-open {
      overflow: hidden;
    }

    /* RESPONSIVE TWEAKS */
    @media (max-width: 780px) {
      .header-top {
        padding: 1rem 1.2rem;
      }

      .logo {
        font-size: 1.3rem;
        white-space: nowrap;
      }
      .logo span {
        font-size: 1rem;
      }

      .nav-buttons {
        gap: 0.6rem;
      }

      .action-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
      }
    }

    @media (max-width: 550px) {
      .action-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
      }
      .logo {
        font-size: 1rem;
      }
      .logo span {
        font-size: 0.85rem;
      }
      .menu-btn {
        width: 42px;
        height: 42px;
        font-size: 24px;
      }
      .hero-content {
        margin-top: 2rem;
      }
    }

    /* For larger screens: keep comfortable spacing */
    @media (min-width: 1200px) {
      .action-btn {
        padding: 0.65rem 1.6rem;
        font-size: 1rem;
      }
      .logo {
        font-size: 2rem;
      }
    }

    /* make sure intro button and text are always readable */
    a, button {
      -webkit-tap-highlight-color: transparent;
    }


/* Just to push footer down, you can remove this content */
.content {
    flex: 1;
    padding: 2rem;
    text-align: center;
}
footer {
    background: #1e3a2f;  /* deep green reminiscent of Rwandan hills */
    color: #f0f0e0;
    padding: 2rem 1rem 1rem;
    font-size: 0.95rem;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    align-items: start;
}
.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--light-gold);
    padding-left: 0.75rem;
    color: var(--light-gold);
}
.footer-section p, .footer-section ul {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section a {
    color: #e2e2c0;
    text-decoration: none;
    transition: all 0.2s;
    transform: translateY(0) scale(1);
}
.footer-section a:hover {
    color: var(--light-gold);
    text-decoration: none;
    transform: translateY(-1.2px) scale(1.05);
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.social-links a {
    background: #2b5a46;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}
/* Quick form styling */
.quick-form input, .quick-form select, .quick-form button {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 0.7rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
}
.quick-form input, .quick-form select {
    background: #fef9e6;
    color: #1e3a2f;
}
.quick-form button {
    background: var(--light-gold);
    color: #1e3a2f;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.quick-form button:hover {
    background: var(--medium-gold);
}
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #3e6b58;
    font-size: 0.8rem;
    color: #c0c0a8;
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3 {
        border-left: none;
        border-bottom: 2px solid var(--light-gold);
        display: inline-block;
        padding-bottom: 0.3rem;
    }
    .contact-info li {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}

    .footer-section ul {
        list-style: none;
        padding-left: 0;
    }
    .footer-section ul li {
        margin-bottom: 12px;
    }
    .footer-section ul li a {
        display: flex;          /* or inline-flex */
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #f0f0e0;
    }
    .quick-link-icon {
        background-image: url('../img/grad_back.png');
        background-repeat: repeat-x;
        background-size: contain;
        border-radius: 10px;
        width: 35px;
        height: auto;
        flex-shrink: 0;        /* prevents icon from shrinking */
    }

    .quick-link-icon-select {
        width:25px;
    }
    /* optional: hover effect */
    .footer-section ul li a:hover {
        color: #d4af37;
    }