/* Emperor Media Group - Static Site Styles */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #c8a84b;
  --dark-gray: #1a1a1a;
  --mid-gray: #444444;
  --light-gray: #f5f5f5;
  --text-gray: #555555;
  --font-heading: 'Georgia', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 40px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-gray);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--white);
  color: var(--dark-gray);
}

.btn-dark {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}

.btn-dark:hover {
  background: var(--dark-gray);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #b08d35;
  border-color: #b08d35;
}

/* ── SECTIONS ── */
section {
  padding: 72px 40px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.25;
}

h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--light-gray);
}

.about-section .section-inner {
  max-width: 800px;
  text-align: center;
}

/* ── SERVICES SECTION ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  background: var(--light-gray);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
}

.service-card h3 {
  margin-bottom: 10px;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--dark-gray);
  color: var(--white);
  text-align: center;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255,255,255,0.75);
}

.contact-email {
  display: inline-block;
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  margin-top: 12px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-email:hover {
  opacity: 0.8;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 40px;
  font-size: 13px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.social-links a:hover {
  background: rgba(255,255,255,0.25);
}

.social-links img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 60px 40px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── DIVIDER ── */
hr.divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 12px;
  }

  nav ul {
    gap: 20px;
  }

  nav ul li a {
    font-size: 13px;
  }

  section {
    padding: 48px 20px;
  }

  .hero {
    height: 380px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
