/* Import Blockletter font from an online resource */
@import url('https://fonts.cdnfonts.com/css/blockletter');
/* Navigation Link Styles */
.navbar-nav .nav-link {
	color: #036BB2; /* Red color for navigation links */
	font-family: 'Blockletter', sans-serif; /* Apply Blockletter font */
	font-size: 18px;
}

.navbar-nav .nav-link:hover {
    text-decoration: none; /* Optional: Underline on hover for emphasis */
	color: #000000;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
}

.hero-section {
	/* [disabled]color: white; */
	text-shadow: 0px 0px 10px rgba(0,0,0,0.7);
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    font-size: 0.9rem;
}

footer h4 {
    color: #fff;
    font-size: 1.5rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

footer .btn-danger {
    background-color: #FF0000;
    border: none;
    font-family: 'Blockletter', sans-serif;
}

footer .btn-danger:hover {
    background-color: #cc0000;
}

.partner-logo {
    max-width: 60px;
    max-height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

@media (max-width: 768px) {
    footer .row {
        text-align: center;
    }

    .partner-logo {
        max-width: 60px;
        max-height: 35px;
        margin: 5px auto;
    }
}




/* Button Hover Effects */
.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-logos img {
        width: 60px;
    }
}


/* Transparent Rectangle */
.hero-overlay {
    background-color: rgba(255, 255, 255, 0.5); /* White with transparency */
    border-radius: 8px; /* Rounded corners for a polished look */
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Header Font Style */
.hero-title {
    font-family: 'Blockletter', sans-serif; /* Blockletter font */
    color: #000; /* Black text for contrast */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Button Styling */
.btn-report {
    font-family: 'Blockletter', sans-serif; /* Blockletter font */
    background-color: #FF0000; /* Red background */
    color: #FFFFFF; /* White text */
    padding: 10px 20px;
    font-size: 1.25rem;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-report:hover {
    background-color: #cc0000; /* Darker red on hover */
    text-decoration: none;
    color: #FFFFFF;
}

/* Green Button Styling */
.btn-verify {
    font-family: 'Blockletter', sans-serif; /* Blockletter font */
    background-color: #28a745; /* Green background */
    color: #FFFFFF; /* White text */
    padding: 10px 20px;
    font-size: 1.25rem;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-verify:hover {
    background-color: #218838; /* Darker green on hover */
    text-decoration: none;
    color: #FFFFFF;
}

/* Add spacing between buttons */
.me-3 {
    margin-right: 1rem;
}

/* Campaign Highlights Section */
h1.text-center {
    font-family: 'Blockletter', sans-serif;
    color: #333;
    margin-bottom: 30px;
}

.card-title {
    font-family: 'Blockletter', sans-serif;
    font-size: 1.2rem;
    color: #444;
}

.btn-learn-more {
    background-color: #FF0000; /* Red background */
    color: white;
    font-family: 'Blockletter', sans-serif;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #CC0000; /* Darker red on hover */
    text-decoration: none;
    color: #fff;
}

/* Product Authenticity Checker */
h1 {
    font-family: 'Blockletter', sans-serif;
    color: #333;
    margin-bottom: 20px;
}

.btn-verify {
    background-color: #28a745; /* Green background */
    color: white;
    font-family: 'Blockletter', sans-serif;
    font-size: 1rem;
    padding: 10px 20px;
    white-space: nowrap; /* Ensures button text stays on one line */
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-verify:hover {
    background-color: #218838; /* Darker green on hover */
    text-decoration: none;
    color: #fff;
}
/* How It Works Section */
#how-it-works {
    padding: 40px 0;
}

#how-it-works h1 {
    font-family: 'Blockletter', sans-serif;
    color: #333;
}

.how-it-works-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Card shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.how-it-works-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.how-it-works-card i {
    margin-bottom: 15px;
}

.how-it-works-card h4 {
    font-family: 'Blockletter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
}

.how-it-works-card p {
    font-size: 1rem;
    color: #666;
}

/* Trusted by Brands Section */
#trusted-brands {
    background-color: #f9f9f9; /* Light background for subtle distinction */
    padding: 60px 0;
}

#trusted-brands h1 {
    font-family: 'Blockletter', sans-serif;
    font-size: 2.5rem;
    color: #333;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-logo {
    max-width: 150px; /* Recommended maximum width */
    max-height: 100px; /* Recommended maximum height */
    object-fit: contain; /* Ensure logos are not stretched */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.brand-logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

@media (max-width: 768px) {
    .brand-logo {
        max-width: 120px; /* Adjust size for smaller screens */
        max-height: 80px;
        margin: 10px; /* Adjust spacing for mobile */
    }
}
