/*
Theme Name: Kapo ROC Theme v9
Author: kapo-roc.com
Description: Global navigation and Donate page ready
Version: 1.8
*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Cinzel', serif;
  background: url('kapo-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

.top-nav {
  background: rgba(0,0,0,0.7);
  text-align: center;
  padding: 15px;
}

.top-nav a {
  display: inline-block;
  color: white;
  background: rgba(255,255,255,0.1);
  margin: 5px 10px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.top-nav a:hover {
  background: rgba(255,255,255,0.3);
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero .buttons a {
  display: inline-block;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 1em 2em;
  margin: 0.5em;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.3em;
  transition: background 0.3s ease;
}

.hero .buttons a:hover {
  background: rgba(255,255,255,0.2);
}

.article-container {
  max-width: 800px;
  margin: 60px auto;
  background: rgba(0,0,0,0.7);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.article-container h1, .article-container h2 {
  color: gold;
}

.article-container p {
  line-height: 1.6;
  font-size: 1.1em;
}

.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background: #444;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
