 * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; background-color: #0a0a0a; color: #f5f5f5; overflow-x: hidden; }

    header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(0,0,0,0.8); display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; z-index: 1000; }
    header h1 { font-size: 1.5rem; letter-spacing: 2px; }
    nav a { color: #f5f5f5; margin-left: .75rem; text-decoration: none; transition: 0.3s; }
    nav a:hover { color: #ff003c; }

    .hero { height: 100vh; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url('img/djfemzo_hero.jpg') center/cover; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 1rem; }
    .hero h2 { font-size: 3rem; font-weight: 700; letter-spacing: 2px; animation: fadeUp 1.5s ease forwards; }
    .hero p { font-size: 1.2rem; margin-top: 1rem; animation: fadeUp 1.5s ease forwards; animation-delay: 0.5s; }
    .hero button { margin-top: 2rem; background: #ff003c; color: white; border: none; padding: 0.9rem 2rem; font-size: 1rem; border-radius: 50px; cursor: pointer; transition: 0.3s; animation: fadeUp 1.5s ease forwards; animation-delay: 1s; }
    .hero button:hover { transform: scale(1.05); background: #e60036; }

    .section { padding: 5rem 1.5rem; max-width: 900px; margin: 0 auto; text-align: center; opacity: 0; transform: translateY(50px); transition: opacity 1s ease, transform 1s ease; }
    .section.visible { opacity: 1; transform: translateY(0); }
    .section h3 { font-size: 2rem; margin-bottom: 1rem; color: #ff003c; }
    .section p { line-height: 1.6; font-size: 1.1rem; color: #dcdcdc; }

    .social-links { display: flex; justify-content: center; margin-top: 2rem; gap: 1.5rem; }
    .social-links a { color: #f5f5f5; font-size: 2.5rem; transition: 0.3s; }
    .social-links a:hover { color: #ff003c; transform: translateY(-3px); }

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

    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }
    .modal {
      background: #111;
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      animation: fadeInModal 0.5s ease forwards;
      position: relative;
    }
    @keyframes fadeInModal { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

    .modal h3 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #ff003c;
    }
    #openModal{
      margin-top:1.5rem;
      background:#ff003c;
      color:white;
      border:none;
      padding:0.8rem 1.8rem;
      border-radius:50px;
      cursor:pointer;
      font-size: 1rem;
    }
    form label {
      display: block;
      margin-bottom: 0.4rem;
      font-weight: 500;
      color: #f5f5f5;
      text-align: left;
    }
    form input, form textarea {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1rem;
      border: none;
      border-radius: 5px;
      background: #222;
      color: #f5f5f5;
      font-size: 1rem;
    }
    form input:focus, form textarea:focus {
      outline: 2px solid #ff003c;
    }
    form button {
      width: 100%;
      background: #ff003c;
      color: white;
      padding: 0.9rem;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }
    form button:hover { background: #e60036; }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
    }