/* FilsDePute.fr - Retro Portal Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #008080 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23006666" width="50" height="50"/><rect fill="%23006666" x="50" y="50" width="50" height="50"/></svg>');
    font-family: 'Verdana', 'Geneva', 'Arial', sans-serif;
    color: #000;
    padding: 20px;
}

.page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border: 5px solid #000;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
}

/* Header Styles */
.header-container {
    background: linear-gradient(180deg, #000080 0%, #0000cd 50%, #000080 100%);
    border-bottom: 5px solid #ffd700;
    padding: 0;
}

.header-top {
    background: #000;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.flame-gif {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    filter: hue-rotate(20deg) saturate(2);
    animation: flicker 0.3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.site-title {
    font-size: 3em;
    font-weight: bold;
    color: #ffd700;
    text-shadow:
        3px 3px 0 #ff0000,
        6px 6px 0 #000;
    letter-spacing: 5px;
    display: inline-block;
    margin: 0 20px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    animation: title-glow 2s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow:
            3px 3px 0 #ff0000,
            6px 6px 0 #000,
            0 0 20px #ffd700;
    }
    50% {
        text-shadow:
            3px 3px 0 #ff6600,
            6px 6px 0 #000,
            0 0 40px #ffd700;
    }
}

.header-subtitle {
    background: #ffd700;
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.header-marquee {
    background: #ff0000;
    color: #ffff00;
    padding: 8px;
    font-weight: bold;
    font-size: 1.1em;
    border-top: 2px solid #000;
}

/* Content Wrapper */
.content-wrapper {
    padding: 30px;
    background: #f0f0f0;
}

/* Welcome Box */
.welcome-box {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    border: 4px double #000080;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-box h2 {
    color: #000080;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-decoration: underline;
}

.welcome-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 10px 0;
}

.blink {
    color: #ff0000;
    font-weight: bold;
    animation: blink-animation 1s step-start infinite;
}

@keyframes blink-animation {
    50% { opacity: 0; }
}

/* Services Section */
.services-section {
    margin: 30px 0;
}

.section-title {
    background: #000080;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 1.8em;
    border: 3px solid #000;
    margin-bottom: 25px;
    text-shadow: 2px 2px #000;
}

.title-decoration {
    color: #ffd700;
    font-size: 1.2em;
    margin: 0 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px rgba(0,0,0,0.3);
}

.service-header {
    background: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
    color: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #000;
}

.service-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 10px;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-header h3 {
    font-size: 1.5em;
    text-shadow: 2px 2px #000;
    margin: 0;
}

.service-body {
    padding: 20px;
}

.service-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 60px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: #000080;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.85em;
    border: 2px solid #000;
    font-weight: bold;
}

.service-button {
    display: block;
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    border: 3px solid #000;
    transition: all 0.2s;
    box-shadow: 3px 3px 0px #000;
}

.service-button:hover {
    background: linear-gradient(180deg, #00cc00 0%, #00ff00 100%);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.service-button:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000;
}

.service-footer {
    background: #e0e0e0;
    padding: 10px;
    text-align: center;
    border-top: 2px solid #000;
}

.status-online {
    color: #00cc00;
    font-weight: bold;
    font-size: 0.9em;
}

/* Stats Section */
.stats-section {
    background: #ffff99;
    border: 5px ridge #ff6600;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.stats-section h3 {
    color: #000080;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.stats-table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-collapse: collapse;
}

.stats-table tr {
    border-bottom: 2px solid #000;
}

.stats-table tr:last-child {
    border-bottom: none;
}

.stat-label {
    text-align: left;
    padding: 10px;
    font-weight: bold;
    color: #000080;
}

.stat-value {
    text-align: right;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #ff0000;
    font-family: 'Courier New', monospace;
}

/* Guestbook Promo */
.guestbook-promo {
    background: linear-gradient(135deg, #e0e0ff 0%, #c0c0ff 100%);
    border: 4px groove #000080;
    padding: 20px;
    margin: 30px 0;
}

.guestbook-promo h3 {
    color: #000080;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-decoration: underline;
}

.guestbook-promo p {
    background: #fff;
    border-left: 4px solid #000080;
    padding: 10px;
    margin: 10px 0;
    font-size: 1em;
}

/* Footer */
.footer-container {
    background: #808080;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-top: 5px solid #000;
}

.footer-badges {
    margin-bottom: 15px;
}

.footer-badges img {
    border: 2px solid #000;
    margin: 5px;
    background: #c0c0c0;
}

.footer-container p {
    margin: 8px 0;
    font-size: 0.95em;
}

.webmaster a {
    color: #ffff00;
    text-decoration: underline;
}

.webmaster a:hover {
    color: #ffd700;
}

.hit-counter {
    background: #000;
    color: #00ff00;
    padding: 10px;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    border: 3px solid #00ff00;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .site-title {
        font-size: 2em;
        letter-spacing: 2px;
        margin: 0 10px;
    }

    .flame-gif {
        width: 30px;
        height: 30px;
    }

    .header-subtitle {
        font-size: 1em;
    }

    .content-wrapper {
        padding: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.4em;
    }

    .service-icon {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5em;
        display: block;
        margin: 10px 0;
    }

    .welcome-box h2 {
        font-size: 1.4em;
    }

    .welcome-box p {
        font-size: 1em;
    }
}
