/*
Theme Name: CUPTY - Stránky ve výstavbě
Theme URI: https://cupty.cz/
Author: CUPTY
Author URI: https://cupty.cz/
Description: Jednoduchá dočasná WordPress šablona pro stránku ve výstavbě značky CUPTY. Obsahuje logo, text a ukazatel dokončení 75 %. Bez horní navigace a bez produktové lišty.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: cupty-ve-vystavbe
*/

:root{
  --pink:#f7b8c4;
  --pink-dark:#d95d83;
  --mint:#dfeee8;
  --mint-dark:#78aa98;
  --cream:#fffaf7;
  --text:#263238;
  --muted:#67737a;
  --white:#ffffff;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;min-height:100%}
body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 8% 18%, rgba(223,238,232,.85) 0 0, transparent 22%),
    radial-gradient(circle at 94% 76%, rgba(247,184,196,.45) 0 0, transparent 26%),
    linear-gradient(135deg,#fff 0%,#fffaf7 47%,#fff3f6 100%);
  color:var(--text);
}
.cupty-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 22px;
  position:relative;
  overflow:hidden;
}
.cupty-page:before,.cupty-page:after{
  content:"";
  position:absolute;
  width:280px;height:280px;
  border-radius:50%;
  z-index:0;
  opacity:.42;
}
.cupty-page:before{left:-90px;top:-80px;background:var(--mint)}
.cupty-page:after{right:-100px;bottom:-95px;background:var(--pink)}
.cupty-card{
  width:min(1040px,100%);
  position:relative;
  z-index:1;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(235,220,220,.95);
  border-radius:34px;
  box-shadow:0 24px 70px rgba(85,59,68,.10);
  padding:54px 42px 44px;
  text-align:center;
}
.cupty-logo{
  width:190px;
  height:190px;
  object-fit:contain;
  display:block;
  margin:0 auto 28px;
  border-radius:50%;
}
.cupty-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:#f1f8f5;
  color:var(--mint-dark);
  font-weight:700;
  letter-spacing:.04em;
  font-size:14px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.cupty-status span{color:var(--pink-dark)}
h1{
  margin:0 auto 20px;
  max-width:850px;
  font-family: Georgia,"Times New Roman",serif;
  font-size:clamp(38px,6vw,76px);
  line-height:1.08;
  letter-spacing:-1.3px;
  color:#28363b;
}
h1 strong{color:var(--pink-dark);font-weight:700}
.cupty-lead{
  max-width:800px;
  margin:0 auto 34px;
  color:#3f4b50;
  font-size:clamp(18px,2.4vw,27px);
  line-height:1.55;
}
.cupty-progress-wrap{
  width:min(640px,100%);
  margin:0 auto;
  padding:22px 24px 24px;
  background:linear-gradient(135deg,#f3faf7,#fff6f8);
  border:1px solid #eee2e1;
  border-radius:24px;
}
.cupty-progress-top{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:12px;
  color:#455157;
  font-size:18px;
  font-weight:700;
}
.cupty-progress{
  width:100%;
  height:18px;
  background:#f3e9e9;
  border-radius:999px;
  overflow:hidden;
}
.cupty-progress span{
  display:block;
  width:75%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--mint-dark),var(--pink-dark));
}
.cupty-small{
  margin-top:28px;
  color:#7b858a;
  font-size:15px;
}
@media(max-width:680px){
  .cupty-card{padding:38px 22px 32px;border-radius:26px}
  .cupty-logo{width:150px;height:150px}
  .cupty-progress-top{font-size:16px}
}
