/*
Theme Name: Simple Plugin Display Theme
Theme URI:  https://example.com
Description: Full-width, mobile-first theme to complement your plugins.
Author:      Your Name
Author URI:  https://example.com
Version:     1.0
Text Domain: simple-plugin-display-theme
*/

/* Reset & base typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background: #f9f9f2;
  color: #333;
}
a { color: #6d41a1; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Container to center content and constrain width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #7b1fa2;
  color: #fff;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.site-title {
    padding-left:15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.site-tagline {
    padding-left:10px;
  font-size: 0.9rem;
  color: #e0d4f0;
  margin-left: 0.5rem;
}

/* Nav Toggle (burger) */
.nav-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding-right:20px;
}

/* Primary Nav */
.primary-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #6d41a1;
  display: none;
}
.primary-nav.open {
  display: block;
}
.primary-nav .menu {
  list-style: none;
}
.primary-nav .menu li + li {
  border-top: 1px solid #814aad;
}
.primary-nav .menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
}

/* Footer */
.site-footer {
    position:sticky;
    bottom:0px;
  background: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #555;
}
.site-footer a {
  color: #6d41a1;
}

/* Desktop Overrides */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    display: block !important;
    background: none;
  }
  .primary-nav .menu {
    display: flex;
  }
  .primary-nav .menu li + li {
    border: none;
    margin-left: 2rem;
  }
  .primary-nav .menu li a {
    padding: 0;
    color: #fff;
  }
}
