/* Reset defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure full width */
html, body {
    width: 100%;
    height: 100%;
    background-color: white;
    font-family: Arial, sans-serif;
}

/* Container for background image */
.image-container {
    position: relative;
    width: 100%;
}

/* Desktop / Mobile Images */
.desktop-image {
    display: block;
    width: 100%;
    height: auto;
}

.mobile-image {
    display: none;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .desktop-image { display: none; }
    .mobile-image { display: block; }
}

/* Buy Button (image as button) */
.buy-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  display: inline-block;
}

.buy-button img {
  width: 80vw;              /* larger default size */
  max-width: 900px;         /* limit for very wide screens */
  min-width: 250px;         /* don’t shrink too much */
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.buy-button img:hover {
  transform: scale(1.1);
}

/* Medium screen adjustment */
@media screen and (max-width: 1200px) {
  .buy-button img {
    width: 75vw;
    max-width: 700px;
  }
}

/* Smaller desktops */
@media screen and (max-width: 1024px) {
  .buy-button img {
    width: 80vw;
    max-width: 600px;
  }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .buy-button {
        top: 53%;               /* moved 5% up from previous 50% */
    }

    .buy-button img {
        width: 200vw;            /* bigger scaling for mobile */
        max-width: 300px;
    }
}

/* Disclaimer section */
.disclaimer {
    text-align: center;
    color: #fff;  /* white text for readability */
    font-size: 0.9em;
    margin-top: 50px;
    padding: 10px;
    background-color: #fff; /* white background */
    color: black;           /* black text */
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .disclaimer {
        font-size: 0.8em;
    }
}

/* Social Media Icons */
.social-icons {
  position: absolute;
  top: 50px;           /* slightly lower for large screens */
  right: 60px;         /* moved left from edge */
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1000;
}

.social-icons img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Large desktop to smaller desktop */
@media screen and (max-width: 1400px) {
  .social-icons {
    top: 46px;       /* slightly lower */
    right: 55px;     /* move slightly left */
  }

  .social-icons img {
    width: 32px;
    height: 32px;
  }
}

/* Medium screens (laptops, tablets) */
@media screen and (max-width: 1200px) {
  .social-icons {
    top: 36px;       /* normal top */
    right: 45px;     /* more left */
  }

  .social-icons img {
    width: 28px;
    height: 28px;
  }
}

/* Smaller desktops */
@media screen and (max-width: 1024px) {
  .social-icons {
    top: 32px;
    right: 35px;     /* move left but keep proportional */
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }
}

/* Social Media Icons - Mobile Adjustments */
@media screen and (max-width: 768px) {
    .social-icons {
        top: 25px;      /* move down on mobile */
        right: 30px;    /* move left by decreasing distance from right edge */
        gap: 10px;       /* space between icons */
    }

    .social-icons img {
        width: 28px;        /* smaller icons for mobile */
        height: 28px;
    }
}















































