html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #0b1a2c;
  background-image: url('images/navy_blue_tileable_dark.jpg');
  background-repeat: repeat;
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  color: #d4af37;
  padding: 2rem;
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: visible;
  text-align: center;
}

.elysium {
  font-family: 'Parisienne', cursive;
  font-size: 12rem;
  margin: 0;
  background: url('images/gold-leaf.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding-left: 0.1em; 
  padding-right: 0.1em; 
  padding-bottom: 0.05em; 
}

.tagline {
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0px;
  background: url('images/gold-leaf.jpg');
  background-size: cover;
  background-position: bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.1),
    -1px -1px 1px rgba(0, 0, 0, 0.1);
  text-align: center; 
}


.section-title {
  font-size: 1.5rem;
  margin-top: 2rem;
  background: url('images/gold-leaf.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}


.feature {
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}



.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: url('images/gold-leaf.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature p {
  font-size: 1rem;
  color: #d4af37;
  text-shadow: 0 0 1px rgba(0,0,0,0.6);
}

.site-footer {
  width: 100%;
  text-align: center;
  padding: 0.8rem 0 0.2rem;
  color: #d4af37;
  font-size: 0.9rem;
  line-height: 2;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  background-color: transparent;
}

/* Mobile responsive tweaks */
@media (max-width: 768px) {
  .elysium {
    font-size: 5rem;
  }

  .tagline {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .feature {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .site-footer {
    font-size: 0.8rem;
    padding: 1rem 1rem 1rem;
  }

  .container {
    padding: 1.5rem 1rem;
  }
}
