/* General Styles */
@font-face {
  font-family: 'AptosPenguins';
  src: url('aptos-penguins.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'AptosPenguins', 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #222;
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background-color: #181B2C; /* Adjust as needed */
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.navbar .logo img {
  height: 50px; /* Adjust logo height as needed */
  display: block;
}

.navbar .menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px; /* Spacing between menu items */
}

.navbar .menu ul li a {
  text-decoration: none;
  color: #FFFFFF; /* Adjust color */
  font-weight: 600;
}

.navbar .menu ul li a:hover {
  color: #F8AF3C; /* Hover effect */
}


/* Hero Section */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 2rem;
}

.hero .cta-button {
  display: inline-block;
  background: #F8AF3C;
  color: #FFFDF4;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero .cta-button:hover {
  background: #DD9B37;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: #f9f9f9;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.125rem;
}

/* Collection Section */
.collection {
  padding: 4rem 0;
}

.collection h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.collection .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.collection .card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
}

.collection .card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.collection .card p {
  font-weight: 600;
}

/* Roadmap Section */
.roadmap {
  padding: 4rem 0;
  background: #f0f8ff;
}

.roadmap h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.roadmap ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.roadmap ul li {
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  padding: 4rem 0;
  text-align: center;
}

.team h2 {
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: #f9f9f9;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #181B2C;
  padding: 1rem;
  text-align: center; /* Ensures text alignment is centered */
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; /* Flexbox ensures proper alignment */
  flex-direction: column; /* Places items (text and icons) in a column */
  align-items: center; /* Centers content horizontally */
}

.footer-links {
  background: #FFFFFF;
  margin-top: 1rem;
  display: flex;
  justify-content: center; /* Centers the icons */
  gap: 1rem; /* Adjust spacing between icons */
}

.footer-links img {
  border-radius: 5px; /* Optional: makes icons slightly rounded */
  transition: transform 0.2s;
}

.footer-links img:hover {
  transform: scale(1.1); /* Optional: adds a hover effect */
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
}
