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

body {
    font-family: Georgia, serif;
    line-height: 1.8;
    background-color: #fff4ff;
    color: #333;
    padding: 2rem;
}

.background {
    background-image: url('./resources/images/globe1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background attachment: fixed;
}	

body.background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(150, 150, 150, 0.35);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

h2 {
	text-align: center;
}

p {
	text-indent: 4ch;
}

article {
    font-size: 1.1rem;
    margin: 2rem 0;
}

footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
}

footer a {
    color: #666;
    text-decoration: none;
}

.download {
	text-align: center;
}
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1.5rem;
  background-color: #442244;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Add an icon if you have one */
.download-btn::before {
  content: "↓";
  font-size: 2.2em;
}

.main-nav {
    background: #5a5a5a;
    padding: 1rem;
    position: sticky;
    top: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* Active page indicator */
.main-nav a.active {
    border-bottom: 2px solid white;
}

/* Container acts as the bar background */
.follow-links-container {
  width: 100%;
  margin: 2rem auto; /* Centers the bar itself on the page */
  padding: 0.75rem 0.5rem;
  background-color: #f8f9fa; /* Light gray background */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center; /* Ensures content inside is centered */
}

/* Reset the list styles */
.follow-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  justify-content: center; /* Centers the items */
  gap: 1rem; /* Space between buttons */
}

/* Style the links */
.follow-links li a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Hover state */
.follow-links li a:hover {
  color: #333;
  background-color: #f1f1f1;
}

/* Active state (optional, if you add .active class via JS or backend) */
.follow-links li a.active {
  color: #1d4ed8;
  font-weight: 700;
  border-bottom: 2px solid #1d4ed8;
}

/* Mobile responsiveness: Stack vertically on very small screens */
@media (max-width: 600px) {
  .follow-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .follow-links li a {
    display: block;
    text-align: center;
  }
}

#path {
	max-width: 400px;
}
