/* Gökçe Catering • Centered Coming Soon (Light / Grey) */

:root{
  --bg0:#f6f7fb;
  --bg1:#eef1f8;

  --text:#0b1220;
  --muted:rgba(11,18,32,.68);

  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.92);

  --g:#1a7a2b;      /* logo green */
  --o:#ff7a1a;      /* logo orange */

  --r: 22px;
  --shadow: 0 20px 70px rgba(11,18,32,.14);

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 560px at 25% 18%, rgba(26,122,43,.12), transparent 60%),
    radial-gradient(900px 560px at 75% 20%, rgba(255,122,26,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

.bg{ position:fixed; inset:0; z-index:-1; pointer-events:none; }
.glow{
  position:absolute;
  width:560px; height:560px;
  border-radius: 50%;
  filter: blur(60px);
  opacity:.55;
}
.glow--g{ left:-200px; top:-220px; background: radial-gradient(circle at 30% 30%, rgba(26,122,43,.75), rgba(26,122,43,.06) 60%, transparent 72%); }
.glow--o{ right:-220px; top:-240px; background: radial-gradient(circle at 40% 40%, rgba(255,122,26,.70), rgba(255,122,26,.05) 60%, transparent 72%); }

.grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(11,18,32,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,18,32,.10) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .06;
  mask-image: radial-gradient(circle at 50% 30%, #000 18%, transparent 62%);
}

.wrap{
  min-height: 100%;
  display:grid;
  place-items:center;
  padding: 26px 16px;
}

.card{
  width: min(860px, 100%);
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.6vw, 28px);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(800px 340px at 50% -10%, rgba(11,18,32,.06), transparent 60%);
  pointer-events:none;
}

.logo{
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}

.logo__frame{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(11,18,32,.14);
  box-shadow:
    0 18px 40px rgba(11,18,32,.10),
    inset 0 1px 0 rgba(255,255,255,.70);
}
@media (max-width: 520px){
  .logo__frame{ padding: 12px 14px; border-radius: 20px; }
}

.logo img{
  width: min(320px, 72%);
  height:auto;
  filter: drop-shadow(0 10px 18px rgba(11,18,32,.14));
  transform: translateZ(0);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11,18,32,.04);
  border: 1px solid rgba(11,18,32,.08);
  color: rgba(11,18,32,.70);
  font-size: 13px;
  margin: 8px auto 14px;
}

.badge__dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--g), var(--o));
  box-shadow: 0 0 0 6px rgba(26,122,43,.10);
}

.title{
  margin: 0 0 10px;
  line-height: 1.05;
  letter-spacing: -0.7px;
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 56px);
}

.accent{
  background: linear-gradient(135deg, rgba(26,122,43,1), rgba(255,122,26,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desc{
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
  width: min(70ch, 100%);
}

.contact{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 10px;
  margin-top: 8px;
}

.pill{
  display:flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(11,18,32,.03);
  border: 1px solid rgba(11,18,32,.08);
  min-width: 210px;
  text-align:left;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.pill:hover{
  transform: translateY(-1px);
  background: rgba(11,18,32,.05);
  border-color: rgba(11,18,32,.10);
}

.pill__k{
  font-size: 12px;
  color: rgba(11,18,32,.60);
  letter-spacing: .2px;
}
.pill__v{
  font-size: 14px;
  font-weight: 500;
  color: rgba(11,18,32,.92);
  line-height: 1.35;
}

.pill--copy{
  cursor:pointer;
  align-items:flex-start;
}
.pill--copy:active{ transform: translateY(0px); }

.pill--addr{
  min-width: min(520px, 100%);
  align-items:flex-start;
}

.foot{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(11,18,32,.10);
  color: rgba(11,18,32,.62);
  font-size: 12.5px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  position:relative;
  z-index:1;
}
.muted{ opacity:.9; }
.dotsep{ opacity:.55; }

.toast{
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  pointer-events:none;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,18,32,.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(11,18,32,.12);
  transition: opacity .18s ease, transform .18s ease;
  max-width: calc(100% - 26px);
  z-index: 20;
}
.toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast__dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--g), var(--o));
}
.toast__text{
  font-size: 13px;
  color: rgba(11,18,32,.92);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

@media (max-width: 560px){
  .pill{ min-width: 100%; }
  .pill--addr{ min-width: 100%; }
}
