
/* Dark site-wide background */
body {
    background-color: #111 !important;
    color: #eee !important;
}
/* Links */
a {
    color: #ffc107 !important;
}
a:hover {
    color: #fff !important;
}
/* Service cards and highlight cards background for dark mode */
.service-card, .highlight-card {
    background-color: #222 !important;
    box-shadow: 0 2px 8px rgba(255,255,255,0.1) !important;
}
/* Footer */
footer {
    background-color: #000 !important;
    color: #ccc !important;
}


body { margin: 0; font-family: Arial, sans-serif; background: #f4f4f4; }
nav { background: #111; padding: 1em; text-align: center; }
nav a { color: yellow; margin: 0 1em; text-decoration: none; font-weight: bold; }
.hero { background-image: url('images/copper_pipes.jpg'); background-size: cover; background-position: center; height: 60vh; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-overlay { background: rgba(0, 0, 0, 0.6); padding: 2rem; text-align: center; color: #fff; }
.hero .title { font-size: 3rem; margin: 0; color: yellow; text-shadow: 2px 2px 0 #000; }
.hero .tagline { font-size: 1.25rem; margin: 0.5em 0; }
.btn.request-quote { background: yellow; color: black; padding: 0.75em 1.5em; text-decoration: none; font-weight: bold; border-radius: 5px; display: inline-block; }
.services { padding: 2rem 0; text-align: center; }
.services .row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.services .service-card { width: calc(33% - 2rem); min-width: 200px; height: 200px; background-size: cover; background-position: center; position: relative; }
.services .card-caption { position: absolute; bottom: 0; width: 100%; background: rgba(0,0,0,0.6); color: white; padding: 0.5rem; font-size: 1.1rem; }
footer { background: #111; color: white; text-align: center; padding: 1em; margin-top: 2rem; }

.manufacturers {
    background-color: #333;
    color: #fff;
    padding: 4rem 0;
    margin-top: 4rem;
    text-align: center;
}
.manufacturers h2, .manufacturers p {
    margin: 0.5rem 0;
}

/* Move hero title to top-left */
.hero-overlay {
    text-align: left;
    align-items: flex-start;
}
.navbar-brand {
    position: absolute;
    top: 1rem;
    left: 1rem;
}


/* Styled Why Choose Us section */
.why-choose-us {
    background-color: #222;
    color: #fff;
    padding: 4rem 0;
    margin: 2rem 0;
    text-align: center;
}
.why-choose-us h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}
.why-choose-us p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}


/* Navbar brand positioning */
nav {
    position: relative;
    padding-left: 6rem; /* space for brand */
}
.navbar-brand {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: yellow;
    font-weight: bold;
}

/* Remove hero section styling */
.hero, .hero-overlay {
    display: none;
}


/* Combined Why Choose Us and Manufacturers styling */
.combined-section {
    background-color: #222;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}
.combined-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.combined-section p, .combined-section strong {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}


/* New Highlights Section Styling */
.highlights {
    padding: 4rem 0;
    background-color: #f8f8f8;
}
.highlight-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.highlight-card h2 {
    color: #222;
    margin-bottom: 1rem;
}
.highlight-card p {
    margin-bottom: 0.5rem;
    color: #555;
}


/* Make all text white */
body, h1, h2, h3, h4, h5, p, a, nav a, .card-caption, .highlight-card, .service-card, main, footer {
    color: #fff !important;
}
/* Ensure navbar-brand stays yellow */
.navbar-brand, .title {
    color: #ffc107 !important;
}
/* Why Choose Us full-width block */
.why-choose-us {
    background: #111;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}
/* Manufacturers full-width block */
.manufacturers {
    background: #ffc107;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}
.manufacturers h2, .manufacturers p, .manufacturers strong {
    color: #000 !important;
}


/* Pop effect for main brand name */
.navbar-brand {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffc107 !important;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 0.1em;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
}


/* 3D effect for main brand name */
.navbar-brand {
    text-shadow: 
        1px 1px 0 #aaa,
        2px 2px 0 #888,
        3px 3px 0 #666,
        4px 4px 0 #444,
        5px 5px 0 #222;
    transform: perspective(500px) rotateX(5deg);
}


/* Nicer gradient text effect for navbar-brand */
.navbar-brand {
    font-size: 2.5rem !important;
    font-weight: bold !important;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    -webkit-text-stroke: 1px #000;
}


/* Bolder font for navbar-brand */
.navbar-brand {
    font-family: 'Impact', 'Arial Black', sans-serif !important;
    font-size: 3rem !important;
    font-weight: normal !important;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    -webkit-text-stroke: 1px #000;
}

/* Products page list styling */
.product-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: none;
    padding: 0;
}
.product-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.product-list li:before {
    content: "\2022";
    color: #ffc107;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


/* Overlay styling for Why Choose Us section over hero */
.why-choose-us-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff !important;
    background: transparent !important;
    padding: 0;
}
.why-choose-us-overlay h2, .why-choose-us-overlay p, .why-choose-us-overlay strong {
    color: #fff !important;
}


/* Move Why Choose Us overlay to bottom center of hero */
.why-choose-us-overlay {
    top: auto !important;
    bottom: 10% !important;
    transform: translateX(-50%) !important;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 0.5rem;
}

/* Adjust navbar-brand spacing and letter-spacing */
.navbar-brand {
    letter-spacing: normal !important;
    padding: 0.5rem 1rem !important;
    top: 1rem !important;
    left: 1rem !important;
}


/* Improved Navbar Brand Spacing */
.navbar-brand {
    position: absolute !important;
    top: 0.75rem !important;
    left: 1rem !important;
    font-size: 2.2rem !important;
    padding: 0.3rem 0.6rem !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 0.3rem !important;
    margin: 0 !important;
}

/* Adjust nav padding to avoid overlap */
nav {
    padding-left: 6rem !important;
    padding-top: 1rem !important;
}

/* Ensure nav links align vertically */
nav a {
    line-height: 2rem !important;
}


/* Ensure navbar-brand is visible */
.navbar-brand {
    z-index: 2000 !important;
    color: #ffc107 !important;
    display: block;
}
/* Ensure nav position and overflow */
nav {
    position: relative !important;
    overflow: visible !important;
}


/* Improve navbar-brand readability */
.navbar-brand {
    color: #ffc107 !important; /* bright yellow */
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.3rem !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8) !important;
    display: inline-block !important;
    z-index: 3000 !important;
}


/* Force navbar-brand text to bright yellow */
.navbar-brand {
    color: #ffc107 !important; /* pure yellow */
    -webkit-text-fill-color: #ffc107 !important;
    
    
}


/* Fancy 3D-style effect for navbar-brand */
.navbar-brand {
    font-family: 'Impact', sans-serif;
    font-size: 2.5rem !important;
    background: linear-gradient(45deg, #ffc107, #e0a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute !important;
    top: 0.8rem !important;
    left: 1rem !important;
    padding: 0;
    margin: 0;
    transform: perspective(500px) rotateX(5deg) scale(1.1);
    text-shadow:
        1px 1px 0px rgba(0,0,0,0.3),
        2px 2px 0px rgba(0,0,0,0.2),
        3px 3px 2px rgba(0,0,0,0.2),
        4px 4px 4px rgba(0,0,0,0.15);
}
