/* styles.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #1e293b;
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 25px;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #f97316;
}

/* Search Section */
#search-section {
  text-align: center;
  padding: 20px;
  position: relative;
}

#search-input {
  width: 60%;
  padding: 12px 15px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: #334155;
  color: #f8fafc;
  font-size: 16px;
}

#realtime-search-result {
  position: absolute;
  background: #1e293b;
  width: 60%;
  margin: auto;
  left: 20%;
  top: 65px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  max-height: 250px;
  overflow-y: auto;
  z-index: 200;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #334155;
}

.search-item img {
  border-radius: 5px;
}

.search-item span {
  color: #f8fafc;
  font-weight: 500;
}

.search-item:hover {
  background: #475569;
}

/* Sections */
section {
  padding: 30px 20px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #f97316;
}

/* Content Cards */
.content-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.movie-card {
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
  padding-bottom: 10px;
}

.movie-card:hover {
  transform: translateY(-5px);
}

.movie-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.movie-card h3 {
  font-size: 16px;
  margin: 10px;
  font-weight: 600;
}

.movie-card p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 10px 10px;
}

.movie-card button {
  margin: 0 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  background: #f97316;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.movie-card button:hover {
  background: #ea580c;
}

/* Footer */
footer {
  background: #1e293b;
  padding: 40px 20px;
  margin-top: 30px;
  text-align: center;
}

footer h2 {
  color: #f97316;
  margin-bottom: 15px;
}

footer form {
  max-width: 500px;
  margin: auto;
  text-align: left;
}

footer form div {
  margin-bottom: 15px;
}

footer label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #cbd5e1;
}

footer input, 
footer textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #334155;
  color: #f8fafc;
}

footer button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: #f97316;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

footer button:hover {
  background: #ea580c;
}

/* Responsive */
@media (max-width: 768px) {
  #search-input {
    width: 90%;
  }
  
  #realtime-search-result {
    width: 90%;
    left: 5%;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }
}
