/* Base Styles */
body {
  background: #111; /* or your favorite black */
  color: #fefdfc;
  font-family: 'Fira Mono', 'Menlo', 'Monaco', monospace;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  margin-bottom: 0.2em;
  color: #fefdfc;
}

a {
  color: #b5a27e; /* Champagne gold */
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6f0000;
}

section {
  margin-bottom: 3rem;
}




/* Header*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 100; /* Sits above everything else */
  background: #111;
  box-shadow: 0 2px 16px 0 #0007; /* Gives a little floating drama */
  min-height: 200px;  /* Bump this up if you want it taller, try 100px for even more drama */
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
}


.site-header {
  display: flex;
  align-items: flex-start;        /* Logo block aligns at the top */
  justify-content: space-between; /* Pushes nav/bag right */
  padding: 32px 48px 24px 48px;   /* Room for logo, nav, and icons. Adjust to taste */
  min-height: 180px;              /* Lower if you want, 200px is fine too */
}

/* The left side block for logo, name, and socials */
.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6em;
  min-width: 220px;              /* So it doesn't get squished */
}

/* Fancy "Danielle" script */
@font-face {
  font-family: 'Daenerys';
  src: url('/fonts/Daenerys.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

.danielle-script {
  font-family: 'Daenerys', 'Cormorant Garamond', serif;
  font-size: 10rem;             /* Make this bigger for drama */
  /*font-weight: 20;*/
  letter-spacing: 0.0em;   /* More space */
  color: #fff;
  line-height: 1;
  margin-bottom: 0.08em;
}

/* "Danielle Verlaine" underneath */
.author-name {
  white-space: nowrap;
  font-size: 1.05rem;
  color: #b5a27e;
  Margin-top: -0.0em;
  margin-bottom: 0.2em;
  letter-spacing: 0.04em;
  margin-left: 7.5em; /* more numbers if want it to the right */
}

/* Socials under the name */
.social-icons {
  display: flex;
  gap: 1.1em;
  margin-top: 0.11em;
  margin-left: 4.05em;
}

/* Navigation bar with home, books, contacts, etc */


nav {
  display: flex;
  gap: 4.5em;
  align-items: flex-end;
  margin-left: 40em;
  margin-right: auto;
  padding-top: 11.17em;
  margin-bottom: auto; /* fix the capital M */
}

nav a {
  font-size: 1.1rem;
  color: #fefdfc;
  letter-spacing: 0.04em;
  opacity: 0.9;
  padding-top: 2em;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(.4,2,.6,1);
}

/* ACTIVE NAV STYLE */
nav a.active {
  color: #4c0000;                /* Your signature deep red */
  font-size: 1.3rem;             /* Slightly bigger for main character energy */
  font-weight: 800;              /* A little extra bold */
  text-shadow: 0 0 3px #ffffff; /* Soft gold glow, adjust as needed */
  letter-spacing: 0.04em;
  /*-webkit-text-stroke: 0.2px #ffffff;*/ /*outline */
  transition: color 2.5s, font-size 0.18s, text-shadow 2.5;
}

/* Store Icon */
.store-icon {
  display: flex;
  gap: 1.1em;
  margin-top: 13em;
  margin-left: auto;
  margin-right: 8.5em;
}


/* Social Media Icons */
.social-icons svg {
  color: #b5a27e;        /* Sets "currentColor" for SVGs */
  fill: #b5a27e;         /* For SVGs that use fill */
  stroke: #b5a27e;       /* For SVGs that use stroke */
  transition: color 0.2s, fill 0.2s, stroke 0.2s;
}
.social-icons svg:hover,
.social-icons a:hover svg {
  color: #6f0000;        /* Make them dark red on hover for drama */
  fill: #6f0000;
  stroke: #6f0000;
}

/* Social Media Icons - Make it POP*/
.social-icons svg {
  color: #b5a27e;
  fill: #b5a27e;
  stroke: #b5a27e;
  transition: 
    color 0.18s cubic-bezier(.4,2,.6,1), 
    fill 0.18s cubic-bezier(.4,2,.6,1), 
    stroke 0.18s cubic-bezier(.4,2,.6,1), 
    transform 0.15s cubic-bezier(.4,2,.6,1), 
    filter 0.15s cubic-bezier(.4,2,.6,1);
}

.social-icons a:hover svg,
.social-icons svg:hover {
  color: #6f0000; /* lighter pop, you can change */
  fill: #6f0000;
  stroke: #6f0000;
  filter: drop-shadow(0 0 8px #b5a27e90);
  transform: scale(1.15) rotate(-5deg);
  cursor: pointer;
}


/* Store Icon */

.store-icon svg {
  color: #b5a27e;        /* Sets "currentColor" for SVGs */
  fill: #b5a27e;         /* For SVGs that use fill */
  stroke: #b5a27e;       /* For SVGs that use stroke */
  transition: color 0.2s, fill 0.2s, stroke 0.2s;
}
.store-icon svg:hover,
.store-icon a:hover svg {
  color: #6f0000;        /* Make them dark red on hover for drama */
  fill: #6f0000;
  stroke: #6f0000;
}

/* Store - Make it POP*/
.store-icon svg {
  color: #b5a27e;
  fill: #b5a27e;
  stroke: #b5a27e;
  transition: 
    color 0.18s cubic-bezier(.4,2,.6,1), 
    fill 0.18s cubic-bezier(.4,2,.6,1), 
    stroke 0.18s cubic-bezier(.4,2,.6,1), 
    transform 0.15s cubic-bezier(.4,2,.6,1), 
    filter 0.15s cubic-bezier(.4,2,.6,1);
}

.store-icon a:hover svg,
.store-icon svg:hover {
  color: #6f0000; /* lighter pop, you can change */
  fill: #6f0000;
  stroke: #6f0000;
  filter: drop-shadow(0 0 8px #b5a27e90);
  transform: scale(1.15) rotate(-5deg);
  cursor: pointer;
}


/* Accent Strip */

.accent-strip {
  display: block;
  width: 100%;  /* full viewport width */
  height: 20px !important; /* force the height */
  background: #b5a27e;
  position: relative;

}

/* Accent Strip THIN*/

.accent-strip-thin {
  display: block;
  width: 100%;  /* full viewport width */
  height: 5px !important; /* force the height */
  background: #b5a27e;
  position: relative;

}


/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;       /* vertically centers content */
  gap: 2rem;                 /* space between text and image */
  flex-wrap: wrap;           /* allows wrapping on small screens */
  padding: 2rem;             /* optional, for breathing room */
}

.hero-text {
  text-align: center;
  flex: 1 1 300px;           /* grow/shrink with a minimum width */
  font-family: 'Fira Mono', monospace;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fefdfc;
}

.hero-image {
  flex: 1 1 300px;
  max-width: 400px;          /* or whatever fits your design */
}

.hero-image img {
  width: 80%;               /* makes image fill container */
  height: auto;
  border-radius: 8px;        /* optional, for style */
}

/* Hero container */
.container {
  align-items: center;
  display: flex;
  max-width: 1100px; /* or whatever max width you want */
  max-height: 500px; /* or whatever max width you want */
  margin-top: 5em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;  /* padding so it doesn’t hug the edges on small screens */
  padding-right: 2rem;
  gap: 10rem;  /* space between text and image*/
}



/* Newsletter */
.newsletter {
  /* No hero height! */
  min-height: 200px;
  /*background: linear-gradient(135deg, #111 80%, #4c0000 100%);*/
  background: #111; /* or whatever base you want */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  margin: 3rem auto 0 auto; /* margin-top for some space from above */
  padding: 2.5rem 1.5rem;
  text-align: center;
  max-width: 680px; /* optional, keeps it tidy on wide screens */
  border-radius: 12px; /* optional, for extra polish */
}

.newsletter h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #b5a27e; /* This is your gold/champagne! */
}

.newsletter-form button {
  background: #4c0000;
  color: #fff;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #6f0000;
}

.newsletter-form input[type="email"] {
  padding: 1rem 1.5rem;
  border: 1.5px solid #b5a27e;   /* gold border */
  border-radius: 6px;
  background: #181616;           /* soft, slightly lighter than #111 */
  color: #fff;
  font-size: 1rem;
  min-width: 260px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px 0 #0002; /* subtle shadow for depth */
}

.newsletter-form input[type="email"]:focus {
  border: 1.5px solid #4c0000;      /* red on focus */
  box-shadow: 0 0 0 2px #b5a27e55; /* subtle gold glow on focus */
  background: #222;                 /* slightly lighter background for focus */
  color: #fff;
}

/* Bonus: keep button height aligned with input */
.newsletter-form button {
  height: 48px;
  padding: 0 2.2rem;
  vertical-align: middle;
}


