/* ============================================
   MELHOR SPA - CSS PRINCIPAL
   Modern Spa & Wellness Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
    /* Spa Color Palette - Soft & Elegant */
    --primary-color: #5d3222;
    --primary-dark: #4a2819;
    --primary-light: #8b5a3c;
    --secondary-color: #5d3222;
    --accent-rose: #5d3222;
    --accent-gold: #5d3222;
    --success-color: #a8c5a8;
    --danger-color: #d89090;
    --warning-color: #e8c896;
    --info-color: #5d3222;
    --light-color: #faf8f6;
    --dark-color: #5d3222;
    --cream: #f9f5f1;
    --beige: #e8dfd6;
    --soft-gray: #5d3222;

    /* Typography - Plus Jakarta Sans & Lora */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-subtitle: 'Lora', serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(212, 165, 165, 0.08);
    --shadow-md: 0 4px 16px rgba(212, 165, 165, 0.12);
    --shadow-lg: 0 8px 32px rgba(212, 165, 165, 0.16);
    --shadow-xl: 0 16px 48px rgba(212, 165, 165, 0.2);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    font-family: var(--font-body);
}

/* Subtítulos importantes com Lora */
.lead,
.subtitle,
.hero-section .lead,
.card-subtitle,
p.lead {
    font-family: var(--font-subtitle);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
    
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    position: relative;
    overflow: hidden;
}

/* ============================================
   HERO SECTION - Elegant Spa Design
   ============================================ */
.hero-section {
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%),
        url('../images/melhor-spa-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    height: 790px;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Pseudo-elementos removidos - usando imagem de fundo */

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-section .lead {
    font-family: var(--font-subtitle);
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.search-box {
    position: relative;
    max-width: 700px;
}

.search-box .input-group {
    box-shadow: var(--shadow-lg);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    border: 2px solid var(--primary-light);
    transition: all 0.4s ease;
}

.search-box .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.search-box .input-group-text {
    border: none;
    background: transparent;
    padding: 0 20px;
}

.search-box input {
    border: none;
    padding: 18px 20px;
    font-size: 1.05rem;
    background: transparent;
    font-family: var(--font-body);
    color: #5d3222 !important;
}

.search-box input::placeholder {
    color: rgba(93, 50, 34, 0.5) !important;
    font-weight: 300;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-box button {
    padding: 18px 40px;
    font-weight: 500;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 0 50px 50px 0;
    transition: all 0.4s ease;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.search-box button:hover {
    background: var(--primary-dark);
    transform: translateX(2px);
}

/* ============================================
   AUTOCOMPLETE
   ============================================ */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: #f8f9fa;
}

.autocomplete-item:last-child {
    border-bottom: none;
    color: #4a2819;
}

/* ============================================
   CARDS - Elegant Spa Cards
   ============================================ */
.cidade-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cidade-card .card {
    border: 1px solid rgba(212, 165, 165, 0.15);
    border-radius: 16px;
    background: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cidade-card:hover .card {
    border-color: var(--primary-color);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

.spa-card {
    overflow: hidden;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(212, 165, 165, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spa-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.spa-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.spa-card:hover img {
    transform: scale(1.08);
}

/* Spa Card Lista (sem foto) */
.spa-card-list {
    overflow: hidden;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(212, 165, 165, 0.1);
    transition: all 0.3s ease;
}

.spa-card-list:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.spa-card-list .card-body {
    padding: 1rem;
}

.spa-card-list h3 a:hover {
    color: var(--primary) !important;
}

/* Container de spas sem foto */
.spas-sem-foto .spa-card-list {
    width: 100%;
}

.card {
    border: 1px solid rgba(212, 165, 165, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

/* ============================================
   BADGES E TAGS
   ============================================ */
.badge {
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: white;
}

.badge.bg-success {
    background-color: var(--success-color) !important;
    color: white;
}

/* ============================================
   NAVBAR - Elegant & Minimal
   ============================================ */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
    padding: 1rem 0;
}

.navbar.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER - Elegant Dark Footer
   ============================================ */
footer {
    background: linear-gradient(135deg, #4a2819 0%, #5d3222 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 165, 165, 0.3) 50%,
            transparent 100%);
}

footer h5,
footer h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

footer p {
    color: #ffffff !important;
    font-size: 0.95rem;
}

footer li,
footer span,
footer div {
    color: #ffffff !important;
    font-size: 0.95rem;
}

footer a {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff !important;
    opacity: 0.8;
    transform: translateX(3px);
}

.social-links a {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

footer .border-secondary {
    border-color: rgba(212, 165, 165, 0.2) !important;
}

/* Classe para textos do rodapé com cor suave */
.footer-text {
    color: #f8fafa !important;
}

.footer-text a {
    color: #f8fafa !important;
}

.footer-text a:hover {
    color: #ffffff !important;
    opacity: 0.9;
}

/* ============================================
   FEATURE ICONS
   ============================================ */
.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(212, 165, 165, 0.2));
}

.feature-icon:hover i {
    transform: scale(1.15) translateY(-5px);
    color: var(--primary-dark);
    filter: drop-shadow(0 8px 16px rgba(212, 165, 165, 0.3));
}

/* Section Styling */
section.py-5 {
    padding: 80px 0 !important;
}

section.bg-light {
    background-color: var(--cream) !important;
}

section h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

/* CTA Section */
section.bg-primary {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--primary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

section.bg-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

section.bg-primary h2,
section.bg-primary p {
    position: relative;
    z-index: 2;
    color: white;
}

section.bg-primary .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid rgba(212, 165, 165, 0.2);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--light-color);
    border: none;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4a5a5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.8;
}


/* ============================================
   CAROUSEL - Elegant Gallery
   ============================================ */
.carousel {
    border-radius: 16px;
    overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-indicators button {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
}

.alert-success {
    background-color: rgba(168, 197, 168, 0.15);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(216, 144, 144, 0.15);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background-color: rgba(168, 200, 216, 0.15);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

/* ============================================
   BUTTONS - Modern & Elegant
   ============================================ */
.btn {
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.35);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.25);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ============================================
   FORMS - Elegant Form Styling
   ============================================ */
.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid rgba(212, 165, 165, 0.2);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 165, 0.15);
    background-color: var(--light-color);
    outline: none;
}

.form-label {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    section.py-5 {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 600px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .search-box {
        max-width: 100%;
    }

    .search-box input {
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .search-box button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    section.py-5 {
        padding: 50px 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 500px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .search-box .input-group {
        flex-direction: column;
        border-radius: 16px;
    }

    .search-box button {
        border-radius: 0 0 16px 16px;
        width: 100%;
    }
}

/* ============================================
   DETAILS / CONTEÚDO EXPANSÍVEL
   ============================================ */
details {
    border: 1px solid rgba(212, 165, 165, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    margin-bottom: 1rem;
}

details summary {
    list-style: none;
    transition: all 0.3s ease;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-color);
    background: var(--light-color);
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::before {
    content: '▶';
    display: inline-block;
    margin-right: 12px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

details[open] summary {
    background: var(--primary-light);
    border-bottom: 1px solid rgba(212, 165, 165, 0.2);
}

details[open] summary::before {
    transform: rotate(90deg);
}

details summary:hover {
    background: var(--primary-light) !important;
}

.conteudo-cidade {
    animation: slideDown 0.4s ease;
    padding: 1.5rem;
}

.conteudo-cidade h2,
.conteudo-cidade h3,
.conteudo-cidade h4 {
    font-family: var(--font-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.conteudo-cidade h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.conteudo-cidade h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.conteudo-cidade p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.conteudo-cidade ul,
.conteudo-cidade ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.conteudo-cidade li {
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
}

.conteudo-cidade a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.conteudo-cidade a:hover {
    color: var(--primary-dark);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-shadow {
    text-shadow: 0 2px 8px rgba(212, 165, 165, 0.3);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: #4a2819 !important;
}

.text-footer-light {
    color: #f8fafa !important;
}

/* Background Colors */
.bg-white {
    background-color: white !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Decorative Elements */
.decorative-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Image Overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(61, 52, 48, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-overlay:hover::after {
    opacity: 1;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--soft-gray);
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--dark-color);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--soft-gray);
}