/*
============================================
--- Color Palette & Variables ---
Use these variables to easily change the
website's color scheme.
============================================
*/
:root {
  /* Primary Brand Colors */
  --primary-color: #B8860B;       /* Goldenrod - Similar to the logo text */
  --accent-color: #A0522D;        /* Sienna - Similar to the lamp circle */


  /* Text Colors */
  --text-dark: #333333;          /* Dark Grey/Brown - Main body text */
  --text-muted: #777777;         /* Muted Grey/Brown - Secondary/descriptive text */
  --text-light: #FFFFFF;         /* White - For text on dark backgrounds */


  /* Background Colors */
  --bg-dark: #B8860B;            /* Goldenrod - Footer background (can be adjusted) */
  --bg-white: #FFFFFF;            /* White Smoke - Main content container, cards */
  --bg-subtle: #FAF0E6;          /* Light Goldenrod Yellow - Alternate section backgrounds */
  --bg-page: #fcfaf2;            /* Cornsilk - Main page background */
}


/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-dark);
    padding-top: 70px; 
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    overflow: hidden; 
}

@media (max-width: 1400px) {
    .page-container {
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 60px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: opacity 0.3s ease;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

p.text-muted {
    color: var(--text-muted) !important;
}

/* Rounded Corners & Shadows */
.rounded-4 { border-radius: 1rem !important; }
.card, .btn, .dropdown-menu { border-radius: 0.75rem; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important; }

/* Custom Primary Color & Button */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light-subtle { background-color: var(--bg-subtle) !important; }


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
    color: var(--text-light);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 20px;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
}
.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Header & Navbar */
.navbar-brand img {
    max-height: 40px;
    width: auto;
}

/* Hero Sections */
.hero-section-contained {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/home000.jpg') no-repeat center center/cover;
    border-radius: 1rem;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    background-color: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
}

.category-hero {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Section */
.process-number {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    border-radius: 50%;
    background-color: #FFFFFF; /* Kept light blue for visual distinction */
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.text-end .process-number {
    margin-right: 0;
    margin-left: 1rem;
    float: right;
}

/* Footer */
footer { 
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 0; 
}
footer h5 {
    color: var(--primary-color);
}
footer a { 
    color: rgba(255, 255, 255, 0.7);
}
footer a:hover { 
    color: var(--text-light);
    opacity: 1;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* WhatsApp Brand Color */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    opacity: 1;
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo_b {
    max-height: 35px;
}


.dropdown-item.active, .dropdown-item:active {
    text-decoration: none;
    background-color: #B8860B!important;
}


.btn-outline-primary {
    --bs-btn-color: #B8860B!important;
    --bs-btn-border-color: #B8860B!important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #B8860B!important;
    --bs-btn-hover-border-color: #B8860B!important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #B8860B!important;
    --bs-btn-active-border-color: #B8860B!important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #B8860B!important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #B8860B!important;
    --bs-gradient: none;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #B8860B!important;
    --bs-btn-border-color: #B8860B!important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #B8860B!important;
    --bs-btn-hover-border-color: #B8860B!important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #B8860B!important;
    --bs-btn-active-border-color: #B8860B!important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #B8860B!important;
    --bs-btn-disabled-border-color: #B8860B!important;
}

.display-6 {
    margin-top: 20px !important;
}