/* General Styles */
body {
  font-family: 'Sour Gummy', cursive;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fbe8d3;
  text-align: center;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img.round-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

header h1 {
  font-size: 1.8rem;
  margin: 0;
  color: #2d2d2d;
}

/* Navbar */
nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 80px;
  right: 10px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

nav.active {
  display: flex;
}

nav a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
}

.hamburger {
  display: block;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

/* Desktop Navbar */
@media (min-width: 768px) {
  nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 1rem;
    background: none;
    box-shadow: none;
  }
  .hamburger {
    display: none;
  }
}

/* Section Styling */
.section {
  padding: 2rem;
}

h1 {
  color: blue;
  font-size: 3rem;
}

.box {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Memes Section */
.memes-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem 0;
}

.memes-slider {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.memes-slider img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.memes-slider img:hover {
  transform: scale(1.1);
}

/* Slider Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Contact Section */
.contact-icons img {
  width: 80px;
  margin: 0.5rem;
  border-radius: 100%;
}

/* Buy Section */
.contract-box {
  display: inline-block;
  text-align: left;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
}

.copy-btn {
  background: #007bff;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.home-image{
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.about-image{
  width: 100%;
  height: auto;
  border-radius: 100%;
}

.road-image{
  width: 200px;
  height: 200px;
  border-radius: 100%;
}

/* Memes Section */
.memes-slider-container {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0;
}

.memes-slider {
  display: flex;
  gap: 1rem;
  overflow-x: hidden; /* Prevent overflow */
  scroll-behavior: smooth; /* Smooth scrolling */
  width: 100%;
  animation: autoScroll 20s linear infinite; /* Optional CSS animation fallback */
}

.memes-slider img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}





/* Buy Section */
.buy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  background-color: #fbe8d3;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.buy-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.buy-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.buy-container {
  width: 100%;
  text-align: center;
}

.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f7;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#contract-address {
  font-family: monospace;
  font-size: 0.95rem;
  flex: 1;
}

.copy-btn {
  background: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 1rem;
}

.copy-btn:hover {
  background: #0056b3;
}

.buy-btn {
  background: linear-gradient(135deg, #ff7eb3, #ff758f);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.buy-btn:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contract-box {
    flex-direction: column;
    align-items: stretch;
  }

  #contract-address {
    margin-bottom: 1rem;
  }
}