/* Muggs Of Writing - Coming Soon */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
  --gold: #d4a726;
  --gold-light: #f0d78a;
  --gold-glow: rgba(212, 167, 38, 0.4);
  --green-900: #071a0e;
  --green-700: #143d24;
  --green-600: #1a5231;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --radius: 12px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-primary);
  background: var(--green-900);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--green-700) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 167, 38, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, var(--green-600) 0%, transparent 40%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../kells/book_of_kells_1.jpg') center/cover no-repeat;
  opacity: 0.06;
  filter: grayscale(40%) brightness(0.7);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 600px;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

h1 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow:
    0 0 20px rgba(212, 167, 38, 0.4),
    0 0 40px rgba(212, 167, 38, 0.2);
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}

.coming-soon {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: var(--glass);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  animation: pulse 3s ease-in-out infinite;
}

.coming-soon span {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px var(--gold-glow); }
  50% { box-shadow: 0 0 25px var(--gold-glow), 0 0 40px rgba(212, 167, 38, 0.2); }
}

.description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 450px;
  margin: 0 auto;
}

.site-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.site-footer span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .logo {
    max-width: 120px;
  }
}
