@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-image: radial-gradient(rgb(70, 69, 69), black);
    background-attachment: fixed;
    color: white;

}



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

a:hover {
  color: #cba135;
}

/* NAVIGATION */
.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: 50px;
}

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

#nav-list li a {
  font-weight: bold;
  color: white;
}
.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;
}


/* Hero Section */
.hero {
      background-image: url(../images/21.png);
    display: flex;
    background-repeat: no-repeat;
    height: 77vh;
    background-size: contain;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: white;
  margin-bottom: 125px;
  z-index: 3;
}

.hero-content h1 {
  font-family: "Archer-Semibold";

  color: #cba135;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #cba135;
  color: black;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: bold;
  
  border: none;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #a8842b;
  color: white;
}


/* footer  */
.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;
  }
}

