/* ========================================
   HEADER + NAVIGATION + FOOTER STYLING
   for Raed Theme (BlossomPads)
======================================== */

/* ---------- Header Background ---------- */
header, .site-header {
  background-color: #f5decd;
  border-bottom: 2px solid #d3e0d7;
  box-shadow: 0 2px 6px rgba(169, 196, 187, 0.2);
  transition: background-color 0.3s ease;
}

/* ---------- Logo & Branding ---------- */
.site-logo img {
  max-height: 60px;
  transition: transform 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
}

/* ---------- Navigation Bar ---------- */
.navbar, .main-nav {
  background-color: transparent;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.navbar a, .main-nav a {
  color: #852564;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar a:hover, .main-nav a:hover {
  background-color: #f3a2a2;
  color: #ffffff;
}

/* ---------- Active Link Highlight ---------- */
.navbar a.active, .main-nav a.active {
  background-color: #ff5768;
  color: #fff;
  font-weight: 600;
}

/* ---------- Search & Cart Icons ---------- */
.header-icons a, .site-header .icon {
  color: #852564;
  transition: color 0.3s ease, transform 0.2s ease;
}

.header-icons a:hover, .site-header .icon:hover {
  color: #ff5768;
  transform: scale(1.1);
}

/* ---------- Sticky Header (Optional Enhancement) ---------- */
header.sticky, .site-header.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(245, 222, 205, 0.98);
  backdrop-filter: blur(6px);
}

/* ========================================
   FOOTER
======================================== */

footer, .site-footer {
  background-color: #852564;
  color: #f5decd;
  padding: 40px 0;
  text-align: center;
}

footer a, .site-footer a {
  color: #f3a2a2;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover, .site-footer a:hover {
  color: #ffffff;
}

footer h4, .site-footer h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 16px;
}

footer .social-icons a {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.2rem;
  color: #d3e0d7;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .social-icons a:hover {
  color: #ff5768;
  transform: scale(1.1);
}

/* ---------- Footer Bottom Line ---------- */
.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(243, 162, 162, 0.4);
  padding-top: 16px;
  font-size: 0.9rem;
  color: #d3e0d7;
}

/* ---------- Scroll to Top Button (if present) ---------- */
.scroll-top {
  background-color: #ff5768;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 4px 12px rgba(98, 92, 102, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.scroll-top:hover {
  background-color: #f3a2a2;
  transform: scale(1.1);
}