/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navigation */
nav {
  background: #1a1a1a;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.2);
}

nav .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e50914;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  color: #f5f5f5;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #e50914;
}

/* Hero Section */
header {
  background-color: #0f0f0f;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  text-align: center;
  padding: 2rem;
}

header h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914;
}

.hero-subtext {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ff4c4c;
}

/* Sections */
section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(229, 9, 20, 0.1);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-left: 5px solid #e50914;
  padding-left: 0.75rem;
  color: #ff4c4c;
}

section p {
  margin-bottom: 1rem;
  color: #ccc;
}

section ul li {
  background: #2a2a2a;
  border-left: 4px solid #e50914;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
  color: #ddd;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

form input,
form textarea {
  padding: 0.75rem;
  background: #0f0f0f;
  border: 1px solid #333;
  color: #f5f5f5;
  border-radius: 6px;
  font-size: 1rem;
}

form input:focus,
form textarea:focus {
  border-color: #e50914;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.3);
  outline: none;
}

form button {
  background-color: #e50914;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #ff4c4c;
}

/* Contact Image */
#contact img {
  margin-top: 2rem;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #999;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    padding-top: 1rem;
    width: 100%;
  }

  header h1 {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  section {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
}
