/* css/style.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f7fc;
  color: #333;
}

header {
  background: linear-gradient(to right, #51c8ccee, #008080);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
  background: #b42179;
  padding: 0.75rem 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
  color: #fff;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 5px 10px;
  transition: color 0.3s ease-in-out;
}

nav a:hover,
nav a:focus {
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #ffcc00;
  transition: width 0.4s ease;
  -webkit-transition: width 0.4s ease;
}

nav a:hover::after {
  width: 100%;
  left: 0;
  background: #ffcc00;
}

.container {
  max-width: 1800px;
  margin: auto;
  padding: 1rem;
}

.section {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease-in-out;
}

h2 {
  color: #e206a0;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: #004080;
  outline: none;
}

button {
  margin-top: 1.5rem;
  background-color: #004080;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #002855;
}

footer {
  background: #51c8ccee;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}

nav a.blink {
  -webkit-animation: 2s linear infinite condemned_blink_effect; /* for Safari 4.0 - 8.0 */
  animation: 2s linear infinite condemned_blink_effect;
}

nav a.blink:hover {
  -webkit-animation: none;
  animation: none;
  visibility: visible; /* Ensure the link is visible when hovered */
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect { 
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}




.interest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.interest-box {
  background: #f5d8f0;
  border-top-color: 4px solid #007acc;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04);
}

.interest-box h3 {
  margin-bottom: 0.5rem;
  color: #80005a;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-box {
  background: #f3ccdf;
  padding: 1rem 1.25rem;
  border-top-color: 4px solid #0056b3;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-box h3 {
  margin-bottom: 0.5rem;
  color: #77055b;
}




.archive-section {
  background: linear-gradient(to bottom, #f0f4f8, #ffffff);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.archive-section h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 1rem;
  border-left: 5px solid #007bff;
  padding-left: 0.6rem;
}

.archive-section p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 850px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.archive-item {
  background: #ffffff;
  border: 1px solid #ccc;
  border-left: 5px solid #007bff;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.archive-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.archive-item h4 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #00264d;
}

.archive-item p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: #555;
}

.btn-download {
  display: inline-block;
  margin-top: 0.8rem;
  background-color: #007bff;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #0056b3;
}
