/* Legacy CSS - Most styles now handled by Vite compiled CSS */
/* This file is kept for backwards compatibility but most styles have been moved to resources/css/ */

:root {
    --primary-color: #8b0000; /* Rojo oscuro para tema de licor */
    --secondary-color: #f8f1e5; /* Beige claro para contraste */
    --accent-color: #ffb700; /* Dorado para acentos */
    --dark-color: #2c1a1d; /* Marrón oscuro */
    --light-color: #ffffff;
    --text-color: #333333;
}

/* Container utility - Bootstrap replacement */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
