/*
  Colour palette definitions and typographic styles for The Corporate DJ landing
  page. The palette centres on a dark blue background with gold accents【509502882436980†L86-L129】,
  providing an upscale and trusted feel suitable for corporate and wedding
  clients. The fonts blend a classic serif (Playfair Display) for the title
  with a modern sans‑serif (Montserrat) for supporting text.
*/

:root {
  --primary-colour: #010188; /* dark blue hue for backdrop */
  --secondary-colour: #CFB53B; /* gold accent colour【509502882436980†L116-L129】 */
  --hover-colour: #A57C00; /* deeper gold for hover states */
  --text-colour: #ffffff; /* crisp white text for maximum contrast */
  --font-headline: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-colour);
  background-color: var(--primary-colour);
  line-height: 1.6;
}

/* Hero section styles */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Use our abstract background; scaled to cover entire section */
  background-image: url('../images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay to darken the background for legibility */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 21, 46, 0.85) 0%,
    rgba(10, 21, 46, 0.95) 100%
  );
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  max-width: 80%;
}

/* Headline styling */
.hero h1 {
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Tagline styling */
.hero .tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Call‑to‑action button */
.cta {
  display: inline-block;
  background-color: var(--secondary-colour);
  color: var(--primary-colour);
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover state for CTA */
.cta:hover,
.cta:focus {
  background-color: var(--hover-colour);
  color: var(--primary-colour);
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero .tagline {
    font-size: 1.125rem;
  }
  .cta {
    font-size: 0.875rem;
    padding: 0.65rem 1.5rem;
  }
}