/* ================================
   HADES Private Club — estilos-nuevo.css
   - Estilo oscuro elegante + dorado/naranja
   - Logo GRANDE en todas las páginas
================================== */

:root {
  --bg-1: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --text: #f1f1f1;
  --muted: #bdbdbd;
  --gold: #ffb84d;
  --orange: #ff6600;
  --shadow: rgba(0,0,0,0.45);
  --glow: rgba(255,165,0,0.55);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease;
}

html, body { height: 100%; }

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,140,0,0.15), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(255,200,0,0.10), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 50%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fade in */
.fade-in { animation: fadeIn 0.9s ease-in; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header centrado */
header {
  background-color: #111;
  padding: 40px 20px 25px;
  border-bottom: 2px solid #222;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== LOGO GRANDE (global) ===== */
.logo-img, .logo-top, .logo-main {
  display: block !important;
  margin: 0 auto 14px !important;
  float: none !important;
  align-self: center !important;

  width: min(96%, 520px);
  max-width: 520px;
  height: auto;

  filter: drop-shadow(0 0 25px rgba(255,150,0,0.5));
  animation: logoPulse 6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255,150,0,0.4)); }
  50%     { transform: scale(1.04); filter: drop-shadow(0 0 40px rgba(255,200,0,0.6)); }
}

header h1 {
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,165,0,0.5);
  margin-top: 6px;
  margin-bottom: 6px;
}

header p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 820px;
}

/* NAV */
nav {
  background-color: #000;
  text-align: center;
  padding: 12px 0;
}

nav a {
  color: #f1f1f1;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  font-size: 1.05em;
}

nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px var(--glow);
}

/* MAIN */
main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

main p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* BOTONES */
.btn {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  color: #111;
  border: none;
  padding: 14px 28px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  display: inline-block;
  margin-top: 15px;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,165,0,0.5);
}

/* Fila de botones centrada */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #888;
  font-size: 0.9em;
  margin-top: auto;
}

/* Selector idioma */
.lang-switch {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10;
  color: #f1f1f1;
  font-weight: bold;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.lang-switch span {
  cursor: pointer;
  margin: 0 6px;
}

.lang-switch span:hover,
.lang-switch span.active {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 600px) {
  nav a { display: block; margin: 8px 0; }
  .btn { width: 100%; }

  /* En móvil el logo baja para no romper todo */
  .logo-img, .logo-top, .logo-main {
    width: min(96%, 320px);
    max-width: 320px;
  }
}

/* Galería (si se usa clase) */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 10px auto 40px;
}

.galeria img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,165,0,0.4);
}

/* Ofertas */
.offer {
  margin: 20px auto;
  max-width: 900px;
  background: rgba(255,255,255,0.05);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.offer h2 { color: var(--orange); margin-bottom: 6px; }

/* Comentarios */
.comment-wrap {
  max-width: 900px;
  margin: 30px auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
}

.comment-item {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 12px 12px;
  margin-bottom: 12px;
  text-align: left;
}

.comment-item.pending {
  border-left-color: var(--orange);
  opacity: 0.85;
}

textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #222;
  color: #fff;
  outline: none;
}

/* Admin discreto */
.admin-gear {
  position: fixed;
  top: 15px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.2em;
  z-index: 1000;
  color: var(--gold);
}

.admin-panel {
  display: none;
  position: fixed;
  top: 60px;
  left: 20px;
  background: rgba(0,0,0,0.85);
  border-radius: 10px;
  padding: 12px;
  z-index: 999;
  width: 220px;
  border: 1px solid rgba(255,180,0,0.4);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.admin-panel button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  color: #111;
  font-weight: bold;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

