/* RoswellUFOs.com - Dark Retro/Neon Theme */
/* Based on ryqn.com aesthetic */

@font-face {
  font-family: 'Besknees';
  src: url('fonts/Besknees.woff2') format('woff2'),
       url('fonts/Besknees.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: Verdana, Arial, sans-serif;
  background-color: #111111;
  color: #E0E0E0;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #222222;
  color: #FFCC00;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #FF3300;
}

header h1 {
  font-family: 'Besknees', Verdana, Arial, sans-serif;
  font-size: 2rem;
  margin: 0;
  color: #00FF66;
}

.logo {
  max-height: 120px;
  margin-bottom: 10px;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0 0;
  padding: 0;
}

nav a {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s;
}

nav a:hover {
  color: #FF3300;
  text-decoration: underline;
}

nav a.active {
  color: #00FF66;
  border-bottom: 2px solid #00FF66;
}

/* Layout */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
  flex: 1;
}

.content {
  flex: 3;
  min-width: 0;
}

.sidebar {
  flex: 1;
  background-color: #1A1A1A;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 6px;
  min-width: 250px;
}

.sidebar h4 {
  color: #00FF66;
  margin-top: 0;
  font-family: 'Besknees', Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

.sidebar-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.sidebar-box:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-box p {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sidebar-box img {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

/* Feature boxes */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box {
  flex: 1 1 260px;
  background-color: #1A1A1A;
  border: 2px solid #FF3300;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 51, 0, 0.5);
}

.feature-box h3 {
  margin-top: 0;
  background-color: #FF3300;
  color: #FFCC00;
  padding: 6px;
  border-radius: 4px 4px 0 0;
  font-family: 'Besknees', Verdana, Arial, sans-serif;
  font-size: 1.1rem;
}

.feature-box a {
  color: #00FF66;
  text-decoration: none;
}

.feature-box a:hover {
  color: #FFCC00;
}

.feature-box img {
  max-width: 100%;
  margin: 10px 0;
  border-radius: 4px;
}

/* Post listings */
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-item {
  background-color: #1A1A1A;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}

.post-item:hover {
  border-color: #FF3300;
}

.post-item h3 {
  margin-top: 0;
  color: #00FF66;
  font-size: 1.2rem;
}

.post-item h3 a {
  color: #00FF66;
  text-decoration: none;
}

.post-item h3 a:hover {
  color: #FFCC00;
}

.post-meta {
  color: #999999;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.post-tags {
  margin-top: 10px;
}

.post-tags a {
  display: inline-block;
  background-color: #222222;
  color: #FFCC00;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.8rem;
  text-decoration: none;
  margin-right: 5px;
  margin-bottom: 5px;
}

.post-tags a:hover {
  background-color: #FF3300;
  color: #FFCC00;
}

/* Search */
.search-box {
  background-color: #1A1A1A;
  border: 2px solid #FF3300;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
}

.search-box input[type="search"] {
  width: 100%;
  padding: 10px;
  background-color: #222222;
  border: 1px solid #333;
  border-radius: 4px;
  color: #E0E0E0;
  font-size: 1rem;
  font-family: Verdana, Arial, sans-serif;
}

.search-box input[type="search"]:focus {
  outline: none;
  border-color: #FF3300;
  box-shadow: 0 0 5px rgba(255, 51, 0, 0.3);
}

.search-results {
  margin-top: 20px;
}

.search-result-item {
  background-color: #1A1A1A;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
}

.search-result-item h3 {
  margin-top: 0;
  color: #00FF66;
}

.search-result-item .snippet {
  color: #999999;
  margin-top: 10px;
}

/* Newsletter form */
.newsletter-form {
  margin-top: 15px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 8px;
  background-color: #222222;
  border: 1px solid #333;
  border-radius: 4px;
  color: #E0E0E0;
  font-size: 0.9rem;
  font-family: Verdana, Arial, sans-serif;
  margin-bottom: 10px;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #FF3300;
}

.newsletter-form button {
  width: 100%;
  padding: 8px;
  background-color: #FF3300;
  border: none;
  border-radius: 4px;
  color: #FFCC00;
  font-weight: bold;
  cursor: pointer;
  font-family: Verdana, Arial, sans-serif;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #FF5500;
}

/* Page content */
.page-title {
  font-family: 'Besknees', Verdana, Arial, sans-serif;
  font-size: 2rem;
  color: #00FF66;
  margin-bottom: 20px;
  text-align: center;
}

.intro {
  background-color: #1A1A1A;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
}

.intro h2 {
  color: #FFCC00;
  margin-top: 0;
  font-family: 'Besknees', Verdana, Arial, sans-serif;
}

.disclaimer {
  background-color: #222222;
  border-left: 4px solid #FF3300;
  padding: 15px;
  margin: 20px 0;
  color: #999999;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: #222222;
  color: #999999;
  text-align: center;
  padding: 20px;
  border-top: 3px solid #FF3300;
  font-size: 13px;
  margin-top: auto;
}

footer a {
  color: #00FF66;
  text-decoration: none;
}

footer a:hover {
  color: #FFCC00;
}

.footer-logo {
  height: 30px;
  margin-top: 10px;
}

/* Vault page styling */
.vault-warning {
  background-color: #1A1A1A;
  border: 2px solid #FF3300;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.vault-warning h2 {
  color: #FF3300;
  margin-top: 0;
}

.vault-warning p {
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    gap: 20px;
  }

  .sidebar {
    min-width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .features {
    flex-direction: column;
  }

  .feature-box {
    flex: 1 1 100%;
  }

  .page-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  .logo {
    max-height: 80px;
  }

  nav a {
    font-size: 0.9rem;
  }
}

