/* ================================
   index.css — Jean theme (denim)
   Stickers ON TOP of panels
   ================================ */

:root{
  /* Denim palette */
  --denim: #1f3a5a;        /* deep denim */
  --denim2: #2a4a72;       /* hover denim */
  --sky: #eaf3ff;          /* soft highlight */
  --ink: #0f1724;          /* text */
  --muted: rgba(15, 23, 36, 0.72);

  /* Glass */
  --glass: rgba(255,255,255,0.78);
  --glass2: rgba(255,255,255,0.62);
  --border: rgba(15,23,36,0.14);
  --shadow: 0 20px 45px rgba(0,0,0,0.22);

  --radius: 18px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;

  /* Jean background */
  background-image:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url("img/jeanbg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.wrap{
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 26px 170px 90px; 
  position: relative;
}

/* ================================
   CONTENT LAYER
   ================================ */

.panel, nav, .top, .foot{
  position: relative;
  z-index: 3;
}


/* ================================
   DECOR "STICKERS" — ON TOP
   ================================ */

.decor{
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.25));
  z-index: 10;   /* 🔥 ON TOP */
}



/* Bigger + fully visible (no negative left/right) */
.decor.star-green{
  top: 0px;
  left: 80px;     
  width: 180px;
  transform: rotate(-10deg);
}

.decor.star-blue{
  top: 180px;
  right: 100px;    
  width: 180px;
  transform: rotate(15deg);
}

.decor.star-pink{
  top: 600px;
  left: 60px;     
  width: 180px;
  transform: rotate(8deg);
}

.decor.star-yellow{
  top: 920px;
  right: 140px;    
  width: 140px;
  transform: rotate(-7deg);
}

.decor.bunny{
  bottom: 18px;
  bottom:100px ;
  left: 80px;    
  width: 180px;
}


/* Hide decor on small screens so it never crowds */
@media (max-width: 760px){
  .decor{ display:none; }
}

/* ================================
   NAV
   ================================ */

nav{
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;

  padding: 14px;
  border-radius: 22px;
  background: var(--glass2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

/* ================================
   TEXT
   ================================ */

.top h1{
  margin: 0 0 6px;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--denim);
  letter-spacing: 0.2px;
}

.sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sectionTitle{
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--denim);
  letter-spacing: 0.2px;
}

.p{
  margin: 0;
  line-height: 1.65;
  color: rgba(15,23,36,0.92);
}

/* ================================
   PANELS / CARDS (glassy)
   ================================ */

.panel{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,36,0.12);
}

/* ================================
   BUTTONS / LINKS (Denim theme)
   ================================ */

.btn{
  appearance: none;
  border: 1px solid rgba(31,58,90,0.30);
  background: rgba(255,255,255,0.86);
  color: var(--denim);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(0,0,0,0.16);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover{
  background: rgba(234,243,255,0.90); /* soft sky */
  color: var(--denim2);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.20);
}

.primary{
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(234,243,255,0.92));
}

.refs {
  margin-top: 12px;
  padding-left: 18px;
  line-height: 1.6;
}

.refs li {
  margin-bottom: 6px;
  color: var(--ink);
}

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

.foot{
  margin-top: 32px;
  text-align: center;
  color: rgba(15,23,36,0.70);
  font-size: 14px;
}

::selection{
  background: rgba(234,243,255,0.95);
}
