/* ==========================================
   1. GLOBAL RESETS & GENERAL BODY SETTINGS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(186, 202, 240, 0.85); /* Matches your light blue main website background */
    font-family: 'Offside', sans-serif;
    overflow-x: hidden;
    height: 100%;
}

/* ==========================================
   2. CUSTOM MOUSE CURSOR SETTINGS
   ========================================== */
#custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* ==========================================
   3. HERO BANNER & BACKGROUND CONTAINER
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 450px; /* Locks banner height so it never goes overboard */
    overflow: hidden;
}

/* Background image stretches cleanly behind everything */
.mining-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Stretches structural container over image face */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(7px) brightness(70%); /* Adds a subtle blur effect to the background */
}

/* ==========================================
   4. TRANSPARENT NAVIGATION HEADER
   ========================================== */
.navbar {
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Strips out background boxes around logo branding text */
.logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding-left: 10px;
  /* Force top left placement */
  position: fixed;
  top: 20px;       /* Space from top edge */
  left: 25px;      /* Space from left edge */
  z-index: 1000;
  background-color: rgb(93, 81, 197);
  border-radius: 0px;
  width: 170px;
  height: 45px;
  white-space: nowrap;
  /* Keeps logo above other elements */
}

.logo-link {
    display: inline-block;
    background: transparent !important;
}

.nav-logo-img {
    height: 45px; /* Adjust height of logo graphic badge */
    width: auto;
    object-fit: contain;
    filter: brightness(0.5); /* Dims the actual image to 50% luminance */
}


/* ==========================================
   5. CENTRAL TITLES (HERO TEXT)
   ========================================== */

.hero-description {
    color: #ffffff;
    font-family: 'Offside', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 45px; /* Adds spacing between description and subtitle */
}

.hero-subtitle {
    color: #ffffff;
    font-family: 'Offside', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 10px; /* Adds spacing between subtitle and main title */
}

.hero-text {
    color: #ffffff;
    font-family: 'Offside', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 2px;
    margin: auto 0; /* Keeps title anchored vertically within remaining viewport space */
}

/* ==========================================
   6. BREADCRUMBS BAR (BELOW THE IMAGE)
   ========================================== */
.bread-crumb {
    width: 100%;
    padding: 20px 20px;
    display: flex;
    background-color: transparent; /* Seamlessly blends layout block into body background color */
}

.bread-crumbs {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.bread-crumbs li {
    font-size: 1rem;
    font-weight: 500;
}

.bread-crumbs li a {
    color: #333;
    text-decoration: none; 
}

.bread-crumbs li.separator {
    color: rgb(93, 81, 197); 
    font-weight: 400;
    opacity: 0.7;
}

/* ==========================================
   7. RESPONSIVE DESIGN ADJUSTMENTS (MOBILE)
   ========================================== */
@media (max-width: 768px) {
    .hero-section {
        height: 320px; /* Scales down image block frame on smaller screens */
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .hero-text {
        font-size: 2.2rem; /* Shrinks fonts on mobile screens so it fits single lines */
    }
}

.bread-crumb {
    width: 100%;
    padding: 20px 20px;
    display: flex;
    background-color: transparent; /* Seamlessly blends layout block into body background color */
}

.bread-crumbs {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.bread-crumbs li {
    font-size: 1rem;
    font-weight: 500;
}

.bread-crumbs li a {
    color: #333;
    text-decoration: none; 
}

.bread-crumbs li.separator {
    color: rgb(93, 81, 197); 
    font-weight: 400;
    opacity: 0.7;
}