/* ==========================
   GLOBAL
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ==========================
   NAVBAR MODERNO / ADMIN
========================== */
.navbar-modern, .navbar-admin {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 0.8rem 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-modern a.nav-link, .navbar-admin a.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-modern a.nav-link:hover, .navbar-admin a.nav-link:hover {
    color: #ff416c;
}

.navbar-modern .btn-vanguard, .navbar-admin .btn-vanguard {
    background: linear-gradient(45deg,#ff416c,#ff4b2b);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-modern .btn-vanguard:hover, .navbar-admin .btn-vanguard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ==========================
   BOTONES GENERALES
========================== */
.btn-danger {
    background: linear-gradient(45deg,#ff4b2b,#ff416c);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-google {
    background: #dd4b39;
    color: white;
}

.btn-facebook {
    background: #3b5998;
    color: white;
}

/* ==========================
   CARD / FORMULARIOS
========================== */
.card {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 2rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-header {
    border-radius: 15px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* FORM INPUTS */
.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.6rem 0.8rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff416c;
    box-shadow: 0 0 8px rgba(255,65,108,0.5);
    outline: none;
}

/* FORM LABELS ICONS */
label.control-label i {
    color: #ff416c;
}

/* ==========================
   TITULOS
========================== */
.titulo-contacto, .titulo-login, .titulo-registro {
    text-shadow: 2px 2px 5px lightblue;
    color: darkblue;
    font-weight: 700;
}

/* ==========================
   EFECTO FLOTANTE "NEXT.JS HERO"
========================== */
.hero-float {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================
   FOOTER ADMIN / GENERAL
========================== */
.footer-modern, .footer-admin {
    background: rgba(173,216,230,0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    color: #333;
    font-weight: 500;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer-modern h6, .footer-admin h6 {
    font-weight: 600;
    color: #333;
}

.footer-modern a, .footer-admin a {
    color: #ff416c;
    text-decoration: none;
}

.footer-modern a:hover, .footer-admin a:hover {
    text-decoration: underline;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 991px) {
    .navbar-modern, .navbar-admin {
        border-radius: 0;
        padding: 0.6rem 1rem;
    }

    .card {
        padding: 1rem;
        margin: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-float {
        animation: none;
    }
    .btn-vanguard, .btn-danger {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
a:hover {
    opacity: .9;
    transform: translateY(-1px);
}