/*
Theme Name: Tettris
Theme URI: https://example.com/
Author: Ditt Name
Author URI: https://example.com/
Description: Ett enkelt SCSS-baserat WordPress-tema.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mitt-scss-tema
*/
/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

/* === BODY === */
body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Press Start 2P", cursive;
  line-height: 1.6;
  color: #e0f0ff;
  background-color: #111;
  animation: fadeIn 1s ease-in-out;
  padding-bottom: 100px; /* Space for fixed footer */
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* === NAVIGATION === */
nav {
  background-color: rgba(0, 0, 64, 0.85);
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 64, 0.4);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  border-bottom: 2px solid #3399ff;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li a {
  color: #e0f0ff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
  color: #3399ff;
  transform: scale(1.1);
}

/* === HEADER === */
header {
  text-align: center;
  padding: 100px 20px 40px;
  background: rgba(0, 0, 32, 0.8);
  border-bottom: 2px solid #3399ff;
  box-shadow: 0 4px 10px rgba(0, 64, 255, 0.2);
  margin-top: 50px; /* Enough space for fixed nav */
}

header h1 {
  font-size: 2em;
  color: #3399ff;
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

header h1:hover {
  transform: translateY(-5px);
  color: #66ccff;
}

header p {
  font-size: 1em;
  color: #bbb;
}

/* === SECTION === */
section {
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  background-color: rgba(20, 20, 40, 0.95);
  border: 2px solid #3399ff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 64, 255, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

section:hover {
  transform: scale(1.02);
  background-color: rgba(10, 10, 30, 0.95);
}

section h2 {
  color: #66ccff;
  margin-bottom: 15px;
  font-size: 1.4em;
  text-transform: uppercase;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1a1a2e;
  color: #bbb;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 10px rgba(0, 64, 255, 0.2);
  border-top: 2px solid #3399ff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

footer:hover {
  background-color: #222244;
  color: #fff;
}

/* === BACKGROUND CANVAS === */
#tetrisCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: #111;
  pointer-events: none;
}

/* === ENTRY TITLE (Hide WP Title If Needed) === */
h1.entry-title,
h1 {
  display: none !important;
}

h1.true {
  display: block !important;
}/*# sourceMappingURL=style.css.map */