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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px; /* match topbar height */
}

body { 
  font-family: 'Impact', 'Arial Black', sans-serif; 
  background: #0a0a0a; 
  color: #e0e0e0; 
  line-height: 1.6; 
  padding-top: 150px; /* match topbar height */
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 700px) {
  .top-pic {
    height: 45px;
    width: 45px;
  }
}

@media (max-width: 600px) {
  .topbar-name {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 500px) {
  .top-pic {
    height: 35px;
    width: 35px;
  }
}

/* Topbar Section */

h1, h2, h3, .topbar-name, .tagline {
  font-family: 'Oswald', sans-serif;
}

.topbar {
  display: flex; 
  justify-content: space-between;
  height: 150px; 
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: #193e1d;
  padding: 40px 20px;
  text-align: center;
  transition: padding 0.3s ease, background 0.3s ease;
  overflow-x: hidden;
}

.brand {    /* Container for top bar to hold name and image correctly*/
  display: flex;
  align-items: center;
  gap: 35px;              /* Distance from logo to name */
}


.top-pic { 
  height: 60px; /* starting size */ 
  width: 60px; 
  object-fit: cover; 
  border-radius: 50%; 
  transition: height 0.2s ease, width 0.2s ease; 
}

.topbar.shrink {
  height: auto; 
  padding: 8px 20px;
  background: linear-gradient(to right, #1b1b1b, #2e2e2e);
  border-bottom: 4px solid #531414;
}

.topbar-name {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  transition: font-size 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}


.topbar.shrink .topbar-name {
  font-size: 1.6rem;
  transform: translateX(-10px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav a {
  color: #b08d3d;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ff6f60;
}




/* Hero Section */
.hero { 
  background: linear-gradient(to bottom right, #0d0d0d, #1a1f24, #0d0d0d);
  color: #f5f5f5; 
  padding: 140px 20px; 
  text-align: center;
  border-bottom: 6px solid #c0392b; /* matches your CTA color */
  position: relative; 
  overflow: hidden; 
  overflow-x: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.tagline { 
  font-size: 3rem; 
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #e8e8e8;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.sub-tagline {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-top: 0;
  color: #d7e9f5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(circle at 50% 30%, rgba(220,240,255,0.15), transparent 70%); 
  animation: fog-move 14s ease-in-out infinite alternate; 
  pointer-events: none; 
} 

@keyframes fog-move { 
  from { transform: translateX(-20px); 
  } 
  to 
  { 
    transform: translateX(20px); 
  } 
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 80px 120px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 150px 90px, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 250px 40px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 300px 200px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 180px 260px, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 60px 180px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 220px 150px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 340px 90px, rgba(255,255,255,0.6), transparent);
  background-size: 300px 300px;
  animation: frost-fall 12s linear infinite;
  opacity: 0.45;
}

@keyframes frost-fall {
  from {
    transform: translateY(-60px);
  }
  to {
    transform: translateY(60px);
  }
}




/* CTA to Newsletter Under Hero */ 
.cta-hero { 
  text-align: center; 
  padding: 60px 20px; 
  background: #111; 
  color: #fff; 
  border-bottom: 4px solid #531414; 
} 

.cta-hero h2 { 
  font-size: 2.5rem; 
  margin-bottom: 10px; 
} 

.cta-hero h2 span { 
  color: #c0392b; 
} 

.cta-hero p { 
  font-size: 1.2rem; 
  opacity: 0.9; 
  margin: 25px;
} 

.cta-button { 
  background: #c0392b; 
  color: #fff; 
  padding: 14px 28px; 
  border: none; 
  border-radius: 6px; 
  font-size: 1.1rem; 
  cursor: pointer; 
  transition: background 0.2s ease; 
  margin-top: 15px;
} 

.cta-button:hover { 
  background: #e74c3c; 
}




/* Profile Section */
.profile {
  display: flex;
  align-items: center;
  padding: 50px;
  background: #1a1a1a; /* slightly lighter than pure black */
  border-left: 5px solid #3a3f47; /* muted steel gray */
  margin-bottom: 60px;
  border-radius: 6px;
}

.profile-pic {
  width: 200px;
  border-radius: 50%;
  margin-right: 40px;
  border: 3px solid #3a3f47; /* subtle, not attention-grabbing */
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.bio {
  max-width: 700px;
  margin-right: auto;
  color: #d0d0d0; /* softer text color */
}

.bio h2 { 
  margin-bottom: 15px; 
  color: #b0b6bd; /* muted cool gray */
  text-transform: uppercase; 
  letter-spacing: 1px;
  font-size: 1.8rem;
}

.about h2 { 
  max-width: 700px; 
  margin: 0 auto; 
  line-height: 1.7; 
  color: #d0d0d0;
}



/* Newsletter Section */
.newsletter {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #0f1a12, #0b0b0b); 
  color: #fff;
  border-top: 4px solid #531414;
  border-bottom: 4px solid #531414;
}

.newsletter h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #c0392b;
}

.newsletter p {
  font-size: 1.2rem;
  padding-top: 25px;
  opacity: 0.9;
}

.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 20px auto 35px;
  max-width: 450px;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.7;
}

.newsletter-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-benefits li::before {
  content: "✔";
  color: #c0392b;
  font-weight: bold;
  font-size: 1.2rem;
}

.newsletter-form {
  max-width: 450px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input[type="email"] {
  flex: 1;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  font-size: 1rem;
}

.input-group button {
  padding: 14px 20px;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.input-group button:hover {
  background: #e74c3c;
}

.newsletter-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}


/* Newsletter subscription styling*/

/* Newsletter Form */
.embeddable-buttondown-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Label */
.embeddable-buttondown-form label {
  color: #cfe8f5; /* soft frost blue */
  font-size: 0.9rem;
}

/* Email Input */
.embeddable-buttondown-form input[type="email"] {
  padding: 10px 14px;
  width: 260px;
  border: 2px solid #8fb3c9; /* your light blue */
  border-radius: 4px;
  background: #0d1a20; /* your dark arctic base */
  color: #e0f4ff;
  transition: 0.3s ease;
}

.embeddable-buttondown-form input[type="email"]:focus {
  outline: none;
  border-color: #cfe8f5;
}

/* Subscribe Button */
.embeddable-buttondown-form input[type="submit"] {
  padding: 10px 20px;
  background: #5a4632; /* military brown */
  border: 2px solid #5a4632;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.embeddable-buttondown-form input[type="submit"]:hover {
  background: #8fb3c9; /* icy hover */
  border-color: #8fb3c9;
  color: #0d0d0d;
}

/* Hide Buttondown branding (optional) */
.embeddable-buttondown-form p {
  display: none;
}



/* Books Showcase */
.books {
  padding: 50px;
  background: #1c1c1c;
}
.books h2 { 
  color: #ffeb3b; 
  margin-bottom: 25px; 
  text-transform: uppercase; 
}
.book-grid {
  display: flex;
  gap: 25px;
}
.book-card {
  flex: 1;
  background: #212121;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #2e7d32;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.8);
}
.book-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}
.book-card h3 {
  color: #e53935;
  margin-bottom: 10px;
}
.book-card p {
  font-size: 0.95rem;
  color: #bdbdbd;
  margin-bottom: 12px;
}

.expect {
  padding: 60px;
  background: #121212;
  color: #f5f5f5;
  text-align: center;
  border-left: 5px solid #2e7d32;
}

.expect h2 {
  margin-bottom: 30px;
  color: #ffeb3b;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.expect-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.expect-card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #2e7d32;
  width: 30%;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  margin-bottom: 25px;
}

/* Reviews Section*/

.reviews {
  padding: 60px;
  background: #1c1c1c;
  color: #f5f5f5;
  text-align: center;
}

.reviews h2 {
  margin-bottom: 30px;
  color: #ffeb3b;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.review-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.review-card {
  background: #212121;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #531414;
  width: 30%;
  font-style: italic;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.review-card span {
  display: block;
  margin-top: 10px;
  color: #81c784;
  font-size: 0.9rem;
}


/* Contact Section */
.contact {
  text-align: center;
  padding: 50px;
  background: #193e1d;
  color: white;
  border-top: 6px solid #531414;
}
.contact h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact button {
  background: #2e7d32; 
  border: 2px solid #c9a44a; 
  padding: 12px 30px;
  border-radius: 5px;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact button:hover {
  background: #256628;
  transform: scale(1.05);
  border-color: #b08d3d;
}


.arctic {
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 2px,
      rgba(0,0,0,0) 3px,
      rgba(0,0,0,0) 6px
    ),
    radial-gradient(circle at 20% 30%, rgba(200,230,255,0.12), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 70%),
    #0d1a20;
  background-blend-mode: overlay;
}

.arctic-camo {
  background:
    /* Large soft blotches */
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 40%, rgba(180,210,230,0.18) 0%, transparent 65%),
    radial-gradient(circle at 50% 80%, rgba(200,230,255,0.12) 0%, transparent 70%),

    /* Medium camo shapes */
    radial-gradient(circle at 30% 60%, rgba(220,240,255,0.12) 0%, transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.10) 0%, transparent 60%),

    /* Fine frost texture */
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 2px,
      rgba(0,0,0,0) 3px,
      rgba(0,0,0,0) 6px
    ),

    /* Base Arctic tone */
    #0f1a20;

  background-blend-mode: overlay;
}
