/* assets/css/style.css */

/* RESET + BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  color: #333;
  line-height: 1.6;
}

/* HEADER + NAVIGATION */
.site-header {
  background-color: #334;
  padding: 10px 0;
}

.site-nav .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.site-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.site-nav a:hover {
  color: #FFD700; /* Gold hover color */
}

/* MAIN CONTENT WRAPPER */
.site-content {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.site-content h1,
.site-content h2,
.site-content h3 {
  margin-bottom: 15px;
  margin-top: 20px;
  color: #333;
}

.site-content p {
  margin-bottom: 15px;
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #777;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
}

/* HERO SECTION */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero img {
  border-radius: 50%;
  width: 160px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.2rem;
  color: #666;
}

/* LINKS IN CONTENT */
.site-content a {
  color: #0073e6;
  font-weight: 600;
  text-decoration: none;
}
.site-content a:hover {
  text-decoration: underline;
}
