/* CSS Variables */
:root {
  --color-primary: #d7d12d;
  --color-primary-hover: #c4be28;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --font-heading: 'Dosis', sans-serif;
  --font-body: 'Raleway', sans-serif;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-white);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.79);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tagline {
  font-size: 22px;
  margin-bottom: 32px;
  line-height: 1.8;
  opacity: 0.95;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.phone {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.phone a {
  color: var(--color-primary);
  transition: opacity 0.3s ease;
}

.phone a:hover {
  opacity: 0.8;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-dark);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

  .tagline {
    font-size: 18px;
  }

  .phone {
    font-size: 32px;
  }

  .hero-content {
    padding: 24px;
  }
}
