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

/* Base */
body {
  background: #050505;
  color: #ddd;
  font-family: "Georgia", cursive;
  letter-spacing: 1px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
  border-bottom: 2px solid #666;
}

.logo {
    width: 150px;
    height: 50px;
    background-image: url('https://acharniaeofficial.neocities.org/AchNeoCitLogo2.png');
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center; 
}

nav a {
  color: #a8b9e6;
  text-decoration: none;
  margin-left: 25px;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #a8b9e6;
}

/* Hero */
.hero {
  height: 90vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.8), #000),
    url("https://acharniaeofficial.neocities.org/AchNeoCitBackground2.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  color: #a8b9e6;
  text-shadow: 0 0 20px #3157bb;
}

.hero p {
  margin-top: 15px;
  font-size: 1.3rem;
}

/* Sections */
.section {
  padding: 90px 40px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #3157bb;
}

.section.dark {
  background: #000;
  border-top: 1px solid #3157bb;
  border-bottom: 1px solid #3157bb;
}

.section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

/* Bandcamp */
.bandcamp {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.note {
  font-size: 0.9rem;
  color: #777;
}

/* Links */
a {
  color: #a8b9e6;
}

/* Footer */
footer {
  background: #000;
  padding: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  header {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }
}
