:root {
  --brown-main: #80634c;
  --pastel-bg: #fbf8f3;
  --btn-bg: #ae856c;
  --btn-text: #fff;
  --font-primary: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}
body, html {
  margin: 0; padding: 0;
  height: 100%;
  background: var(--pastel-bg);
  font-family: var(--font-primary);
  color: var(--brown-main);
  display: flex;
  flex-direction: column;
}

.main-header {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(128, 99, 76, 0.1);
  flex-shrink: 0;
  z-index: 1000;
  position: relative;
}

.main-header nav ul {
  display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0;
}

.main-header nav a {
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 6px;
  padding: 0.3em 0.8em;
  transition: background-color 0.3s ease;
}
.main-header nav a:hover,
.main-header nav a.active {
  background: #d7bfa5; color: var(--brown-main);
}

.blog-main {
  flex: 1;
  position: relative;
  overflow-y: auto;
  padding: 2rem 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
  user-select: none; /* disables page interaction due to coming soon */
}

.blog-ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.8rem;
  opacity: 0.25; /* dimmed behind overlay */
  pointer-events: none; /* disable interaction */
}

.gift-idea {
  background: #ffe9d6;
  border-radius: 22px;
  box-shadow: 0 6px 22px rgba(128, 99, 76, 0.15);
  padding: 1.8rem 2rem;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.gift-idea:hover {
  box-shadow: 0 10px 38px rgba(128, 99, 76, 0.26);
}

.gift-idea h2 {
  font-size: 1.4rem;
  color: var(--brown-main);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.gift-idea p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--brown-main);
}

/* Coming Soon overlay */
.coming-soon-overlay {
  position: fixed;
  top: 64px; /* approximate header height */
  left: 0;
  width: 100vw;
  height: calc(100vh - 64px);
  background: rgba(128, 99, 76, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}

.coming-soon-text {
  font-size: 6rem;
  color: #fff2e9;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 25px #ffdcb8, 0 0 12px #fff2e9;
  animation: bounceFade 3s ease-in-out infinite;
  user-select: none;
  padding: 0 1rem;
  border-radius: 25px;
  background: rgba(254, 220, 184, 0.35);
  box-shadow: 0 0 50px rgba(254, 220, 184, 0.8);
  text-align: center;
}

/* Bounce and fade animation */
@keyframes bounceFade {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 25px #ffdcb8, 0 0 12px #fff2e9;
  }
  50% {
    transform: translateY(-22px);
    opacity: 0.75;
    text-shadow: 0 0 50px #ffbaa3, 0 0 18px #fff8e8;
  }
}

footer {
  flex-shrink: 0;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 0.9rem 1rem;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 -3px 24px -5px rgba(128, 99, 76, 0.3);
}
