/*
Theme Name: Oblivion Dynamics
Theme URI: https://example.com/oblivion-dynamics
Author: Internal Security Training
Description: Dark, grungy responsive theme for Oblivion Dynamics phishing simulation exercise.
Version: 1.2
License: GNU General Public License v2 or later
Text Domain: oblivion-dynamics
*/

/* === Base === */
body {
  margin: 0;
  font-family: 'Verdana', sans-serif;
  background-color: #0b0b0b;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  color: #e0e0e0;
  line-height: 1.6;
}

/* === Containers === */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.95);
  border: 2px solid #222;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.9);
  background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  box-sizing: border-box;
}

/* === Typography === */
h1, h2, h3, h4 {
  color: #ff1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px #000;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  color: #ff4444;
  text-decoration: none;
}

a:hover, .wp-block-button__link:hover {
  background: #aa0000 !important;
  color: #fff;
  text-shadow: 0px 0px 5px #ff5555;
}

/* === Header === */
header {
  background: #111;
  border-bottom: 3px solid #ff1a1a;
  padding: 1.5rem 1rem;
  text-align: center;
}

header .site-logo img {
  max-width: 220px;
  height: auto;
  filter: contrast(120%) drop-shadow(0 0 10px #ff0000);
}

/* === Footer === */
footer {
  background: #111;
  border-top: 2px solid #ff3333;
  padding: 1rem;
  text-align: center;
  font-size: 0.9em;
  color: #888;
}

/* === Navigation === */
nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

nav ul li a {
  color: #e0e0e0;
  font-weight: bold;
}

/* === Buttons === */
.wp-block-button__link {
  display: inline-block;
  background: #ff3333;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

/* === Sections === */
.oblivion-section {
  margin: 3rem 0;
  padding: 1.5rem;
  border-left: 5px solid #ff1a1a;
  background: rgba(20, 20, 20, 0.9);
  box-shadow: inset 0 0 10px #000;
}

blockquote {
  font-style: italic;
  color: #ccc;
  border-left: 3px solid #ff3333;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  color: #888;
  font-size: 0.9em;
}

/* === Responsive Design === */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Tablets and below */
@media (max-width: 992px) {
  .container {
    padding: 1.5rem;
  }
  nav ul {
    gap: 1rem;
  }
  header .site-logo img {
    max-width: 180px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .wp-block-button__link {
    width: 100%;
    box-sizing: border-box;
  }
  header .site-logo img {
    max-width: 150px;
  }
}
