/* ====== Header Banner Improvements - Creative Solutions ====== */

/* Option 1: Compact Modern Header */
.header-container {
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-title-link {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-normal);
}

.site-title-link:hover {
  transform: scale(1.02);
}

/* OPTION 1: Compact Banner (Recommended) */
.header-banner {
  max-height: 80px; /* Much smaller than original */
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: var(--transition-normal);
}

/* OPTION 2: Logo + Text Combination */
.header-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.header-logo-small {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.header-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

/* OPTION 3: Background Banner with Overlay Text */
.header-hero-style {
  background-image: url('../images/banner2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.header-hero-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(233, 30, 99, 0.8);
  z-index: 1;
}

.header-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}

.header-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-hero-subtitle {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* OPTION 4: Minimalist Text-Only Header */
.header-minimal {
  text-align: center;
  padding: var(--space-lg) 0;
  background: var(--gradient-primary);
  color: var(--text-light);
}

.header-minimal-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.header-minimal-tagline {
  font-size: 0.95rem;
  margin: var(--space-xs) 0 0 0;
  opacity: 0.9;
  font-weight: 300;
}

/* OPTION 5: Split Layout with Logo */
.header-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
}

.header-split-logo {
  height: 60px;
  width: auto;
}

.header-split-content {
  text-align: right;
}

.header-split-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.header-split-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .header-banner {
    max-height: 60px;
    max-width: 250px;
  }
  
  .header-text {
    font-size: 1.5rem;
  }
  
  .header-hero-title {
    font-size: 2rem;
  }
  
  .header-split {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .header-split-content {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header-banner {
    max-height: 50px;
    max-width: 200px;
  }
  
  .header-logo-text {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .header-hero-style {
    height: 100px;
  }
  
  .header-hero-title {
    font-size: 1.8rem;
  }
}

/* ====== Animation Enhancements ====== */
.header-banner:hover {
  transform: scale(1.05);
}

.header-logo-small:hover {
  transform: rotate(5deg) scale(1.1);
}

/* Pulse animation for attention */
@keyframes headerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.header-attention {
  animation: headerPulse 3s ease-in-out infinite;
}

nav {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

nav a:hover {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
}

nav a:hover::after {
  width: 100%;
}