/* General Styles */
body {
    margin: 0;
    font-family: 'Sour Gummy', sans-serif;
    background-color: #000;
    color: #fff;
}

h1 {
    color: grey;
    text-shadow: 0 0 10px grey;
    text-align: center;
    margin-bottom: 20px;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: blue;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo img {
    border-radius: 50%;
    width: 50px;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hamburger {
    display: none;
}

/* Home Section */
header {
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .top-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 100%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
header p{
  text-align: center;
}
/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.about-img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.about-text p {
    margin: 10px 0;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Roadmap Section */
.roadmap-phase {
    margin: 10px;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Buy Section */
.buy-content {
    text-align: center;
    padding: 20px;
}

.contract-box {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #222;
    word-wrap: break-word;
    max-width: 600px;
    margin: auto;
}

.copy-btn,
.buy-btn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.copy-btn {
    background-color: green;
}

.buy-btn {
    background-color: red;
}

/* Meme Section */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-images {
    display: flex;
    overflow: hidden;
    gap: 10px;
}

.carousel-images img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: white;
    font-size: 14px;
}



/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: blue;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo img {
  border-radius: 50%;
  width: 50px;
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: lightgray;
}

/* Hamburger Menu - Initially Hidden for Desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: transform 0.3s;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: blue;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}



/* Meme Section */
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.carousel-images {
    display: flex;
    overflow: hidden;
    width: 80%;
    max-width: 600px;
}

.carousel-images img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 1;
    transition: background 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
}

.prev-btn {
    left: 5%;
}

.next-btn {
    right: 5%;
}

/* Contact Section */
.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.contact-icons img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    transition: transform 0.3s ease-in-out;
}

.contact-icons img:hover {
    transform: scale(1.2);
}