/* Preland Header & Footer Styles for Hawk's Gaze */

.preland-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.98));
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(193, 120, 23, 0.1);
  padding: 1.2rem 0;
}

.preland-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preland-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c17817, #e8a547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.preland-logo:hover {
  transform: translateY(-2px);
}

.preland-logo i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #c17817, #e8a547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preland-back-link {
  color: #c17817;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.preland-back-link:hover {
  background: #c17817;
  color: white;
  border-color: #c17817;
  transform: translateY(-2px);
}

.preland-footer {
  background: linear-gradient(135deg, #2c1810 0%, #1a1410 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.preland-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c17817, #e8a547, #d99a3a);
}

.preland-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.preland-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.preland-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.preland-footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.preland-footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #c17817, #e8a547);
  border-radius: 2px;
}

.preland-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.preland-footer-section ul li {
  margin-bottom: 0.8rem;
}

.preland-footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.preland-footer-section a:hover {
  color: #e8a547;
  transform: translateX(5px);
}

.preland-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .preland-header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .preland-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .preland-logo {
    font-size: 1.5rem;
  }
  
  .preland-logo i {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .preland-header-inner {
    padding: 0 1rem;
  }
  
  .preland-footer-content {
    padding: 0 1rem;
  }
}

/* Adjust body padding for fixed header */
body {
  padding-top: 80px;
}
