/* Custom styles for Let's Junk It website built with Bootstrap */
/* Premium minimal look */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Define a simple colour palette for branding */
:root {
    /* Colour palette inspired by assemblyexperts.ca */
    --primary-color: #1a1a1a; /* dark charcoal background */
    --secondary-color: #ed1b2f; /* vibrant red accent */
    --accent-color: #ffffff; /* white for contrast */
    --light-bg: #f8f9fa; /* light grey background for sections */
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background-color: var(--light-bg);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Navbar customisations */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

/* Premium “glass” navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(26, 26, 26, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    margin-right: 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero section */
/* Hero section styles with background image and dark overlay */
.hero {
    color: #ffffff;
    position: relative;
    padding: 6rem 0;
    text-align: left;
    background-image: url('../images/header-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay on hero to increase contrast */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Ensure hero content appears above overlay */
.hero > .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Hero accent */
.hero h1 .accent {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Primary call-to-action button styling */
.btn-accent {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    text-transform: none;
    border: none;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.btn-accent:hover {
    background-color: #c41226;
    color: #ffffff;
}

/* Secondary call-to-action outline button */
.btn-outline-light {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    text-transform: none;
    background: transparent;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.btn-outline-light:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Services cards */
.service-card {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    background-color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

/* Make entire service cards clickable by wrapping them in anchor tags */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* Trust chips */
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Section titles */
.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Before/after gallery */
.gallery-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gallery-img:hover img {
    transform: scale(1.02);
}

/* Premium FAQ accordion */
.accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(237, 27, 47, 0.06);
}

/* Sticky mobile CTA bar */
.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    padding: 0.75rem;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-cta .btn {
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .mobile-cta { display: none; }
}

@media (max-width: 991.98px) {
    body { padding-bottom: 88px; }
}

.service-card h3 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    margin: 0.5rem 0 1.5rem;
}

.service-card .price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Process steps numbering style */
.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-color);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1rem;
}

/* Top Header Bar */
.top-header {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-header-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.2s ease;
}

a.top-header-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .top-header {
        font-size: 0.75rem;
    }
    .top-header .gap-3 {
        gap: 0.5rem !important;
    }
}

/* Navbar brand logo image */
.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Footer banner image */
.footer-banner {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 2rem;
}

/* Footer logo image */
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.75rem;
    display: block;
}

/* Logo images used in content sections */
.section-logo {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}
