:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    /* CELTICS GREEN ACCENT */
    --accent: #007A33; 
    --accent-glow: rgba(0, 122, 51, 0.3);
    --font-head: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --section-gap: 200px; /* Dramatic spacing */
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
}

/* Bold Cinzel Heading Logic */
h1, h2, h3, .logo {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo { font-size: 1.1rem; color: var(--accent); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.7rem; color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

.hero {
    /* Using the standing image */
    background: url('92cd2786-5f4c-4209-baf4-14f4002cf802.jpeg');
    background-size: cover;
    background-position: center top; 
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15,15,15,0.3), rgba(15,15,15,0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}
/* --- Section reveal animation --- */
.section {
    padding: var(--section-gap) 40px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 100px;
}

.section-title::after {
    content: ''; display: block; width: 400px; height: 3px; background: var(--accent); margin: 20px auto 0;
}

/* --- Layouts --- */
.split-layout, .novel-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.bio-image img {
    width: 100%;
    border-left: 10px solid var(--accent);
    padding-left: 30px;
}

.divider-line { width: 500px; height: 1px; background: var(--accent); margin-top: 30px; }

/* === Novel Feature Layout (cover left, text right) === */
.novel-feature{
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 60px;
  align-items: center;
}

.novel-feature .book-cover{
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.novel-feature .book-cover img{
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #1a1a1a;
}

/* mobile: stack cover above text */
@media (max-width: 850px){
  .novel-feature{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .novel-feature .buy-buttons{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}


/* --- Book Grid --- */
.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px 60px;
}

/* === Coloring Books Carousel Override === */
#coloring .book-grid{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep scroll */
#coloring .book-grid{
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / Edge */
}

#coloring .book-grid::-webkit-scrollbar{
  display: none;                /* Chrome, Safari */
}



#coloring .book-card{
  flex: 0 0 260px;
  scroll-snap-align: start;
  text-align: center;
}


.book-card { text-align: center; }
.book-card:nth-child(even) { margin-top: 100px; }

.book-cover {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    border: 1px solid #1a1a1a;
    transition: 0.5s;
}

.book-card:hover .book-cover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* --- Buttons --- */
.btn {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--accent);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary { background: var(--accent); }

/* --- Contact Form --- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

input, textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #222;
    padding: 10px 0;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

/* Responsive */
@media (max-width: 850px) {
    .split-layout, .novel-feature, .book-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
}

.coming-soon{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 2.5rem;        /* adjust bigger if you want */
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);     /* your green */
}

.site-footer {
  border-top: 1px solid #111;
  margin-top: 120px;
  padding: 60px 40px;
  background: #050505;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  font-family: var(--font-head);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-rights {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-credit {
  font-size: 0.65rem;
  color: #666;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.social-links a {
  padding: 12px 24px;
  border: 1px solid var(--accent);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
