/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.logo img {
    height: auto; /* Adjust size as needed */
    max-width: 100px;
}


nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #bf52d2;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-align: left;
    padding: 5% 5px;
    background-color: rgb(238, 236, 230);
    box-shadow: #7b5ba0;
    border-radius: 30px;
}

nav ul li a:hover {
    color: #8f4aff; /* Purple color */
}

.mobile-menu {
    display: none;
}

.menu-toggle {
    display: block;
    cursor: pointer;
}

.menu-icon {
    font-size: 20px;
    cursor: pointer;
}

.menu-toggle input {
    display: none;
}

.menu-toggle input:checked ~ .mobile-nav {
    display: block;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #000;
    padding: 10px;
    border-radius: 5px;
}

.mobile-nav ul li {
    margin-bottom: 10px;
}

.mobile-nav ul li a {
    color: #fff;
}

/* Hero Section Styles */
.hero {
    background: url('photo/photo_2024-07-10\ 09.55.28.jpeg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    display: inline-block;
    padding: 10px 10px;
    background-color: #8f4aff; /* Purple color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #6cbf6c; /* Green color */
}

/* About Section Styles */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Tokenomics Section Styles */
.tokenomics {
    background-color: #520a6880;
    padding: 80px 0;
    text-align: center;
}

.tokenomics h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}

.tokenomics-item {
    background-color: #222;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-10px);
}

.tokenomics-item i {
    font-size: 36px;
    color: #8f4aff; /* Purple color */
    margin-bottom: 20px;
}

.tokenomics-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.tokenomics-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}
.text-box img {
    display: block;
    margin: 0 auto;
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .text-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
  }
  .text-box h5 {
    text-align: justify;
  }
  .text-box {
    font-family: Arial, sans-serif;
    background-color: #000000;
    align-items: center;
    margin-left: 0;
    width: 100%;
    height: auto;
    padding: 40px;
  }
  .text-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }

/* Footer Styles */
footer {
    background-color: #111;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #8f4aff; /* Purple color */
}

.social-links .social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    color: #8f4aff; /* Purple color */
}
