/* style.css — GoMovies-like demo layout */
/* Fonts: Poppins loaded from Google */

:root{
  --bg:#071019;
  --accent:#00b8d9;
  --muted:#9fb6bd;
  --panel: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.06);
  --white: #edf6fb;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  background:var(--bg);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Container */
.container{ max-width:1200px; margin:0 auto; padding:0 20px;}

/* Header */
.site-header{ position:fixed; inset:0 0 auto 0; top:0; z-index:40;background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15)); }
.header-inner{
  display:flex;
  align-items:center;
  gap:24px;
  padding:18px 20px;
  backdrop-filter: blur(4px);
}
.brand .logo {
    display: block;
    width: 200px;
    height: auto;
    vertical-align: middle;
}
.main-nav ul{ list-style:none; display:flex; gap:18px; margin:0; padding:0; align-items:center; }
.main-nav a{ color:var(--white); text-decoration:none; font-weight:600; opacity:0.95; }
.main-nav a:hover{ color:var(--accent) }

/* search top (small) */
.search-top{ margin-left:auto; display:flex; gap:8px; align-items:center; }
.search-top input{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.04);
  color:var(--white);
  padding:8px 12px;
  border-radius:28px;
  width:180px;
}
.search-top button{ background:transparent; border:0; color:var(--white); cursor:pointer; font-size:18px; }

/* hero */
.hero{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding-top:90px; /* header space */
}
.hero-bg{
  position:absolute; inset:0;
  background-image: url('assets/bg.jpg');
  background-size:cover; background-position:center;
  filter: brightness(0.35) saturate(0.9);
  z-index:0;
}
.hero-content{
  position:relative; z-index:2; text-align:center; padding:40px 20px;
  max-width:900px;
}
.hero-logo{ width:250px; margin:0 auto 30px; display:block; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); height: auto; }
.hero-search{ display:flex; gap:8px; align-items:center; justify-content:center; margin:0 auto 14px; max-width:760px; }
.hero-search input{
  flex:1; padding:18px 20px; border-radius:40px; border:0; outline:none;
  background:var(--white); color:#102027; font-size:16px; box-shadow: 0 8px 30px rgba(2,12,18,0.45);
}
.hero-search button{
  width:56px; height:56px; border-radius:50%; border:0; background:var(--accent); color:#fff; font-size:20px; cursor:pointer;
  box-shadow:0 8px 30px rgba(0,184,217,0.18);
}
.hero-sub{ color:var(--muted); margin:10px 0 24px; }

/* ===========================
   BASE BUTTON
=========================== */
.viewFull {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: none;
  user-select: none;
}

.viewFull.clicked {
  transform: scale(0.96);
  opacity: 0.85;
}

/* ===========================
   PRIMARY BUTTON
=========================== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #007b9f);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.25);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent-hover), #009ac7);
  box-shadow: 0 12px 36px rgba(0, 198, 255, 0.35);
}

/* content panel with glass effect */
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  margin: -80px auto 48px;
  padding:36px;
  border-radius:16px;
  border:1px solid var(--glass-border);
  backdrop-filter: blur(6px) saturate(120%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  color:var(--white);
}
.panel h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}
.panel h2{ margin-top:0; font-size:24px; margin-bottom:12px; }
.panel p, .panel ul, .panel ol{ color:var(--muted); line-height:1.7; font-size:15px; margin-bottom:18px; }
.panel h3{ color:var(--white); margin:18px 0 8px; font-size:20px; }
a {
    color: #00acc1;
}
.aligncenter, .alignnone {
    display: block;
    margin: auto;
    text-align: center;
    vertical-align: middle;
    max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 16px;
  background-color: #0f172a;
  color: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

thead {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

th {
  padding: 14px 18px;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
}

tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.3s ease;
}

tr:nth-child(even) {
  background-color: rgba(255,255,255,0.03);
}

tr:hover {
  background-color: rgba(59,130,246,0.1);
}

td {
  padding: 14px 18px;
  color: #e2e8f0;
  vertical-align: middle;
}

table a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

table a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ===========================
   CTA BUTTON
=========================== */
.btn-cta {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  padding: 14px 36px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--accent);
  color: #012632;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 198, 255, 0.35);
}

/* ===========================
   CONTAINER DEMO
=========================== */
.cta-wrap {
  text-align: center;
  margin-top: 24px;
}

/* Footer */
.site-footer{ padding:40px 0; margin-top:40px; }
.footer-inner{ display:flex; align-items:center; gap:20px; justify-content:space-between; color:var(--muted); flex-wrap:wrap; }
.footer-logo {
    height: auto;
    width: 125px;
    vertical-align: middle;
}
.footer-links{ display:flex; gap:18px; align-items:center; flex-wrap:wrap }
.footer-links a{ color:var(--muted); text-decoration:none; font-weight:600 }
.socials a{ color:var(--muted); text-decoration:none; display:inline-block; margin-left:8px; font-weight:700 }
.footer-end {
    justify-content: center;
    gap: inherit;
    font-size: 13.5px;
}

.disclaimer {
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
}
/* responsiveness */
@media (max-width: 980px){
  .header-inner{ padding:12px 16px }
  .main-nav ul{ gap:10px }
  .hero-search input{ width:100% }
  .container{ padding:0 16px }
  .footer-inner{ flex-direction:column; gap:12px; text-align:center }
}
@media (max-width: 560px){
  .main-nav{ display:none }
  .hero{ padding-top:76px; min-height:520px }
  .hero-logo{ width:180px }
  .panel{ margin: -60px 12px 30px; padding:20px }
  .hero-search{ flex-direction:row; gap:8px; align-items:center }
  .hero-search input{ padding:14px 14px }
}
