/* Custom styles for Licorería Nelvi */

body {
    background-color: #1a1a1a;
    color: #FFD700;
    font-family: 'Arial', sans-serif;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    background-color: #1a1a1a !important;
}

.text-gold {
    color: #FFD700 !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.bg-burgundy {
    background-color: #800020 !important;
}

.border-gold {
    border-color: #FFD700 !important;
}

.btn-burgundy {
    background-color: #800020;
    border-color: #800020;
    color: #FFD700;
}

.btn-burgundy:hover {
    background-color: #a0002a;
    border-color: #a0002a;
}

.btn-outline-gold {
    color: #FFD700;
    border-color: #FFD700;
}

.btn-outline-gold:hover {
    background-color: #FFD700;
    color: #1a1a1a;
}

.btn-gold {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1a1a1a;
}

.btn-gold:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.banner {
    background-image: linear-gradient(to right, #1a1a1a, #800020);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.banner h2 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.banner p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    color: #FFD700 !important;
}

.navbar-nav .nav-link:hover {
    color: #800020 !important;
}

.cart-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 15px;
}

.cart-icon i {
    font-size: 1.5rem;
    color: #FFD700;
}

.cart-icon .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 0.8rem;
    padding: 4px 8px;
}

.form-control {
    background-color: #1a1a1a !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
}

.form-control:focus {
    background-color: #1a1a1a !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: #800020 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner .display-4 {
        font-size: 2rem;
    }

    .card {
        margin-bottom: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-9 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .banner .display-4 {
        font-size: 1.5rem;
    }

    .banner .lead {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }

    footer .row > div {
        margin-bottom: 1rem;
    }
}
