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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#fffdf6;
  color:#12345a;
  overflow-x:hidden;
}

.topbar{
  height:90px;
  padding:0 45px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:#fffaf0;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.mini-spuddy{
  width:54px;
  height:54px;
  object-fit:contain;
}

.mini-logo{
  width:170px;
}

nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex:1;
}

nav a{
  color:#12345a;
  text-decoration:none;
  font-weight:bold;
  font-size:16px;
  white-space:nowrap;
}

nav a:hover{
  color:#7c55d9;
}

.header-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-shrink:0;
}

.language-switcher{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.language-switcher button{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#7b57d9;
  color:white;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.language-switcher button:hover{
  transform:translateY(-3px);
  background:#5A8CFF;
}

.follow-btn{
  min-width:160px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #8b62df;
  border-radius:28px;
  padding:0 22px;
  color:#7c55d9;
  text-decoration:none;
  font-weight:bold;
  background:white;
  white-space:nowrap;
}

.hero{
  min-height:760px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:70px 90px 100px;
  background:
    radial-gradient(circle at 12% 25%, rgba(130,226,240,.45), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(255,163,215,.38), transparent 35%),
    radial-gradient(circle at 55% 60%, rgba(255,236,167,.28), transparent 32%),
    linear-gradient(135deg,#e4fbff,#f5efff,#fff2df);
  position:relative;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  bottom:-80px;
  left:-5%;
  width:110%;
  height:150px;
  background:#fffdf6;
  border-radius:50% 50% 0 0;
  z-index:2;
}

.floating-elements{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}

.shape{
  position:absolute;
  font-weight:bold;
  opacity:.8;
  animation:floatShape 7s ease-in-out infinite;
}

.heart{
  font-size:52px;
  color:#ff66a8;
  text-shadow:0 4px 10px rgba(255,102,168,.25);
}

.star{
  font-size:58px;
  color:#8b62df;
  text-shadow:0 4px 10px rgba(139,98,223,.22);
}

.h1{ top:18%; left:39%; animation-delay:0s; }
.h2{ top:52%; left:89%; animation-delay:1.5s; font-size:38px; }
.h3{ top:70%; left:8%; animation-delay:2.8s; font-size:34px; }

.s1{ top:16%; right:9%; animation-delay:.5s; color:#68d7e7; }
.s2{ top:58%; left:45%; animation-delay:1.2s; color:#68d7e7; font-size:42px; }
.s3{ top:63%; right:15%; animation-delay:2.2s; color:#ffb55f; font-size:46px; }
.s4{ top:30%; left:6%; animation-delay:3s; color:#315bb8; font-size:44px; }

.cloud{
  position:absolute;
  width:130px;
  height:48px;
  background:rgba(255,255,255,.85);
  border-radius:60px;
  filter:drop-shadow(0 10px 15px rgba(0,0,0,.08));
  animation:cloudMove 16s ease-in-out infinite;
}

.cloud::before,
.cloud::after{
  content:"";
  position:absolute;
  background:rgba(255,255,255,.9);
  border-radius:50%;
}

.cloud::before{
  width:62px;
  height:62px;
  left:22px;
  top:-30px;
}

.cloud::after{
  width:78px;
  height:78px;
  right:16px;
  top:-42px;
}

.cloud1{
  top:85px;
  left:45px;
  transform:scale(.85);
  animation-delay:0s;
}

.cloud2{
  top:130px;
  right:55px;
  transform:scale(.9);
  animation-delay:3s;
}

.cloud3{
  bottom:175px;
  left:48%;
  transform:scale(.75);
  animation-delay:5s;
}

@keyframes floatShape{
  0%{ transform:translateY(0) rotate(0deg) scale(1); }
  50%{ transform:translateY(-18px) rotate(8deg) scale(1.08); }
  100%{ transform:translateY(0) rotate(0deg) scale(1); }
}

@keyframes cloudMove{
  0%{ transform:translateX(0) translateY(0) scale(var(--scale,1)); }
  50%{ transform:translateX(28px) translateY(-12px) scale(var(--scale,1)); }
  100%{ transform:translateX(0) translateY(0) scale(var(--scale,1)); }
}

.hero-text{
  width:45%;
  position:relative;
  z-index:3;
  text-align:center;
  padding-right:30px;
}

.main-logo{
  width:1020px;
  max-width:100%;
  margin-bottom:25px;
}

.hero-text h2{
  font-size:42px;
  color:#7b57d9;
  line-height:1.15;
  margin-bottom:28px;
}

.hero-text p{
  font-size:21px;
  line-height:1.6;
  max-width:520px;
  margin:0 auto 35px;
}

.main-btn{
  display:inline-block;
  padding:17px 42px;
  border-radius:40px;
  background:#7b57d9;
  color:white;
  text-decoration:none;
  font-size:22px;
  font-weight:bold;
  box-shadow:0 15px 30px rgba(70,50,120,.25);
  transition:.3s;
}

.main-btn:hover{
  transform:translateY(-5px);
}

.hero-image{
  width:55%;
  position:relative;
  z-index:3;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:visible;
}

.big-spuddy{
  width:760px;
  max-width:none;
  filter:drop-shadow(0 30px 35px rgba(0,0,0,.18));
  animation:spuddyFloat 7s ease-in-out infinite;
}

@keyframes spuddyFloat{
  0%{
    transform:scale(1.25) translateX(0) translateY(0) rotate(-1deg);
  }
  50%{
    transform:scale(1.25) translateX(0) translateY(-12px) rotate(1deg);
  }
  100%{
    transform:scale(1.25) translateX(0) translateY(0) rotate(-1deg);
  }
}

.books-section{
  padding:110px 90px 70px;
  text-align:center;
  background:#fffdf6;
}

.section-title{
  font-size:54px;
  color:#315bb8;
  margin-bottom:45px;
}

.books-grid{
  max-width:1650px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5, auto);
  justify-content:center;
  gap:18px;
}

.books-grid img{
  width:290px;
  height:auto;
  display:block;
  background:none;
  border:none;
  box-shadow:none;
  transition:.35s ease;
}

.books-grid img:hover{
  transform:translateY(-8px) scale(1.08);
  filter:drop-shadow(0 18px 25px rgba(0,0,0,.25));
}

.amazon-btn{
  display:inline-block;
  margin-top:48px;
  padding:18px 55px;
  border-radius:40px;
  background:#7b57d9;
  color:white;
  font-size:23px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 12px 25px rgba(70,50,120,.22);
}

.features{
  max-width:1120px;
  margin:60px auto;
  padding:42px;
  border-radius:28px;
  background:#fffaf0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature{
  text-align:center;
  padding:15px;
  border-right:1px solid rgba(0,0,0,.12);
}

.feature:last-child{
  border-right:none;
}

.icon{
  font-size:45px;
  margin-bottom:15px;
}

.feature h3{
  font-size:20px;
  margin-bottom:12px;
  color:#0f3566;
}

.feature p{
  font-size:15px;
  line-height:1.5;
}

.about{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:70px;
  padding:80px 90px;
  background:linear-gradient(135deg,#d9fbff,#e8fff1);
}

.about div{
  max-width:520px;
}

.about h2{
  font-size:44px;
  color:#315bb8;
  margin-bottom:25px;
}

.about p{
  font-size:20px;
  line-height:1.6;
  margin-bottom:18px;
}

.about img{
  width:300px;
  filter:drop-shadow(0 18px 25px rgba(0,0,0,.15));
}

.contact-section{
  padding:90px 25px;
  text-align:center;
  background:
    radial-gradient(circle at top left,#dff8ff,transparent 35%),
    radial-gradient(circle at bottom right,#ffe3f3,transparent 35%),
    #fffdf6;
}

.contact-section h2{
  font-size:48px;
  color:#315bb8;
  margin-bottom:18px;
}

.contact-section p{
  font-size:20px;
  margin-bottom:35px;
}

.contact-form{
  max-width:620px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:18px 24px;
  border:2px solid #e7dbff;
  border-radius:28px;
  font-size:17px;
  font-family:Arial, Helvetica, sans-serif;
  color:#12345a;
  outline:none;
  background:white;
}

.contact-form textarea{
  resize:none;
  border-radius:30px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#8b62df;
  box-shadow:0 8px 22px rgba(139,98,223,.15);
}

.contact-form button{
  align-self:center;
  padding:17px 48px;
  border:none;
  border-radius:40px;
  background:#7b57d9;
  color:white;
  font-size:20px;
  font-weight:bold;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(70,50,120,.22);
  transition:.3s;
}

.contact-form button:hover{
  transform:translateY(-5px);
  background:#5A8CFF;
}

footer{
  display:flex;
  justify-content:space-around;
  align-items:center;
  gap:50px;
  padding:55px 80px 35px;
  background:linear-gradient(135deg,#c9fbf3,#e7dbff);
}

.footer-spuddy img{
  width:180px;
}

footer h3{
  font-size:26px;
  margin-bottom:14px;
}

footer p{
  font-size:16px;
  line-height:1.5;
}

.email-box{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.email-box input{
  padding:15px 22px;
  border:none;
  border-radius:30px;
  min-width:250px;
}

.email-box button{
  padding:15px 28px;
  border:none;
  border-radius:30px;
  background:#7b57d9;
  color:white;
  font-weight:bold;
}

.social{
  text-align:center;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:18px;
  margin:20px 0;
}

.social-icons a{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  text-decoration:none;
  transition:.35s;
  color:white;
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.mail{
  background:#7ED6F5;
}

.instagram{
  background:linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.facebook{
  background:#5A8CFF;
}

.social-icons a:hover{
  transform:translateY(-8px) rotate(8deg) scale(1.12);
  box-shadow:0 20px 30px rgba(0,0,0,.22);
}

@media(max-width:1200px){
  .topbar{
    padding:0 25px;
    gap:20px;
  }

  nav{
    gap:22px;
  }

  nav a{
    font-size:15px;
  }

  .mini-logo{
    width:145px;
  }

  .follow-btn{
    min-width:145px;
    padding:0 18px;
  }

  .big-spuddy{
    width:650px;
  }

  @keyframes spuddyFloat{
    0%{
      transform:scale(1.18) translateX(0) translateY(0) rotate(-1deg);
    }
    50%{
      transform:scale(1.18) translateX(0) translateY(-10px) rotate(1deg);
    }
    100%{
      transform:scale(1.18) translateX(0) translateY(0) rotate(-1deg);
    }
  }
}

@media(max-width:950px){
  .topbar{
    height:auto;
    padding:20px;
    flex-direction:column;
    gap:18px;
  }

  .brand{
    justify-content:center;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    flex:none;
  }

  .header-right{
    justify-content:center;
  }

  .hero{
    flex-direction:column;
    padding:55px 25px 90px;
    text-align:center;
  }

  .hero-text,
  .hero-image{
    width:100%;
    padding-right:0;
  }

  .hero-image{
    justify-content:center;
  }

  .big-spuddy{
    width:430px;
    max-width:100%;
    margin-top:30px;
  }

  @keyframes spuddyFloat{
    0%{
      transform:scale(1) translateY(0) rotate(-1deg);
    }
    50%{
      transform:scale(1) translateY(-10px) rotate(1deg);
    }
    100%{
      transform:scale(1) translateY(0) rotate(-1deg);
    }
  }

  .main-logo{
    width:430px;
  }

  .hero-text h2{
    font-size:34px;
  }

  .books-section{
    padding:55px 25px;
  }

  .books-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .books-grid img{
    width:150px;
  }

  .features{
    margin:35px 25px;
    grid-template-columns:1fr;
  }

  .feature{
    border-right:none;
    border-bottom:1px solid rgba(0,0,0,.12);
  }

  .feature:last-child{
    border-bottom:none;
  }

  .about{
    flex-direction:column;
    padding:60px 30px;
    text-align:center;
  }

  .contact-section h2{
    font-size:36px;
  }

  footer{
    flex-direction:column;
    text-align:center;
    padding:50px 25px;
  }

  .email-box{
    flex-direction:column;
  }
}
.form-status{
    display:none;
    margin-top:20px;
    padding:18px 25px;
    border-radius:25px;
    background:#fdf4fb;
    border:2px solid #f3c6e5;
    color:#8b3d73;
    font-size:18px;
    font-weight:600;
    line-height:1.7;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}