/* General Body Styles - Dark Mode */
body {
    background-color: #000000 !important; /* Forces Pitch Black */
    font-family: 'Segoe UI', Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.5px;
}

.tracking-wide {
    letter-spacing: 2px;
}

.text-secondary-light {
    color: #b0b0b0;
}

/* Link Styling */
a {
    transition: all 0.3s ease;
}

a.hover-white:hover {
    color: #ffffff !important;
}

/* Hero Section */
.min-vh-80 {
    min-height: 80vh;
}

.ls-1 {
    letter-spacing: 1px;
}

/* Image Handling */
/* We remove borders and background colors so the image's black bg blends in */
.image-wrapper {
    max-width: 600px; 
    width: 100%;
    /* Ensure no padding or border disrupts the blend */
    padding: 0;
    margin: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    /* Optional: If the image black is slightly different from the website black, 
       this filter helps harmonize them, though #000000 usually matches perfectly. */
    mix-blend-mode: normal; 
}

/* Policy Page Styling */
.policy-card {
    /* Optional: Add a very subtle background to separate text blocks */
    /* background-color: #0a0a0a; */
    padding: 10px;
    border-radius: 8px;
}

.policy-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.policy-card li {
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness Tweaks */
@media (max-width: 991px) {
    .image-wrapper {
        margin-top: 3rem;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}
