html {
  scroll-behavior: smooth;
  background:#000;
}

body {
  margin:0;
  font-family: 'Cormorant Garamond', serif;
  line-height:1.7;
  color:#fff;
  overflow-x:hidden;
  background:
    radial-gradient(ellipse at center 20%, rgba(80,0,0,0.35) 0%, rgba(40,0,0,0.25) 40%, rgba(0,0,0,0.95) 60%, #000 100%);
  background-attachment: fixed;
}

h1, h2, h3 {
  color:#8b0000;
  font-weight:700;
  letter-spacing:1px;
}

section {
  max-width:1000px;
  margin:auto;
  padding:100px 20px;
  opacity:0;
  transform:translateY(40px);
  transition: all 1s ease;
}

section.visible {
  opacity:1;
  transform:translateY(0);
}

.hero {
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero h1 {
  font-size:80px;
  margin:0;
}

.subtitle {
  font-size:24px;
  color:#ccc;
  margin-top:20px;
}

.video-wrapper {
  position:relative;
  padding-bottom:56.25%;
  height:0;
}

.video-wrapper iframe {
  position:absolute;
  width:100%;
  height:100%;
  border:none;
}

ul {
  list-style:none;
  padding:0;
}

ul li {
  margin-bottom:15px;
  font-size:20px;
}

.member {
  margin-bottom:50px;
  padding-left:20px;
  border-left:2px solid #8b0000;
}

footer {
  text-align:center;
  padding:50px 20px;
  border-top:1px solid #8b0000;
  color:#aaa;
  font-size:14px;
}

/* subtle fade animation */
@media(max-width:768px){
  .hero h1 { font-size:48px; }
  section { padding:60px 20px; }
}
