@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between; /* Keeps logo left and menu centered */
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

/* Logo (Through the Cracks) */
.navbar .logo {
  font-size: 1.8rem; /* Bigger */
  font-weight: 700; /* Bolder */
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  flex: 1; /* Pushes the menu towards center */
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  flex: 2; /* Centers the navigation menu */
  justify-content: center; /* Ensures links are centered */
  align-items: center;
  width: 100%; /* Makes sure it takes full width */
  text-align: center;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1.1rem;
  text-align: center;
}

.nav-links a:hover {
  color: #f39c12;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px; /* Increased top padding to push content down */
}

/* Extra space below "Through the Cracks" */
.hero h1 {
  font-size: 4rem; /* Bigger */
  font-weight: 700; /* Bolder */
  text-align: right; /* Moves it to the right */
  margin-bottom: 40px; /* Adds space below */
  margin-right: 50px; /* Moves it slightly away from the right edge */
  padding-right: 20px;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 5px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    background-color: #f39c12;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #d35400;
}

/* Manifesto Section */
.manifesto {
    padding: 100px 20px;
    text-align: center;
    max-width: 800px;
    margin: 100px auto; /* Ensures space above & below */
}
/* Improve text readability */
.manifesto p {
    font-size: 1.2rem;
    line-height: 1.8; /* Ensures proper spacing */
    margin-bottom: 20px; /* Adds spacing between paragraphs */
    text-align: justify; /* Aligns text for a neater look */
    max-width: 750px; /* Keeps text from stretching too wide */
    margin-left: auto;
    margin-right: auto;
}
.manifesto {
  padding: 100px 20px;
  text-align: center;
  max-width: 800px;
  margin: 100px auto; /* Add space before the section */
}

.manifesto p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Subscription Section */
.subscribe {
    text-align: center;
    padding: 60px;
    background: #111;
}

.subscribe h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.subscribe p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: #111;
}
/* General Reset */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.manifesto p {
  font-size: 1.2rem;
  line-height: 1.5; /* Increased from 1.6 to 1.5 */
}
