@font-face {
  font-family:"Archer-Semibold" ;
  src: url(../font/Archer\ Semibold.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  background: radial-gradient(rgb(70, 69, 69), black);
  background-attachment: fixed;
  color: white;
  min-height: 100vh;
  
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #cba135;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px 40px;
  flex-wrap: wrap;
}

#logo img {
  height: 30px;
}

#nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

#nav-list li a {
  font-weight: bold;
  color: white;
}


a {
  color: #cba135;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.search-form input[type="text"] {
  padding: 6px 12px;
  border: 1px solid #cba135;
  border-radius: 20px;
  background-color: transparent;
  color: white;
  
  outline: none;
}

.search-form input::placeholder {
  color: #ccc;
}

.search-form button {
  background: none;
  border: none;
  color: #cba135;
  font-size: 1rem;
  cursor: pointer;
}

.search-form button:hover {
  color: white;
}


/* Header */
header {
  text-align: center;
  padding: 50px 20px 20px;
}
h2 {
  font-family: "Source Sans Pro", sans-serif;
  color: #cba135;
  margin-bottom: 20px;
}
h1 {
  font-family: "Archer-Semibold";
  
  color: #cba135;
  margin-bottom: 20px;
  font-size: 60px;
}
.films-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  max-width: 500px;
  margin: auto;
}

.film-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #cba135;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.film-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
}

.film-card img {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  border-bottom: 1px solid #cba135;
}

.film-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.film-content h2 {
  font-family:"Archer-Semibold";
  
  color: #cba135;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.film-meta, .film-synopsis, .film-info {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.film-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn {
  background-color: #cba135;
  color: black;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e4b94f;
}

.btn.reserve {
  background-color: #fff;
  color: #111;
}

.btn.reserve:hover {
  background-color: #cba135;
  color: black;
}

.footer {
  background-color: #111;
  padding: 40px 20px;
  color: #fff;
  margin-top: 60px;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-text h3 {
  color: #cba135;
  
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer-text p {
  
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #cba135;
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  #nav-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  #title-section h1 {
    font-size: 2.5rem;
  }
}

