
/*
Theme Name: Gunn Digital Theme
Author: AI Generated
Description: Modern, mobile-first WordPress theme using banner colors.
Version: 1.0
*/
:root {
  --primary: #0a2236;
  --accent: #00bcd4;
  --accent2: #0097a7;
  --background: #0a2236;
  --text: #ffffff;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
}
header {
  background: var(--primary);
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  position: relative;
}
.site-banner {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent2);
}
.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.menu li a:hover {
  background: rgba(0,188,212,0.2);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1rem;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: var(--accent2);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }
  .menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
