/* Industrial Color Palette */
:root {
    --brand-yellow: #ffc107;
    --brand-dark: #212529;
}

.hover-yellow:hover {
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
    transition: 0.3s;
    cursor: pointer;
}

.hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    letter-spacing: 1px;
    color: var(--brand-dark) !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background-attachment: fixed !important;
}

/* Parallax effect */
.card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

/* Logo Styling */
.navbar-brand img {
    max-width: 180px; /* Adjust based on your logo shape */
    height: auto;
    max-height: 60px;
}

/* Footer & Backlink Styling */
footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 30px; 
    right: 30px;
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px; 
    text-align: center;
    font-size: 30px; 
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3); 
    z-index: 1000; 
    line-height: 60px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Fix for visibility issues */
.text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important; /* Brighter than default muted */
}

/* Ensure form labels are visible */
.form-label {
    color: #212529;
    font-weight: 600;
}

/* Custom shadow for the contact container to make it pop */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Improved Input focus for better UX */
.form-control:focus {
    background-color: #fff !important;
    border: 1px solid #ffc107 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}