/* ————— GLOBAL STYLES ————— */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #ffffff, #f3f8ff);
  color: #222;
  overflow-x: hidden;
}

/* ————— HEADER / NAVBAR ————— */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header h1 {
  font-size: 1.8em;
  font-weight: 700;
  color: #008cff;
}

nav a {
  text-decoration: none;
  color: #222;
  margin: 0 18px;
  font-weight: 600;
  transition: 0.2s;
}

nav a:hover {
  color: #008cff;
}

/* ————— HERO SECTION ————— */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: url('https://i.imgur.com/1lM8mN1.png') no-repeat center/cover;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3em;
  opacity: 0.9;
}

/* ————— CONTENT SECTIONS ————— */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2.2em;
  color: #004b80;
  margin-bottom: 40px;
}

/* ————— CARDS ————— */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.card h3 {
  color: #008cff;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.card p {
  color: #555;
  margin-bottom: 15px;
}

/* ————— UPDATE LIST PAGE ————— */
.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.update-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.update-card:hover {
  transform: translateY(-3px);
}

.update-card h2 {
  color: #008cff;
  margin-bottom: 10px;
}

.update-card p {
  color: #555;
  line-height: 1.5;
}

a.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #008cff;
  font-weight: 600;
  text-decoration: none;
}

a.read-more:hover {
  text-decoration: underline;
}

/* ————— FOOTER ————— */
.footer {
  text-align: center;
  padding: 50px 20px;
  background: #fafafa;
  color: #666;
  font-size: 0.95em;
}

/* ————— SNOW ANIMATION ————— */
.snowflake {
  position: fixed;
  top: -10px;
  color: #fff;
  font-size: 1em;
  animation: fall 10s linear infinite;
  z-index: 200;
  text-shadow: 0 0 5px rgba(255,255,255,0.8);
}

@keyframes fall {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* ————— BUTTON STYLE ————— */
.button {
  display: inline-block;
  background: #008cff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.button:hover {
  background: #006fd4;
}
