/* css/custom.css - Tema Burdeó para D'Williams */
:root {
    --primary-burgundy: #800020;
    --burgundy-dark: #600018;
    --burgundy-light: #A00028;
    --gold-accent: #D4AF37;
    --cream-bg: #F8F4F0;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-image: url('../img/leftbg2.webp');
    background-repeat: no-repeat;
    background-position: left top;
    background-attachment: fixed;
    background-color: var(--cream-bg);
}

/* NAVBAR BURDEÓ */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark)) !important;
    box-shadow: 0 2px 15px rgba(128, 0, 32, 0.3);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    color: #d8dbdf !important;
}

.nav-link:hover {
    color: var(--gold-accent) !important;
    transform: translateY(-2px);
}

.nav-link i {
    color: var(--gold-accent);
    width: 20px;
}

/* MENÚ LATERAL */
.sidebar-menu .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.1);
    overflow: hidden;
}

.bg-burgundy {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark)) !important;
}

.sidebar-menu .list-group-item {
    border: none;
    padding: 12px 40px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu .list-group-item:hover {
    border-left-color: var(--primary-burgundy);
    background: #e3e4e5;
    padding-left: 25px;
}

.sidebar-menu .list-group-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.sidebar-menu .list-group-item a:hover {
    color: var(--primary-burgundy);
}

.text-burgundy {
    color: var(--primary-burgundy) !important;
}

/* CONTENIDO PRINCIPAL */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(128, 0, 32, 0.1);
    min-height: 500px;
    border-left: 4px solid var(--primary-burgundy);
}

h1 {
    color: var(--primary-burgundy);
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 0.5rem;
}

/* FOOTER BURDEÓ */
.footer-custom {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark)) !important;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    border-top: 3px solid var(--gold-accent);
}

.footer-custom h5 {
    color: var(--gold-accent);
    font-weight: 600;
}

.footer-custom a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom a:hover {
    color: var(--gold-accent) !important;
}

/* ANIMACIONES */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar-brand img {
        width: 200px !important;
    }
    
    .content-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .footer-custom {
        text-align: center;
    }
}

a {
    color: #44010f;
     text-decoration: none;

}


    a:hover {
    color: #944444; 
}




.list-group-item {
    position: relative;
    display: block;

    color: #d8dbdf;
    text-decoration: none;
    background-color: #73001d;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #d4af37 !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #000000 !important;
}

  
/*probando */

.catalog-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .catalog-header {
            border-bottom: 2px solid var(--gold-accent);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }

        .text-burgundy {
            color: var(--primary-burgundy);
        }

        .catalog-item {
            transition: all 0.3s ease;
            border: 1px solid rgba(128, 0, 32, 0.1);
            border-radius: 8px;
            height: 100%;
            overflow: hidden;
        }

        .catalog-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(128, 0, 32, 0.15);
        }

        .catalog-item .card-body {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-weight: 600;
            line-height: 1.3;
            min-height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            text-align: center;
        }

        .product-image {
            max-height: 150px;
            width: auto;
            object-fit: contain;
            margin: 0 auto 15px;
        }

        .btn-burgundy {
            background-color: var(--primary-burgundy);
            color: white;
            border: none;
            padding: 6px 16px;
            border-radius: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-burgundy:hover {
            background-color: var(--burgundy-dark);
            color: white;
            transform: scale(1.03);
        }

        @media (max-width: 992px) {
            .product-title {
                min-height: 65px;
                font-size: 1rem;
            }
            
            .product-image {
                max-height: 130px;
            }
        }

        @media (max-width: 768px) {
            .product-title {
                min-height: auto;
                margin-bottom: 10px;
            }
            
            .product-image {
                max-height: 120px;
                margin-bottom: 10px;
            }
            
            .catalog-item .card-body {
                padding: 1rem;
            }
        }


        /*new comando  */  
        
        
        /* ===== SISTEMA DE NOTIFICACIONES ===== */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.notification {
    position: relative;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.hide {
    opacity: 0;
    transform: translateX(100%);
}

.notification-success {
    background-color: #28a745;
    border-left: 4px solid #1e7e34;
}

.notification-error {
    background-color: #dc3545;
    border-left: 4px solid #bd2130;
}

.notification-warning {
    background-color: #ffc107;
    color: #212529;
    border-left: 4px solid #d39e00;
}

.notification-info {
    background-color: #17a2b8;
    border-left: 4px solid #138496;
}

.notification-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.notification-message {
    font-size: 0.9rem;
    opacity: 0.9;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    margin-left: 10px;
    font-size: 1.1rem;
}

.notification-close:hover {
    opacity: 1;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
}

.notification-progress-bar {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* Para notificaciones en formularios */
.form-notification {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

.form-notification.show {
    display: block;
}
        
        