body, html {
  font-family: 'Comfortaa', sans-serif;
  background: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f0efe6;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 50px;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
}

.navbar a {
  color: #333;
  padding: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #ff4b2b;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 180px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 1000; /* ensure it's on top */
}

.dropdown-content a {
  color: #fff;
  padding: 10px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: #ff4b2b;
  color: #fff;
}

/* Display Dropdown on Hover */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

/* Spacer to avoid navbar overlap */
.spacer {
  height: 120px; /* Slightly taller than navbar */
}

/* Clickable Image Links Container */
.links-container {
  display: flex;
  justify-content: center;
  gap: 15px; /* spacing between images */
  padding: 20px;
  width: 98%; /* almost full width */
  margin: 0 auto;
  margin-top: 120px; /* clear navbar spacing */
}

.links-container a {
  flex: 1;
  height: 600px; /* adjust this for bigger images */
  max-width: 100%; /* allows each image to stretch evenly */
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.links-container a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.links-container a:hover {
  transform: scale(1.03);
}

.links-container span {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  text-shadow: 0 0 5px rgba(0,0,0,0.8);
}


.footer-bar {
  width: 100%;
  background-color: #f0efe6;
  color: #000;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px 20px;
  margin-top: 130px;
  box-sizing: border-box;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Optional visual enhancement */
}

@media (max-width: 1000px) {
  .links-container {
    flex-wrap: wrap;
  }
  .links-container a {
    flex: 0 0 48%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  .logo img {
    height: 60px;
    margin-bottom: 10px;
  }
  .nav-links {
    flex-direction: column;
    gap: 8px;
  }
 
  .links-container a {
    flex: 0 0 100%;
    height: 300px;
  }
}

/* Spacer to prevent overlap with navbar */
.spacer {
  height: 120px; /* Adjust based on your navbar height */
}
/*
.announcement-bar {
  margin: 40px auto 60px; 
  padding: 20px 30px;
  background-color: #f0efe6;
  color: #000;
  
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  line-height: 1.6;

  text-align: center !important;      
  display: block !important;          
  margin-left: auto !important;       
  margin-right: auto !important;
}

*/

.announcement-bar {
  width: 100%;
  padding: 20px;
  background-color: #f0efe6;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin: 40px auto 40px auto;
  text-align: center;
  font-family: 'Comfortaa', sans-serif;
}

.animated-name {
  color: #e60000; /* Bright Red */
  animation: glowFade 1.8s ease-in-out infinite alternate;
  font-weight: bold;
}

@keyframes glowFade {
  from {
    text-shadow: 0 0 8px #ff1a1a, 0 0 16px #ff1a1a;
    opacity: 0.9;
  }
  to {
    text-shadow: 0 0 14px #ff3333, 0 0 26px #ff3333;
    opacity: 1;
  }
}



/* For the regular Countryside style */
h1, .announcement-bar {
  font-family: 'Countryside', sans-serif;
}

.fraud-warning {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px;
  background-color: #1c1c1c;
  border-left: 6px solid #ff4b2b;
  border-radius: 6px;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.fraud-warning h3 {
  margin-top: 0;
  color: #ff4b2b;
  font-size: 1.4rem;
}

.fraud-warning a {
  color: #ff4b2b;
  font-weight: bold;
  text-decoration: underline;
}

.fraud-warning a:hover {
  text-decoration: none;
}

.fraud-warning-bar {
  width: 100%;
  background-color: #f0efe6;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fraud-warning-inner {
  max-width: 1000px;
  text-align: center;
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

.fraud-warning-inner h3 {
  margin-top: 0;
  
  font-size: 1.5rem;
}

.fraud-warning-inner a {
  color: #ff4b2b;
  font-weight: bold;
  text-decoration: underline;
}

.fraud-warning-inner a:hover {
  text-decoration: none;
}

