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


body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  /* font-family: 'Poppins', sans-serif; */
  background-color: #0d0703;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  height: 100vh;
}

.left-panel {
  width: 30%;
  background-color: #0d0703;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
button#copy-btn  {
    background:transparent;
    border:none;
  }

button#copy-btn img {
    width: 24px;
    height: 24px;
  }

  /* PC/Screen view */
@media (min-width: 769px) {
  .right-panel {
    width: 70%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }

  #hamburger-menu{
    display:none;
  }

  .img-frame {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
  }

  .carousel img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    scroll-snap-align: start;
    transition: transform 0.6s ease; /* smooth zoom */
  }
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .socials-icons img{
    height: 25px;
    width:25px;
  }
  
  .socials-icons p{
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .img-frame {
    width: 100%;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
  }

  .carousel img {
    width: 100%;
    object-fit: contain;
    scroll-snap-align: start;
    transition: transform 0.6s ease; /* smooth zoom */
  }

  .container {
    flex-direction: column;
  }
  .left-panel {
    display:none;
  }

  .right-panel {
    width: 100%;
    height: auto;
    order: 2;
    max-height: 100vh;
    overflow-y: scroll;
  }

  .left-panel nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .address {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.2rem;
  }



  .logo {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .left-panel nav a {
    font-size: 0.9rem;
  }

  .right-panel {
    width: 100%;
    height: auto;
    order: 2;
    height: 100vh;
    overflow-y: scroll;
  }
  .address p {
    font-size: 0.8rem;
    word-break: break-all;
  }
}

nav {
    align-items: center;
    gap: 10px;
    width: 60%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    letter-spacing: 1px;
}

nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

nav a:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(90deg, rgb(159 81 12) 0%, rgb(133 72 4) 100%);
  color: #ffffff;
}

nav a:hover::after {
  width: 100%;
}

.display-none{
  display:none;
}
.logo {
  font-family: 'Barriecito', cursive;
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
  padding-top:5px;
}

#left-panel-img {
  height:200px;
}
#left-panel-img-burger {
    height: 100px;
    width: auto;
}
.contract-box {
  text-align: center;
  margin-bottom: 20px;
}

.contract-box p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.7;
}

p#contract-text{
  font-size:9px;
}

.address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 16px;
  background-color: rgba(255,255,255,0.05);
  padding: 8px 12px;
  border-radius: 8px;
}
.hidden{
  visibility: hidden;
}

.buy-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 32px;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background-color: #fff;
  color: #0d0703;
  box-shadow: 8px 8px 8px 8px rgba(0.6, 0.6, 0.6, 0.6);
}



.carousel {
  display: flex;
  flex-direction: column;
}



.carousel img:hover {
  transform: scale(1.1); /* 10% zoom effect */
}



/* Add gradient overlay */
.img-frame::before,
.img-frame::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 25%; /* adjust gradient height */
  pointer-events: none;
  z-index: 2;
}

/* Top gradient */
.img-frame::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
}

/* Bottom gradient */
.img-frame::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

button {
  font-family: 'Montserrat', sans-serif;
}

/* Copy button icon color adjustment */
#copy-btn img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(90%) contrast(90%);
}

#copy-btn-burger {
  border: none;
  background: transparent;
  filter: invert(100%);
}

/* hamburger menu for mobile */

#menuToggle
{
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 50px;
  left: 50px;
  
  z-index: 5;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 100vw;
  height: 100vh;
  margin: -77px 0 0 -50px;
  padding: 50px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #0d0703;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li a
{
  color: white;
}

#menu li label
{
  cursor: pointer;
}

#menu li a img{
  filter: invert(100%);
}
/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}