/*
Theme Name: QR Code 90s
Theme URI: https://www.getafreeqrcode.com
Author: Your Name
Author URI: https://www.getafreeqrcode.com
Description: A bold, exaggerated 90s-inspired 8-bit theme for the QR code generator. Big, bright, and pixelated!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: qrcode-90s
Tags: retro, 90s, pixel-art, bold, colorful
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

body {
    font-family: 'Courier New', 'MS Sans Serif', monospace;
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%);
    background-attachment: fixed;
    color: #000;
    line-height: 1.6;
    font-size: 20px;
    min-height: 100vh;
}

/* Pixelated font for headings */
@font-face {
    font-family: 'Pixel';
    src: url('fonts/pixel.woff2') format('woff2'),
         url('fonts/pixel.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Big, Bold Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Pixel', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        4px 4px 0px #000,
        8px 8px 0px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

h1 {
    font-size: 72px;
    color: #ff00ff;
    text-align: center;
    margin: 40px 0;
    animation: pulse 2s infinite;
}

h2 {
    font-size: 48px;
    color: #00ffff;
}

h3 {
    font-size: 36px;
    color: #ffff00;
}

/* Container */
.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Header removed - content starts directly */

/* Main Content */
.site-main {
    background: #fff;
    border: 12px solid #000;
    padding: 40px 60px 60px 60px;
    box-shadow: 
        0 0 0 12px #ff00ff,
        0 0 0 24px #00ffff,
        30px 30px 0px #000;
    margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-container {
        padding: 10px 10px 20px 10px;
    }
    
    .site-main {
        padding: 20px 15px 30px 15px;
        border: 6px solid #000;
        box-shadow: 
            0 0 0 6px #ff00ff,
            0 0 0 12px #00ffff,
            5px 5px 0px #000;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 32px;
        margin: 20px 0;
        letter-spacing: 2px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    body {
        font-size: 16px;
    }
}

/* Buttons - Big and Bold */
button, .button, input[type="submit"], .fqr-submit-btn {
    background: linear-gradient(180deg, #ff00ff 0%, #ff0080 100%);
    border: 6px solid #000;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 25px 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 
        0 0 0 6px #00ffff,
        0 0 0 12px #ffff00,
        10px 10px 0px #000;
    transition: all 0.1s;
    font-family: 'Pixel', 'Courier New', monospace;
    text-shadow: 3px 3px 0px #000;
}

button:hover, .button:hover, input[type="submit"]:hover, .fqr-submit-btn:hover {
    transform: translate(-5px, -5px);
    box-shadow: 
        0 0 0 6px #00ffff,
        0 0 0 12px #ffff00,
        15px 15px 0px #000;
}

button:active, .button:active, input[type="submit"]:active, .fqr-submit-btn:active {
    transform: translate(0, 0);
    box-shadow: 
        0 0 0 6px #00ffff,
        0 0 0 12px #ffff00,
        5px 5px 0px #000;
}

/* Form Elements - Exaggerated */
input[type="text"],
input[type="number"],
input[type="url"],
input[type="email"],
textarea,
select {
    background: #fff;
    border: 6px solid #000;
    padding: 20px;
    font-size: 24px;
    font-family: 'Courier New', monospace;
    width: 100%;
    box-shadow: 
        0 0 0 6px #ff00ff,
        inset 0 0 20px rgba(255,0,255,0.2);
    transition: all 0.2s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 
        0 0 0 6px #00ffff,
        0 0 0 12px #ffff00,
        inset 0 0 20px rgba(0,255,255,0.3);
    border-color: #00ffff;
}

label {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #ffff00;
}

/* Color Pickers - Big */
input[type="color"] {
    width: 80px;
    height: 80px;
    border: 6px solid #000;
    cursor: pointer;
    box-shadow: 
        0 0 0 6px #ff00ff,
        5px 5px 0px #000;
}

/* Checkboxes - Pixelated */
input[type="checkbox"] {
    width: 40px;
    height: 40px;
    border: 4px solid #000;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.blink {
    animation: blink 1s infinite;
}

/* Pixel Art Patterns */
.pixel-pattern {
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 22px);
}

/* Footer */
.site-footer {
    background: #000;
    border: 8px solid #ffff00;
    padding: 30px;
    text-align: center;
    color: #00ffff;
    font-size: 18px;
    box-shadow: 20px 20px 0px #000;
}

/* QR Code Preview Area - Big and Bold */
.fqr-preview-section {
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    border: 12px solid #000;
    padding: 40px;
    box-shadow: 
        0 0 0 12px #ffff00,
        25px 25px 0px #000;
}

.fqr-preview-container {
    background: #fff;
    border: 8px solid #000;
    padding: 30px;
    min-height: 400px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.2);
}

/* Form Section - Exaggerated */
.fqr-form-section {
    background: linear-gradient(135deg, #ffff00 0%, #ff00ff 100%);
    border: 12px solid #000;
    padding: 50px;
    box-shadow: 
        0 0 0 12px #00ffff,
        25px 25px 0px #000;
}

.fqr-form-group {
    margin-bottom: 40px;
}

/* Success/Error Messages - Big */
.fqr-message {
    font-size: 32px;
    padding: 30px;
    border: 8px solid #000;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    box-shadow: 10px 10px 0px #000;
}

.fqr-success {
    background: #00ff00;
    color: #000;
    border-color: #000;
}

.fqr-error {
    background: #ff0000;
    color: #fff;
    border-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    .site-title {
        font-size: 42px;
    }
    
    .site-main {
        padding: 30px;
    }
    
    button, .button, .fqr-submit-btn {
        font-size: 20px;
        padding: 20px 30px;
    }
}

/* Pixel Art Decorative Elements */
.pixel-border {
    border-image: 
        repeating-linear-gradient(0deg, #000, #000 10px, transparent 10px, transparent 20px) 10;
}

/* Scanlines Effect */
.scanlines {
    position: relative;
}

.scanlines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.1) 0px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 1;
}

