* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden;
  font-family: 'Georgia', serif;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('hero-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.title-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f0e6d2;
  cursor: pointer;
  padding: 20px;
  transition: transform 0.3s ease;
}

.title-container:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 5.5rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

p.subtitle {
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 4.5rem; }
  p.subtitle { font-size: 1.7rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 3.8rem; }
  p.subtitle { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 3rem; letter-spacing: 0.05em; }
  p.subtitle { font-size: 1.3rem; }
}

@media (max-width: 360px) {
  h1 { font-size: 2.6rem; }
  p.subtitle { font-size: 1.1rem; }
}