/*
Theme Name: Love It or Like It Entertainment
Theme URI: https://loveitorlikeitent.com
Author: Love It or Like It Entertainment
Description: Premium live event and experience production company website theme.
Version: 1.0
License: Private
Text Domain: loveitorlikeitent
*/

/* ============================================
   LOVE IT OR LIKE IT ENTERTAINMENT
   Theme Stylesheet — Red / White / Black
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --bg-primary:    #050505;
  --bg-secondary:  #0c0c0c;
  --bg-card:       #111111;
  --bg-card-hover: #181818;
  --gold:          #D42020;
  --gold-light:    #EF4444;
  --gold-dim:      rgba(212, 32, 32, 0.12);
  --red:           #991515;
  --red-bright:    #D42020;
  --text-primary:  #FFFFFF;
  --text-secondary:#C0C0C0;
  --text-muted:    #5a5a5a;
  --border:        #1c1c1c;
  --border-gold:   rgba(212, 32, 32, 0.35);
  --nav-height:    80px;
}

/* ── WordPress Admin Bar Offset ── */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-secondary); line-height: 1.8; }
.gold  { color: var(--gold); }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-header { max-width: 660px; margin-bottom: 60px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }
.section-header.centered { margin: 0 auto 60px; text-align: center; }

.divider { width: 48px; height: 3px; background: var(--gold); margin: 24px 0; }
.divider.centered { margin: 24px auto; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-text .sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a { color: var(--text-primary); }

.nav-cta, .nav-links li.menu-cta > a {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover, .nav-links li.menu-cta > a:hover { background: var(--gold-light) !important; }

/* WordPress default menu styles override */
.nav-links ul { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.25); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.btn-group { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

/* ── Cards ── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 40px 36px; transition: border-color 0.25s, transform 0.25s; }
.card:hover { border-color: var(--border-gold); transform: translateY(-4px); }

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Placeholder Image ── */
.img-placeholder {
  background: linear-gradient(135deg, #111111 0%, #1a1010 50%, #111111 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212,32,32,0.03) 20px, rgba(212,32,32,0.03) 21px);
}
.img-placeholder span { position: relative; z-index: 1; }

/* ── Testimonial ── */
.testimonial { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 4px; padding: 36px 40px; }
.testimonial blockquote { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--text-primary); line-height: 1.7; }
.testimonial blockquote::before { content: '\201C'; color: var(--gold); font-size: 2.5rem; line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #0a0000 0%, #0d0000 100%);
  border-top: 1px solid rgba(212,32,32,0.2);
  border-bottom: 1px solid rgba(212,32,32,0.2);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,32,32,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p  { max-width: 540px; margin: 0 auto 40px; font-size: 1.05rem; }

/* ── Page Hero ── */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(160deg, #0a0000 0%, #050505 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,32,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Brand Tiles ── */
.brand-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 32px; display: flex; align-items: center; justify-content: center; transition: border-color 0.25s; }
.brand-tile:hover { border-color: var(--border-gold); }
.brand-tile span { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.05em; transition: color 0.25s; }
.brand-tile:hover span { color: var(--gold); }

/* ── Footer ── */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand .logo-img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand .wordmark { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.04em; }
.footer-brand .sub { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-top: 3px; }
.footer-brand p { margin-top: 20px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.social-links { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(5,5,5,0.98);
    flex-direction: column;
    padding: 24px 20px 32px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 140px 0 72px; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ── WordPress Content Styles ── */
.wp-block-image img { border-radius: 4px; }
.aligncenter { display: block; margin: 0 auto; }
