@charset "UTF-8";
.pcolor {
  color: #4682b4;
}

.pdark {
  color: #1a365d;
}

#author-image {
  background-image: url(../images/author.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

#newsletter-containerwrap {
  background-image: url(../images/bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

#home {
  background-image: url(../images/landing.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#author {
  background-color: #cfe8ff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  color: black;
}

#comparison {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/bg3.png);
  background-color: #cfe8ff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

#newsletter {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/bg3.png);
  background-color: #cfe8ff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
}

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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem 0;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4682b4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #4682b4;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
#kene {
  background-image: url(../images/chars/kene.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#jamie {
  background-image: url(../images/chars/jamie.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#noah {
  background-image: url(../images/chars/noah.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#tre {
  background-image: url(../images/chars/tre.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 1rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  background: linear-gradient(45deg, #4682b4, #9cc5e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #000;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #4682b4, #9cc5e8);
  color: #000;
  box-shadow: 0 8px 25px #2c5f87;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #4682b4;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

/* Launch Banner */
.launch-banner {
  background: linear-gradient(135deg, #4682b4, #9cc5e8);
  color: #000;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.launch-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Main Content Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
}

.section-light {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  color: #2c2c2c;
}

.section h2 {
  color: #4682b4;
}

.section h3 {
  margin-bottom: 1.5rem;
  color: #4682b4;
}

/* Book Preview */
.book-preview {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.book-cover {
  text-align: center;
}

.book-cover-placeholder {
  width: 300px;
  height: 450px;
  background: linear-gradient(135deg, #4682b4, #9cc5e8, #2c5f87);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin: 0 auto;
  box-shadow: 0 20px 40px #2c5f87;
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.3s ease;
  background-image: url(../images/book-cover.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.book-cover-placeholder:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.book-details h3 {
  margin-bottom: 1rem;
}

.book-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid #2c5f87;
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Interactive Elements */
.interactive-section {
  margin: 4rem 0;
}

.tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 2px solid #4682b4;
}

.tab {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab.active {
  color: #4682b4;
  border-bottom-color: #4682b4;
}

.tab-content {
  display: none;
  padding: 2rem 0;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Character Map */
.character-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.character-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #2c5f87;
  transition: all 0.3s ease;
}

.character-card:hover {
  border-color: #4682b4;
  transform: scale(1.05);
}

.character-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #4682b4, #9cc5e8);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

/* Location Gallery */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.location-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: scale(1.03);
}

.location-image {
  height: 200px;
  background: linear-gradient(45deg, #4682b4, #2c5f87);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
}

.location-info {
  padding: 1.5rem;
}

/* Newsletter Signup */
.newsletter {
  background: linear-gradient(135deg, #4682b4, #9cc5e8);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  color: #000;
  margin: 3rem 0;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #2c2c2c;
  transform: scale(1.05);
}

/* Social Sharing */
.social-sharing {
  text-align: center;
  margin: 3rem 0;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #4682b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #9cc5e8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .book-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .book-cover-placeholder {
    width: 250px;
    height: 375px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .tabs {
    flex-wrap: wrap;
  }
  .newsletter-form {
    flex-direction: column;
  }
}
/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #4682b4;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.f2h2 {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-align: center;
  background: linear-gradient(135deg, #1a365d 0%, #2c5f87 20%, #4682b4 40%, #5a9bd4 60%, #7bb3e0 80%, #9cc5e8 100%);
  -webkit-background-clip: text;
}

.fh2 {
  font-size: 2.5em;
  font-weight: 700;
  background: linear-gradient(135deg, #1a365d 0%, #2c5f87 20%, #4682b4 40%, #5a9bd4 60%, #7bb3e0 80%, #9cc5e8 100%);
}

p {
  margin: 0;
}

.fh3 {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #0e1218 0%, #2c5f87 20%, #4682b4 40%, #5a9bd4 60%, #7bb3e0 80%, #9cc5e8 100%);
  -webkit-background-clip: text;
}

.fh2b {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #0e1218 0%, #2c5f87 20%, #4682b4 40%, #5a9bd4 60%, #7bb3e0 80%, #9cc5e8 100%);
  -webkit-background-clip: text;
}

.main-title {
  font-family: "Oswald", sans-serif;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-align: center;
  -webkit-text-stroke: 1px #fff;
  background: linear-gradient(135deg, #1a365d 0%, #2c5f87 20%, #4682b4 40%, #5a9bd4 60%, #7bb3e0 80%, #9cc5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-title2 {
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-align: center;
  -webkit-text-stroke: 1px #fff;
  background: linear-gradient(135deg, #1a365d 0%, #2c5f87 20%, #4682b4 40%, #5a9bd4 60%, #7bb3e0 80%, #9cc5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: center;
  color: #1a365d;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #1a365d;
  padding-top: 30px;
  margin-top: 50px;
  border-bottom: 5px solid #1a365d;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

#backgrop {
  background-image: url(../images/bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}

.form-header {
  background: linear-gradient(135deg, #4682b4, #9cc5e8);
  padding: 2rem;
  text-align: center;
  color: #000;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.form-content {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #4682b4;
  box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.order-summary {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 2px solid #4682b4;
}

.order-summary h3 {
  color: #4682b4;
  margin-bottom: 1rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.price-line.total {
  border-top: 2px solid #4682b4;
  padding-top: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.original-price {
  text-decoration: line-through;
  color: #666;
}

.savings {
  color: #28a745;
  font-weight: bold;
}

.bonuses {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid #4682b4;
}

.bonuses h4 {
  color: #4682b4;
  margin-bottom: 0.5rem;
}

.bonuses ul {
  list-style: none;
  padding: 0;
}

.bonuses li {
  margin-bottom: 0.3rem;
}

.bonuses li:before {
  content: "✅ ";
  margin-right: 0.5rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type=checkbox] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.bcover {
  display: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 130, 180, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.security-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.countdown {
  background: linear-gradient(135deg, #9cc5e8, #2c5f87);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
}

.countdown h4 {
  margin-bottom: 0.5rem;
}

.countdown-timer {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Courier New", monospace;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-content {
    padding: 1.5rem;
  }
}
@media (min-width: 769px) {
  .main-title {
    font-size: 7em;
    align-items: center;
    justify-content: center;
  }
	.sec {
  width: 700px;
  margin: 0 auto;
}
  .bcover {
    display: block;
    width: 450px;
    position: absolute;
    top: -100px;
    right: -50px;
  }
  .social-sharing-container {
    position: relative;
    width: 100%;
    height: 200px;
  }
  .social-sharing {
    position: absolute;
    top: 0;
    left: -100px;
    width: 100%;
    height: 100%;
    z-index: 1000;
  }
}/*# sourceMappingURL=styles.css.map */