
h1, h2, h3, h4, h5, h6,
p, ul, li {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* Typography */
h1 { font-size: 2.75rem; font-weight: bold; margin-top: 1rem; }
h2 { font-size: 2.25rem; font-weight: bold; margin-top: 1rem; }
h3 { font-size: 1.875rem; font-weight: bold; margin-top: 1rem; }
h4 { font-size: 1.5rem; font-weight: bold; margin-top: 1rem; }
h5 { font-size: 1.125rem; margin-top: 1rem; }
h6 { font-size: 1rem; margin-top: 1rem; }
p, li { font-size: 1rem; margin-top: 1rem; }

/* Links */
a {
    color: #333;
    text-decoration: none;
}
a:hover {
    color: #333;
}

/* Utility Colors */
.text-gold { color: #d3b800 !important; }
.text-lightgray { color: #ddd !important; }
.text-white { color: #fff !important; }
.bg-lightgray { background-color: #f4f4f4 !important; }

/* Buttons */
.btn-gold {
    background-color: #d3b800;
    color: #000;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    display: inline-block;
}
.btn-gold:hover {
    background-color: #fff;
}

.btn-gold-invert {
    background-color: #d3b800;
    color: #000;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
}
.btn-gold-invert:hover {
    background-color: #000;
    color: #fff;
}

/* Navbar */
.navbar-dark {
    background-color: #000;
}
.navbar-brand {
    color: #d3b800 !important;
    font-size: 2rem;
    font-weight: bold;
}
.navbar-nav .nav-link {
    font-size: 1.125rem;
    color: #fff !important;
}
.navbar-nav .nav-link.active {
    border-bottom: 3px solid #fff;
}

/* Hero / Carousel */
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 1rem;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.75);
}
.hero h1 {
    font-size: 3rem;
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
}
.carousel-indicators .active {
    background-color: #d3b800;
}

/* Sections */
section {
    padding: 5rem 0;
}
.section-bg-light { background-color: #f4f4f4; }
.section-bg-dark { background-color: #000; color: #fff; }

/* Cards & Icons */
.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #d3b800;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
}
.footer-top {
    padding: 2rem 0;
}
.footer-bottom {
    background-color: #111;
    padding: 0.5rem 0;
}
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #666;
    color: #fff;
    transition: background-color 0.3s ease;
}
.footer-social a:hover {
    transform: rotate(360deg);
}

/* Back-to-top button */
#toTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    background-color: #d3b800;
    border-radius: 50%;
    padding: 0.75rem;
}

/* Responsive Tweaks */
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    section {
        padding: 3rem 1rem;
    }
    .navbar-nav {
        background-color: #000;
    }
}
 :root {
      --primary-color: #d3b800; /* Navbar background */
      --active-color: green; /* Active link background */
      --text-color: #ffffff;
    }
    
    .fa-xl {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }
    a.icoYoutube {
      color: #ff0000;
    }
    a.icoFacebook {
      color: #4267b2;
    }
    a.icoInstagram {
      color: #e1306c;
    }
    a.icoYoutube:hover, a.icoFacebook:hover, a.icoInstagram:hover {
      transform: scale(1.2);
    }
    a.icoYoutube:focus, a.icoFacebook:focus, a.icoInstagram:focus {
      outline: 2px solid currentColor;
      outline-offset: 2px;
    }
    
     .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .nav-link i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .nav-link {
      background: var(--primary-color);
      color: var(--text-color);
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .nav-link:hover, .nav-link:focus {
      background: #b89a00; /* Slightly darker than #d3b800 */
      transform: scale(1.05);
    }
    .nav-link.active {
      background: var(--active-color);
      color: var(--text-color) !important;
    }
    .navbar-brand img {
      width: clamp(40px, 20vw, 40px);
    }
    section {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      min-height: 100vh;
      padding: 2rem 0;
    }
    section.visible {
      opacity: 1;
      transform: translateY(0);
    }
    html {
      scroll-behavior: smooth;
    }
   
   
    
    .hero {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      top: 50%;
      transform: translateY(-50%);
      padding: 20px;
    }
    .hero h1.mgt {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    .hero h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .hero a.button {
      display: inline-block;
      padding: 10px 20px;
      background: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2rem;
    }
    .hero a.button:hover {
      background: #0056b3;
    }
    /* Footer Styles */
    .footer-top, .footer-bottom {
      background: #f8f9fa;
      padding: 2rem 0;
    }
    .footer-top h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .footer-top p, .footer-top a {
      color: #333;
      margin-bottom: 0.5rem;
    }
    .footer-top a:hover {
      color: #007bff;
    }
    .footer-bottom {
      border-top: 1px solid #dee2e6;
    }
    .footer-bottom p {
      margin: 0;
      color: #333;
    }
    .footer-bottom .social-circle {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: flex-end;
      gap: 1rem;
    }
    .footer-bottom .social-circle li {
      display: inline-block;
    }
    .to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #d3b800;
      color: #000;
      border: none;
      padding: 10px;
      border-radius: 5px;
      cursor: pointer;
      display: none;
      z-index: 1000;
    }
    .to-top:hover {
      background: #b89a00;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .fa-xl {
        font-size: 1.2rem;
      }
      .navbar-nav {
        text-align: center;
      }
      .hero h1.mgt {
        font-size: 2rem;
      }
      .hero h3 {
        font-size: 1rem;
      }
      .hero a.button {
        font-size: 1rem;
        padding: 8px 16px;
      }
      .footer-bottom .social-circle {
        justify-content: center;
      }
    }
    @media (min-width: 1200px) {
      .container {
        max-width: 1140px;
      }
    }