/* Super Star Labs - Retro Style CSS */
/* Minimalist, old-school web design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background-color: #f0f0f0;
    color: #000;
    line-height: 1.6;
    font-size: 14px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #000;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: slideInUp 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 24px;
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
    transition: color 0.3s ease;
}

h1:hover {
    color: #333;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

h2 {
    font-size: 18px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.nav {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.nav a {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav a:hover {
    text-decoration: underline;
    background-color: #000;
    color: #fff;
    padding: 2px 5px;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

.content {
    margin: 20px 0;
}

.section {
    margin: 30px 0;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out;
}

.section:hover {
    transform: translateX(5px);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #000;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    background-color: #ffffcc;
    padding: 10px;
    border-left: 4px solid #000;
    margin: 15px 0;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(255, 255, 204, 0.5);
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255, 255, 204, 0.3); }
    to { box-shadow: 0 0 15px rgba(255, 255, 204, 0.6); }
}

.contact-info {
    background-color: #e8e8e8;
    padding: 15px;
    border: 1px solid #000;
    margin: 20px 0;
    transition: all 0.3s ease;
    animation: bounceIn 0.8s ease-out;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.form-container {
    background-color: #fafafa;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

input[type="text"], 
input[type="email"], 
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background-color: #fff;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
textarea:focus {
    outline: none;
    border: 2px solid #000;
    background-color: #ffffcc;
}

textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #000;
    font-size: 12px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer a:hover {
    text-decoration: underline;
    color: #333;
    transform: translateY(-1px);
}

.footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer a:hover::after {
    width: 100%;
}

ul {
    list-style-type: square;
    margin-left: 20px;
    margin-bottom: 15px;
    animation: slideInRight 0.6s ease-out;
}

li {
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
}

li:hover {
    transform: translateX(5px);
    color: #333;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

/* Responsive design for mobile */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .nav a {
        display: block;
        margin: 5px 0;
        padding: 5px;
    }
    
    .nav a:hover {
        background-color: #000;
        color: #fff;
    }
}

/* Print styles */
@media print {
    body {
        background-color: #fff;
        color: #000;
    }
    
    .container {
        border: 1px solid #000;
        box-shadow: none;
    }
    
    .nav, .footer {
        display: none;
    }
}

