/* styles.css */

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('your-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: crimson;
}

.content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #bbb;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid crimson;
  color: crimson;
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: crimson;
  color: #000;
}

.info-section {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
}

.info-section h2 {
  color: crimson;
  margin-bottom: 1rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}

.frame-section {
  background-color: #0a0a0a;
  padding: 4rem 2rem;
}

.frame-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.frame {
  background-color: #111;
  border: 1px solid crimson;
  padding: 2rem;
  text-align: center;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px crimson;
}

.frame img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  color: #555;
  font-size: 0.875rem;
}
