/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #faf3e0;
  color: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  padding: 1rem;
}

/* Background doodle effect */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('image/doodles.png');
  background-size: cover;  
  opacity: 0.50;
 animation: floatBg 20s infinite linear;
  z-index: 0;
}
@keyframes floatBg {
  from { background-position: 0 0; }
  to { background-position: 300px 300px; }
}

/* Card */
.card {
  position: relative;
  background: #faf3e0;
  padding: 3rem 3rem;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.70);
  text-align: left;
  max-width: 900px;
  width: 100%;
  max-height: 500px;
  height: 100%;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo {
  margin: 0;
  padding: 0;
}

.logo img {
  height: 60px;   
  width: auto;
}

/* Heading */

.content{
display: grid;
text-align: center;
padding-top: 15px;
}
.content h1 {
  font-size: 3rem;
   color: #2b2b2b;
  font-weight: bold;
  line-height: 3.2rem;
}
.content h1 span{
    color: #be4c1c;
      text-shadow: 3px 3px 2px rgba(0,0,0,0.2);
}

/* Amazon button */
/* Center the logo container */
.buttons {
  display: grid;
  justify-content: center;
  align-items: center;
  margin: 2rem 0; /* space around */
}
.buttons h6{
  font-size: 20px;
  color: #2b2b2b;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/* amazon Button */
.amazon-btn {
  background-color: #faf3e0;
  border-radius: 10px;
  padding: 5px 24px 3px 24px;
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
   margin-right: 5px;
}

.amazon-btn img {
  height: 37px;   /* adjust size */
  width: auto;
  transition: opacity 0.4s ease;
}

/* Image swap on hover */
.amazon-btn img {
  content: url("image/amazon.png");
}
.amazon-btn:hover{
    background-color: #2b2b2b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.amazon-btn:hover img {
  content: url("image/amazon-white.png");
}

/* Button hover effect */
.amazon-btn:hover {
  transform: scale(1.1) rotate(2deg);
}
/* instagram Button */
.instagram-btn {
  background-color: #faf3e0;
  border-radius: 10px;
  padding: 8.5px 2px 3px 2px;
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
   margin-left: 5px;
}

.instagram-btn img {
  height: 32.5px;   /* adjust size */
  width: auto;
  transition: opacity 0.4s ease;
}


/* Image swap on hover */
.instagram-btn img {
  content: url("image/instagram.png");
}
.instagram-btn:hover{
    background-color: #2b2b2b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.instagram-btn:hover img {
  content: url("image/instagram-white.png");
}

/* Button hover effect */
.instagram-btn:hover {
  transform: scale(1.1) rotate(2deg);
}



/* Social icons */
.social {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.social a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social a:hover {
  transform: scale(1.2) rotate(5deg);
  color: #be4c1c;
}

/* ---------------- RESPONSIVE ---------------- */

/* Laptop / Medium screens */
@media (max-width: 1024px) {
  .card {
    padding: 2rem 2rem;
    max-width: 750px;
    width: 100%;
    max-height: 400px;
    height: 100%;
  }
  .logo img {
  height: 55px;   
  width: auto;
}
.content{
padding-top: 10px;
}
.content h1 {
  font-size: 2.5rem;
  line-height: 2.7rem;
}
.buttons {
  margin: 1.3rem 0; 
}
/* amazon Button */
.amazon-btn {
  border-radius: 10px;
  padding: 4px 23px 2px 23px;
   box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
   margin-right: 5px;
}

.amazon-btn img {
  height: 34px;
}

/* Image swap on hover */

.amazon-btn:hover{
    background-color: #2b2b2b;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.35);
}


/* instagram Button */
.instagram-btn {
  border-radius: 10px;
  padding: 7.5px 1px 2px 1px;
   box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
   margin-left: 5px;
}

.instagram-btn img {
  height: 30.5px;   /* adjust size */
}


/* Image swap on hover */

.instagram-btn:hover{
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.35);
}
/* Social icons */
.social {
  margin-top: 30px;
}

}

/* Tablets */
@media (max-width: 1000px) {
  .card {
    padding: 2.2rem 2.2rem;
    max-width: 700px;
    width: 100%;
    max-height: 1000px;
    height: 100%;
  }
  .logo img {
  height: 80px;   
  width: auto;
}
.content{
padding-top: 90px;
}
.content h1 {
  letter-spacing: .1px;
  font-size: 3.3rem;
  line-height: 5rem;
}
.buttons {
  margin: 6rem 0; 
}
.buttons h6{
  font-size: 40px;
  margin-bottom: 40px;
  
}
/* amazon Button */
.amazon-btn {
  border-radius: 10px;
  padding: 5px 24px 3px 24px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
   margin-right: 5px;
}

.amazon-btn img {
  height: 37px;  
}

/* Image swap on hover */
.amazon-btn:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
/* instagram Button */
.instagram-btn {
  border-radius: 10px;
  padding: 8.5px 2px 3px 2px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
   margin-left: 5px;
}

.instagram-btn img {
  height: 32.5px;   
}


/* Image swap on hover */
.instagram-btn:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}



/* Social icons */
.social {
  margin-top: 40px;
}
.social a {
  font-size: 2rem;
}
}

@media (max-width: 768px) {

    .card {
    padding: 1.5rem 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 900px;
    height: 100%;
  }
  .content{
padding-top: 80px;
}
.content h1 {
  letter-spacing: .1px;
  font-size: 2.9rem;
  line-height: 5rem;
}
/* Social icons */
.social {
  margin-top: 40px;
}
.social a {
  font-size: 1.8rem;
}
}

/* Mobile */
@media (max-width: 480px) {

    .card {
    padding: 1rem 1rem;
    max-width: 340px;
    width: 100%;
    max-height: 450px;
    height: 100%;
      border-radius: 15px;

  }
  .logo img {
  height: 50px;   
  width: auto;
}
  .content{
padding-top: 30px;
}
.content h1 {
  font-size: 2rem;
  line-height: 2.6rem;
}
.content h1 span{
  font-size: 2.5rem;
  line-height: 3rem;
}
.buttons {
  margin: 2.8rem 0; 
}
.buttons h6{
  font-size: 20px;
  margin-bottom: 10px;
  
}
/* amazon Button */
.amazon-btn {
  border-radius: 10px;
  padding: 5px 24px 3px 24px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.amazon-btn img {
  height: 37px;  
}

/* Image swap on hover */
.amazon-btn:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
/* instagram Button */
.instagram-btn {
  border-radius: 10px;
  padding: 8.5px 2px 3px 2px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.instagram-btn img {
  height: 32.5px;   
}


/* Image swap on hover */
.instagram-btn:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Social icons */
.social {
  margin-top: 0px;
}
.social a {
  font-size: 1.5rem;
}
}

