/*
Theme Name: VTU Ghana Complete Theme
Theme URI: http://yourdomain.com
Author: Your Name
Description: A full-featured VTU WordPress theme with layout and styles.
Version: 1.0
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #008CBA;
  padding: 15px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.site-main {
  padding: 20px;
  max-width: 960px;
  margin: auto;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 30px;
}

.hero {
  text-align: center;
}

.hero h1 {
  color: #008CBA;
}

.btn, .btn-alt {
  display: inline-block;
  padding: 10px 20px;
  background: #008CBA;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn-alt {
  background: #333;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}
