/* ===========================================
   LOOKMOVIES FOUNDATION — GOLD & BLACK THEME X1
   =========================================== */

body {
  font-family: 'Arial', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #0b0b0b; /* deep cinematic black */
  color: #e5e5e5;
  line-height: 1.6;
}

/* HEADER & FOOTER */
header, footer {
  background: linear-gradient(180deg, #000, #111);
  text-align: center;
  padding: 25px;
  border-bottom: 1px solid #222;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

/* HEADINGS */
h1 {
  color: #ffd700; /* gold */
  margin: 0;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}
h2 {
  color: #f0c000;
  margin: 35px 0 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
h3 {
  color: #f5d97a;
  margin: 25px 0 10px;
}

/* TEXT & ELEMENTS */
p { color: #ddd; line-height: 1.8; margin: 15px 0; }
ul { margin: 15px 0; padding-left: 20px; }
hr { margin: 30px 0; border: 0; border-top: 1px solid #333; }
.container { max-width: 900px; margin: 0 auto; padding: 20px; }

/* LINKS */
a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
a:hover {
  color: #ffea75;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}
a:focus {
  outline: 2px solid #ffbf00;
  outline-offset: 2px;
}

/* ===== LOGO TEXT ===== */
.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  background: linear-gradient(90deg, #ffd700, #ffcc33, #fff1a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.6), 0 0 35px rgba(255, 255, 255, 0.15);
  text-decoration: none;
  animation: shimmer 3.5s infinite linear;
}
.text-logo::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 14px solid #ffd700;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
}

@keyframes shimmer {
  0% { text-shadow: 0 0 10px rgba(255,215,0,0.4); }
  50% { text-shadow: 0 0 25px rgba(255,215,0,0.9); }
  100% { text-shadow: 0 0 10px rgba(255,215,0,0.4); }
}

/* ===== NAV MENU ===== */
nav ul {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
nav li { display: inline; }
nav a {
  color: #e5e5e5;
  padding: 8px 14px;
  border-radius: 5px;
  transition: all 0.25s ease;
}
nav a:hover {
  background: linear-gradient(90deg, #ffd700, #ffcc33);
  color: #000;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

/* ===== GOLD BUTTON ===== */
.btn-red {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc33, #b8860b);
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}
.btn-red:hover {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.btn-red:focus {
  outline: 3px solid #ffea75;
  outline-offset: 2px;
}

/* ===== VIEW FULL BUTTON ===== */
#view-full {
  text-align: center;
  margin: 35px 0;
}
#view-full [data-vbtn] {
  display: inline-block;
  margin: 0 auto;
  background: linear-gradient(90deg, #ffd700, #ffcc33);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  padding: 13px 38px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
#view-full [data-vbtn]::after {
  content: "\27A3";
  font-size: 24px;
  margin-left: 10px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
#view-full [data-vbtn]:hover {
  background: linear-gradient(90deg, #ffea75, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}
#view-full [data-vbtn]:hover::after {
  transform: translateX(4px);
}
#view-full [data-vbtn]:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.25);
}

/* ===== FOOTER ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #f5d97a;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #fff1a1;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}
.footer-copy {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.1);
}
