/* ============================================
   Ciprian Grigorescu Photography - Coming Soon
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --text-primary: #f5f0eb;
  --text-secondary: #8a8480;
  --accent: #c9a96e;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes letterSpread {
  from {
    opacity: 0;
    letter-spacing: 0.3em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.55em;
  }
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* --- Page Wrapper --- */
.page {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 2rem;
  animation: fadeIn 1.2s ease-out both;
}

/* --- Logo --- */
.logo {
  margin-bottom: 3rem;
  animation: logoReveal 1.4s ease-out both;
  animation-delay: 0.2s;
}

.logo img {
  width: 280px;
  max-width: 80vw;
  height: auto;
  filter: invert(1);
  opacity: 0.92;
  transition: opacity 0.4s ease;
}

.logo img:hover {
  opacity: 1;
}

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  animation: fadeIn 1.6s ease-out both;
  animation-delay: 0.6s;
}

.divider__line {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  animation: lineExpand 1.2s ease-out both;
  animation-delay: 1s;
}

.divider__diamond {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Heading --- */
.heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.55em;
  text-align: center;
  margin-bottom: 1rem;
  animation: letterSpread 1.8s ease-out both;
  animation-delay: 0.4s;
}

/* --- Subheading --- */
.subheading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeIn 1.6s ease-out both;
  animation-delay: 0.8s;
}

/* --- Body Text --- */
.body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--text-secondary);
  text-align: center;
  max-width: 520px;
  letter-spacing: 0.04em;
  animation: fadeIn 1.6s ease-out both;
  animation-delay: 1s;
}

/* --- Contact Section --- */
.contact {
  text-align: center;
  animation: fadeIn 1.6s ease-out both;
  animation-delay: 1.2s;
}

.contact__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.contact__whatsapp svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact__whatsapp:hover {
  color: var(--text-primary);
}

.contact__city {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

/* --- Social Section --- */
.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: fadeIn 1.6s ease-out both;
  animation-delay: 1.4s;
}

.social__label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.social__links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s ease;
}

.social__link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.social__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Footer --- */
.footer {
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  opacity: 0.6;
  animation: fadeIn 2s ease-out both;
  animation-delay: 1.6s;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .page {
    padding: 2rem 1.2rem;
  }

  .logo img {
    width: 220px;
  }

  .divider__line {
    width: 40px;
  }

  .heading {
    letter-spacing: 0.35em;
  }

}
