/* ============================================
   MDK SHAWARMA - ESTILOS COMPARTIDOS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    min-height: 100vh;
}

/* ============================================
   HEADER CON LOGO
   ============================================ */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, #f4a460, #d4a017, #f4a460, transparent) 1;
    box-shadow: 0 4px 20px rgba(244, 164, 96, 0.3);
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.header-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #f4a460;
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.5);
    transition: transform 0.3s;
}

.header-logo img:hover {
    transform: rotate(360deg) scale(1.1);
}

.header h2 {
    background: linear-gradient(90deg, #f4a460, #d4a017, #f4a460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(244, 164, 96, 0.3);
}

.header-subtitle {
    color: #d4a017;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============================================
   MENÚ
   ============================================ */
.menu {
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 12px;
    position: sticky;
    top: 90px;
    z-index: 99;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.menu a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu a:hover {
    background: linear-gradient(135deg, #f4a460, #d4a017);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
    border-color: #f4a460;
}

.menu a:active {
    transform: translateY(0);
}

/* ============================================
   CONTENIDO
   ============================================ */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
}

h1 {
    background: linear-gradient(90deg, #f4a460, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 32px;
    text-align: center;
    letter-spacing: 1px;
}

/* ============================================
   TARJETAS DEL PANEL
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.2), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #f4a460;
    box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
}

.card-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(244, 164, 96, 0.5));
}

.card h3 {
    color: #f4a460;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffffff, #f4a460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BOTONES
   ============================================ */
button, .btn {
    background: linear-gradient(135deg, #f4a460, #d4a017);
    color: #000;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.5);
}

button:active, .btn:active {
    transform: translateY(0);
}

button:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content > * {
    animation: fadeIn 0.5s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header h2 {
        font-size: 20px;
    }
    
    .header-logo img {
        width: 50px;
        height: 50px;
    }
    
    .menu {
        top: 80px;
        padding: 8px;
    }
    
    .menu a {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .card p {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header h2 {
        font-size: 18px;
    }
    
    .header-logo img {
        width: 40px;
        height: 40px;
    }
    
    .header-subtitle {
        font-size: 10px;
    }
    
    .menu {
        top: 70px;
    }
    
    .menu a {
        font-size: 11px;
        padding: 6px 10px;
    }
}