/* ===== REDHILL ENTERTAINMENT LLC — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:    #0A1F44;
  --royal:   #1E3A8A;
  --blue:    #3B82F6;
  --blue-lt: #60A5FA;
  --white:   #FFFFFF;
  --off-white: #F8FAFF;
  --gray-100: #EEF2FF;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --text:    #0F172A;
  --shadow-sm: 0 2px 8px rgba(10,31,68,.08);
  --shadow-md: 0 8px 32px rgba(10,31,68,.12);
  --shadow-lg: 0 20px 60px rgba(10,31,68,.16);
  --radius:  12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--royal) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(59,130,246,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,.45);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--royal);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { background: var(--royal); transform: translateY(-2px); }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,130,246,.1);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: #fff; }
.footer-brand p {
  font-size: .875rem;
  margin-top: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  width: 20px; height: 20px;
  color: var(--blue-lt);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-fax-note {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
  font-style: italic;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--gray-100);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1rem; }

/* ── LEGAL CONTENT ── */
.legal-section {
  padding: 80px 0;
  background: var(--white);
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--gray-700);
  margin-bottom: 14px;
  font-size: .95rem;
  line-height: 1.85;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  color: var(--gray-700);
  font-size: .95rem;
  margin-bottom: 8px;
  line-height: 1.75;
}
.legal-content a { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }
.legal-updated {
  background: var(--gray-100);
  border-left: 4px solid var(--blue);
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 36px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,.2);
}

/* ── UTILITIES ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.gap-sm { gap: 16px; }
.gap-md { gap: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--gray-100); padding: 16px 0; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin: 8px 24px; }
  .hamburger { display: flex; }
  header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
