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

:root {
  --accent: #c62641;
  --text: #444;
  --white: #fff;
}

body {
  font-family: 'Domine', serif;
  color: var(--text);
  line-height: 1.7;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--white);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(198, 38, 65, 0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero .location {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.hero .tagline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.hero .subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 40px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero .tagline {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero .location {
    font-size: 13px;
  }
}
