/* ❄️ Winter Style CSS for Smartec.ie Seasonal Page */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e3f2fd, #ffffff);
  color: #0d47a1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.winter-header {
  background: linear-gradient(to right, #bbdefb, #90caf9);
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 4px solid #64b5f6;
  position: relative;
}

.winter-header h1 {
  font-size: 2.8rem;
  color: #0d47a1;
  margin-bottom: 0.5rem;
}

.winter-header p {
  font-size: 1.2rem;
  color: #1565c0;
}

.winter-header::after {
  content: '❄️';
  font-size: 3rem;
  animation: snowPulse 5s infinite ease-in-out;
  display: block;
  margin-top: 1rem;
  color: #42a5f5;
}

@keyframes snowPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.season-tabs {
  background: #e3f2fd;
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #bbdefb;
}

.season-tabs nav a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #0d47a1;
  background: #bbdefb;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.season-tabs nav a:hover,
.season-tabs nav a.active {
  background: #0d47a1;
  color: #fff;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 12px;
}

.highlight img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.highlight h2 {
  color: #0d47a1;
  margin-bottom: 0.5rem;
}

.highlight p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.btn {
  background: #0d47a1;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1565c0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.grid article {
  background: #e1f5fe;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.grid article:hover {
  transform: translateY(-5px);
}

.grid article img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.grid article h3 {
  color: #1976d2;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.grid article p {
  font-size: 0.95rem;
  color: #37474f;
}

.winter-footer {
  background: #bbdefb;
  text-align: center;
  padding: 1.5rem;
  margin-top: 4rem;
  color: #0d47a1;
  font-size: 0.95rem;
  border-top: 2px solid #64b5f6;
}

@media (max-width: 768px) {
  .highlight {
    flex-direction: column;
    text-align: center;
  }

  .highlight img {
    max-width: 100%;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/winter_overlay.png') repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}
.seasonal-nav {
  background: #fff3e0;
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 2px solid #ffcc80;
}

.seasonal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.seasonal-nav a {
  color: #e65100;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s ease;
  background: #ffe0b2;
}

.seasonal-nav a:hover {
  background: #e65100;
  color: #fff;
}
