 body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(15,15,15,0.7), rgba(26,26,26,0.7)),
              url('foto/bg.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

 :root {
      --primary: #00ffe1;
      --secondary: #00cccc;
      --dark-bg: #0f0f0f;
      --light-text: #ffffff;
      --card-bg: #1a1a1a;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, var(--dark-bg), #1a1a1a);
      color: var(--light-text);
      overflow-x: hidden;
    }

    nav {
      background: #111;
      padding: 1em 2em;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    nav .logo {
      font-weight: bold;
      font-size: 1.5em;
      color: var(--primary);
    }

    nav a {
      color: var(--primary);
      text-decoration: none;
      margin: 0.5em 1em;
      transition: 0.3s;
      font-weight: 500;
    }

    nav a:hover {
      color: #fff;
    }

    header {
      text-align: center;
      padding: 3em 1em 2em 1em;
      animation: fadeIn 1.5s ease;
    }

    header h1 {
      font-size: 2.5em;
      margin-bottom: 0.5em;
    }

    header p {
      font-size: 1.2em;
      margin-bottom: 1.5em;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-main {
      background: var(--primary);
      color: #000;
      padding: 1em 2.5em;
      border: none;
      border-radius: 8px;
      font-size: 1em;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 0 10px var(--primary);
    }

    .btn-main:hover {
      background: var(--secondary);
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5em;
      padding: 2em 1em;
    }

    .card {
      background: var(--card-bg);
      border-radius: 15px;
      padding: 1.5em;
      width: 280px;
      text-align: center;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      transition: 0.4s;
      transform: scale(1);
      opacity: 0;
      animation: fadeInCard 1s forwards;
    }

    .card:nth-child(1) { animation-delay: 0.2s; }
    .card:nth-child(2) { animation-delay: 0.4s; }
    .card:nth-child(3) { animation-delay: 0.6s; }
    .card:nth-child(4) { animation-delay: 0.8s; }
    .card:nth-child(5) { animation-delay: 1s; }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px var(--primary);
    }

    .card h3 {
      font-size: 1.6em;
      margin: 0.5em 0;
    }

    .card p {
      margin: 0.5em 0;
      font-size: 1em;
    }

    .card button {
      background: var(--primary);
      color: #000;
      padding: 0.7em 2em;
      border: none;
      border-radius: 8px;
      font-size: 1em;
      cursor: pointer;
      transition: 0.3s;
    }

    .card button:hover {
      background: var(--secondary);
    }

    .blog {
      padding: 2em 1em;
      background: #111;
    }

    .blog-post {
      margin-bottom: 2em;
      border-bottom: 1px solid #333;
      padding-bottom: 1.5em;
    }

    .blog-post img {
      width: 100%;
      max-height: 220px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1em;
    }

    .blog-post a {
      color: var(--primary);
      text-decoration: none;
      font-size: 1.5em;
    }

    .blog-post p {
      margin-top: 0.5em;
      color: #ccc;
    }

    footer {
      background: #111;
      padding: 2em 1em;
      text-align: center;
    }

    .social-icons a {
      margin: 0 0.7em;
      color: var(--primary);
      font-size: 1.8em;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #fff;
    }

    .footer-links a {
      margin: 0 0.8em;
      color: #aaa;
      font-size: 0.9em;
    }

    /* PopUp 18+ */
    #ageModal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.95);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .modal-content {
      background: #222;
      padding: 2em;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 0 15px var(--primary);
    }

    .modal-content button {
      margin-top: 1em;
      padding: 0.7em 2.5em;
      background: var(--primary);
      border: none;
      border-radius: 8px;
      color: #000;
      font-size: 1em;
      cursor: pointer;
      transition: 0.3s;
    }

    .modal-content button:hover {
      background: var(--secondary);
    }

    @keyframes fadeIn {
      0% {opacity: 0; transform: translateY(-20px);}
      100% {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInCard {
      0% {opacity: 0; transform: scale(0.95);}
      100% {opacity: 1; transform: scale(1);}
    }

    @media(max-width: 768px) {
      header h1 { font-size: 2em; }
      .card { width: 90%; }
      nav { justify-content: center; }
      nav a { margin: 0.5em; }
    }
    .contact-form {
  background: #1a1a1a;
  padding: 3em 1em;
  max-width: 800px;
  margin: 3em auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: fadeIn 1s ease;
}

.contact-form h2 {
  color: #00ffe1;
  text-align: center;
  margin-bottom: 1em;
}

.contact-form p {
  text-align: center;
  margin-bottom: 2em;
  color: #ccc;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.contact-form input, .contact-form textarea {
  padding: 1em;
  border-radius: 8px;
  border: none;
  background: #2a2a2a;
  color: #fff;
  font-size: 1em;
}

.contact-form button {
  background: #00ffe1;
  color: #000;
  padding: 1em;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px #00ffe1;
}

.contact-form button:hover {
  background: #00cccc;
}

@media(max-width: 768px) {
  .contact-form {
    padding: 2em 1em;
  }
}
html {
  scroll-behavior: smooth;
}
.about-section {
  background: #1a1a1a;
  padding: 3em 1em;
  max-width: 900px;
  margin: 3em auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
  animation: fadeIn 1s ease;
}

.about-section h2 {
  color: #00ffe1;
  margin-bottom: 1em;
  font-size: 2em;
}

.about-section p {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.6em;
}
html {
  scroll-behavior: smooth;
}
