/*
Theme Name: Lilian Coming Soon
Theme URI: https://guide.lilianpissy.com/
Author: Lilian Team
Description: Under construction homepage theme with services, contact details, social links, and a link to the completed Lilian's Guide site.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lilian-coming-soon
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@400;500;700;800&display=swap');

:root {
  --ink: #f8f6f3;
  --ink-soft: #e6dfd7;
  --line: rgba(255, 255, 255, 0.2);
  --accent: #f18c77;
  --card: rgba(23, 18, 16, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(20, 15, 13, 0.62), rgba(20, 15, 13, 0.62)),
    url('images/background.webp') center center / cover no-repeat fixed;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.simple-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
  background: var(--card);
  backdrop-filter: blur(2px);
  text-align: center;
}

.construction-image {
  width: min(100%, 340px);
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
  margin: 0 auto 1rem;
}

.construction-title {
  margin: 0;
  text-align: center;
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: clamp(1.5rem, 4.8vw, 3rem);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #ffd8bf;
}

.simple-card h1 {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 3.4vw, 2rem);
  line-height: 1.03;
}

.simple-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #2b120e;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line);
}

.section-title {
  margin: 1.6rem 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.simple-list {
  margin: 0 auto;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  display: inline-block;
  text-align: left;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  color: var(--ink-soft);
  justify-content: center;
}

.contact-lines a {
  color: var(--ink);
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.site-foot {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .site-shell {
    padding: 0.8rem;
  }
}
