/* ==========================================================
   LUSSO LUXOR — GLOBAL STYLESHEET (Updated)
   ========================================================== */

/* ===== Base ===== */
body {
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #d4af37;
  line-height: 1.7;
  font-size: 1.1em;
}

/* ===== Logo Container ===== */
.logo-container {
  text-align: center;
  padding: 30px 0 10px;
  position: relative;
}

.logo-container img {
  max-width: 220px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* ===== Header ===== */
header {
  background: linear-gradient(135deg, #000 40%, #d4af37 160%);
  color: #d4af37;
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Glow under logo */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Header Title (Static Shimmer) ===== */
header h1 {
  font-size: 2.8em;
  margin: 15px 0 0;
  position: relative;
  background: linear-gradient(
    90deg,
    #b8962e 0%,
    #d4af37 25%,
    #f5e6a1 50%,
    #d4af37 75%,
    #b8962e 100%
  );
  background-size: 100% auto; /* Stopped moving */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 6px rgba(212, 175, 55, 0.3);
  z-index: 2;
}

/* ===== Typography ===== */
h2 {
  margin-top: 40px;
  font-size: 2em;
  text-align: center;
  color: #d4af37;
}

p, li {
  line-height: 1.7;
  color: #e8e8e8;
}

/* ===== Buttons ===== */
button, .btn {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  background: #d4af37;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background: gold;
  transform: scale(1.05);
}

/* ===== Accordion ===== */
.accordion {
  margin: 20px 0;
}

details {
  background: #111;
  color: #d4af37;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #d4af37;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
  cursor: pointer;
}

details summary {
  font-weight: bold;
}

/* ===== Form ===== */
form {
  background: #111;
  color: #d4af37;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
  margin-top: 30px;
}

label {
  display: block;
  margin-top: 18px;
  font-weight: bold;
  color: #d4af37;
  font-size: 1.05em;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 5px;
  border: 1px solid #d4af37;
  background: #000;
  color: #d4af37;
  font-size: 1em;
}

input::placeholder, textarea::placeholder {
  color: #a88e2d;
}

/* Checkbox & Language Groups */
.language-group, .checkbox-group {
  margin-top: 12px;
  font-size: 1.05em;
  color: #e8e8e8;
}

/* File Input */
input[type="file"] {
  border: 1px solid #d4af37;
  background: #111;
  padding: 10px;
}

/* ===== Login Button ===== */
.login-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  font-size: 0.9em;
  border: 1px solid #d4af37;
  border-radius: 6px;
  background: #000;
  color: #d4af37;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 3;
}

.login-btn:hover {
  background: #d4af37;
  color: #000;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 25px;
  background: #111;
  color: #d4af37;
  font-size: 1em;
  border-top: 1px solid #d4af37;
  box-shadow: 0 -2px 8px rgba(212, 175, 55, 0.15);
}
