/*
Theme Name: Cibelle Simin — Coming Soon
Theme URI: https://cabellesimin.com
Author: Cibelle Simin
Description: Tema Coming Soon editorial dark para portfólio de design.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: cibelle-simin
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
  background: #1a1a1a;
}

/* ─── PÁGINA ─── */
.page {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 600px) {
  html, body {
    height: auto;
    overflow: auto;
  }
  .page {
    min-height: 100dvh;
    padding: 6rem 0 5rem;
    justify-content: center;
  }
}

.page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 75vh;
  background: #2a2a2a;
  border-radius: 50% 50% 0 0 / 12% 12% 0 0;
  opacity: 0.45;
  filter: blur(28px);
  z-index: 1;
}

/* ─── BADGE TOPO ─── */
.badge {
  position: absolute;
  top: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.5rem 1.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  z-index: 20;
  opacity: 0;
  animation: fadeDown 1s ease 0.3s forwards;
}

/* ─── CENTRO ─── */
.center {
  position: relative;
  z-index: 20;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.88;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.5s forwards;
}

.soon {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-top: -0.3rem;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.75s forwards;
}

.divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
  margin: 2rem auto 0;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.9s forwards;
}

.bio {
  max-width: 420px;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: center;
  padding: 0 2rem;
  opacity: 0;
  animation: fadeUp 1.1s ease 1s forwards;
}


/* ─── RODAPÉ ─── */
.site-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.site-footer a {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}

.site-footer a:hover { color: rgba(255,255,255,0.75); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}

.wpp-icon {
  width: 11px;
  height: 11px;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
}

.site-footer .sep {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── MODAL OVERLAY ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── MODAL BOX ─── */
.modal {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3rem 3rem 2.5rem;
  width: 100%;
  max-width: 500px;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: rgba(255,255,255,0.8); }

.modal-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ─── FORMULÁRIO ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
}

.form-submit {
  margin-top: 0.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.75rem 2rem;
  background: transparent;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.form-submit:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.form-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.form-feedback {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  min-height: 1rem;
  margin-top: 0.25rem;
}

/* ─── ANIMAÇÕES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── RESPONSIVO ─── */
@media (max-width: 600px) {
  .coming { font-size: 4.5rem; }
  .soon   { font-size: 2rem; }
  .bio    { font-size: 0.73rem; max-width: 90vw; }
  .modal  { padding: 2.5rem 1.8rem 2rem; }
  .field-group { grid-template-columns: 1fr; }
  .modal-title { font-size: 1.6rem; }
  .site-footer {
    position: static;
    margin-top: 3rem;
    transform: none;
    bottom: auto;
  }
  .badge {
    top: 1.8rem;
  }
}
