@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Exo:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Exo', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  color: #222;
}

#navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  background-color: #940810;
  padding: 10px 0;
  z-index: 10;
}

#navbar button {
  background: none;
  border: none;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

#navbar button:hover,
#navbar button.active {
  background: #c79406;
  color: white;
}

#press-hero {
  height: 60vh;
  background: linear-gradient(to right, #940810, #c79406);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px;
}

.hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-family: 'Exo', sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

#search-section {
  text-align: center;
  margin: 40px 0;
}

#search-bar {
  width: 60%;
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid #940810;
  border-radius: 50px;
  outline: none;
  transition: 0.3s;
}

#search-bar:focus {
  border-color: #c79406;
  box-shadow: 0 0 10px rgba(199, 148, 6, 0.5);
}

#press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px;
}

.press-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: #940810;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
}

.card-content p {
  color: #444;
  margin-bottom: 10px;
}

.card-content a {
  text-decoration: none;
  color: #c79406;
  font-weight: bold;
  transition: 0.3s;
}

.card-content a:hover {
  color: #940810;
}

#press-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #7b0323 0%, #ffffff 100%);
  color: white;
}

#press-cta h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}

.footer-icons {
  margin-bottom: 10px;
}

.footer-icons a {
  color:#c79406 ;
  margin: 0 10px;
}

.footer-icons a:hover {
    opacity: 0.7;
}



footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #940810;  /* Dark red */
    color: white;
    padding: 20px;
    text-align: center;
}

#slogan {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Orbitron";
}
.cta-buttons {
  margin-top: 20px;
}

.cta-buttons button {
  background: #c79406;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  cursor: pointer;
  margin: 10px;
  transition: 0.3s;
}

.cta-buttons button:hover {
  background: #940810;
}

footer {
  background: #940810;
  color: white;
  text-align: center;
  padding: 20px;
}

#privacy-policy {
    color: #FFD700; /* Gold for better contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
}

#privacy-policy:hover {
    font-family: 'Exo', sans-serif;
    color: #ffffff; /* White on hover */
}

#CopyRight {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Exo", sans-serif;
}