/* 🌱 Spring Style CSS for Smartec.ie Seasonal Page */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e8f5e9, #ffffff);
  color: #2e7d32;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.spring-header {
  background: linear-gradient(to right, #c8e6c9, #a5d6a7);
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 4px solid #81c784;
  position: relative;
}

.spring-header h1 {
  font-size: 2.8rem;
  color: #1b5e20;
  margin-bottom: 0.5rem;
}

.spring-header p {
  font-size: 1.2rem;
  color: #33691e;
}

.spring-header::after {
  content: '🌼';
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
  display: block;
  margin-top: 1rem;
  color: #66bb6a;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.season-tabs {
  background: #f1f8e9;
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #dcedc8;
}

.season-tabs nav a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #2e7d32;
  background: #dcedc8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.season-tabs nav a:hover,
.season-tabs nav a.active {
  background: #2e7d32;
  color: #fff;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  background: #f1f8e9;
  padding: 2rem;
  border-radius: 12px;
}

.highlight img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.highlight h2 {
  color: #1b5e20;
  margin-bottom: 0.5rem;
}

.highlight p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.btn {
  background: #2e7d32;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1b5e20;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.grid article {
  background: #e8f5e9;
  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: #388e3c;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.grid article p {
  font-size: 0.95rem;
  color: #4e342e;
}

.spring-footer {
  background: #c8e6c9;
  text-align: center;
  padding: 1.5rem;
  margin-top: 4rem;
  color: #33691e;
  font-size: 0.95rem;
  border-top: 2px solid #81c784;
}

@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/spring_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;
}
