/* footer */
.footer-dark {
    background-color: #0f0f0f;
    color: #ccc;
}
.footer-dark a {
    color: #ccc;
    text-decoration: none;
}
.footer-dark a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-dark h5 {
    color: #fff;
    margin-bottom: 1rem;
}
.footer-dark p {
    margin-bottom: 0.5rem;
}

/* Categorías home */

.categoria-box {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.categoria-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 12px;
}
.categoria-box h5 {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Estilos globales */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* Hero section */
.hero {
    background: url('https://www.nuevaatlantis.ar/images/bg/home-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* Cards */
.card {
    background-color: #1e1e1e;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.card-title {
    color: #ffffff;
}
.card-text {
    color: #cccccc;
}
.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Footer */
footer {
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

/* Formularios */
.form-control, .form-select {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
}
.form-control::placeholder {
    color: #aaa;
}
.form-control:focus, .form-select:focus {
    border-color: #ad9263;
    box-shadow: 0 0 0 0.2rem rgba(203, 65, 84, 0.25);
}

/* Botones */
.btn-primary {
    background-color: #ad9263;
    border: none;
}
.btn-primary:hover {
    background-color: #e04d61;
}