/* Luxify Collectibles Style - css/style.css */

/* Fonts and Base Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #f5f5f5;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 0.5em;
  }
  
  p {
    margin-bottom: 1em;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Hero Section */
  .hero {
    background: url('../images/placeholder-hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 20px;
    background-color: #111;
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero-buttons {
    margin-top: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  
  .btn.primary {
    background-color: #d4af37;
    color: #000;
    font-weight: bold;
  }
  
  .btn.primary:hover {
    background-color: #b8962e;
  }
  
  .btn.secondary {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
  }
  
  .btn.secondary:hover {
    background-color: #d4af37;
    color: #000;
  }
  
  /* About Section */
  .about, .how-it-works, .signup {
    padding: 60px 20px;
    text-align: center;
  }
  
  .about img, .how-it-works img {
    margin-top: 20px;
    border: 1px solid #333;
  }
  
  /* How It Works */
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  
  .step {
    max-width: 300px;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }
  
  /* Signup */
  .signup form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .signup input[type="email"] {
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
  }
  
  .signup button {
    width: 100%;
  }
  
  /* Footer */
  .footer {
    background-color: #111;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
  }
  
  .footer-links a {
    margin: 0 10px;
    color: #d4af37;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
      align-items: center;
    }
  
    .hero {
      padding: 40px 20px;
      height: auto;
    }
  }
  