@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #f5f5f5;
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 4px 8px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero h1 em {
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 4px 8px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(212, 175, 55, 0.2);
  color: #ffd700;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #1a1a2e);
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 2rem;
  color: #f5f5f5;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

h1 em {
  font-size: 2.2rem;
  display: block;
  margin-top: 1.2rem;
  color: #d4af37;
  font-style: italic;
  font-weight: 400;
  animation: gentle-glow 3s ease-in-out infinite;
  letter-spacing: 0.5px;
}

@keyframes gentle-glow {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% { 
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
  }
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 3.5rem 0 1.5rem;
  color: #d4af37;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

h2:first-of-type {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #c9a631);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { 
    filter: brightness(1);
  }
  50% { 
    filter: brightness(1.2);
  }
}

h2::after {
  content: '✦';
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #d4af37;
  opacity: 0.6;
}

h2:first-of-type::after {
  color: #d4af37;
  opacity: 0.8;
  font-size: 1rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 1.5rem auto;
  text-align: center;
  color: #e8e8e8;
  font-weight: 400;
}

form {
  max-width: 500px;
  margin: 2.5rem auto;
  background: rgba(30, 30, 46, 0.8);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

label {
  display: block;
  margin-bottom: 1.8rem;
  font-weight: 500;
  font-size: 1rem;
  color: #e8e8e8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input[type="text"] {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  margin-top: 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #f5f5f5;
  transition: all 0.3s ease;
}

input[type="text"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4af37;
}

input[type="text"]::placeholder {
  color: rgba(245, 245, 245, 0.4);
}

button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: #d4af37;
  border: none;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a2e;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button[type="submit"]:hover::before {
  width: 300px;
  height: 300px;
}

button[type="submit"]:hover {
  background: #c9a631;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

button[type="submit"]:active {
  background: #b89b2c;
  transform: translateY(0);
}

dl {
  max-width: 650px;
  margin: 2.5rem auto;
  background: rgba(30, 30, 46, 0.6);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

dt {
  font-weight: 600;
  font-size: 1rem;
  color: #d4af37;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

dt:first-child {
  margin-top: 0;
}

dd {
  margin: 0 0 0 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e8e8e8;
  font-weight: 400;
}

details {
  max-width: 650px;
  margin: 1.5rem auto;
  background: rgba(30, 30, 46, 0.6);
  backdrop-filter: blur(10px);
  padding: 1.8rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

details:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}

summary {
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  color: #e8e8e8;
  list-style: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

summary:hover {
  color: #d4af37;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: '+ ';
  margin-right: 0.8rem;
  color: #d4af37;
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

details[open] summary::before {
  content: '− ';
  transform: rotate(180deg);
}

details[open] {
  background: rgba(30, 30, 46, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
}

details p {
  margin-top: 1.2rem;
  text-align: left;
  font-size: 1.15rem;
  color: #e8e8e8;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 3rem;
    padding: 0.8rem 1.5rem;
  }
  
  .hero h1 em {
    font-size: 2rem;
  }
  
  .content-wrapper {
    padding: 0 1.5rem 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h2:first-of-type {
    font-size: 2rem;
  }
  
  form, dl, details {
    padding: 1.8rem;
  }
}