/*
Theme Name: Site en Construction
Theme URI: https://votresite.com
Author: Votre Nom
Author URI: https://votresite.com
Description: Un thème WordPress élégant pour page en construction avec design sobre et professionnel
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: construction
Tags: one-column, custom-colors, custom-logo, full-width-template, professional
*/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.main-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.container {
    text-align: center;
    color: #1a1a1a;
    padding: 50px 60px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    max-width: 650px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

h1 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
    font-weight: 300;
    line-height: 1.6;
}

.subtitle {
    font-size: 15px;
    margin-bottom: 0;
    color: #6a6a6a;
    font-weight: 300;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.loader-bar {
    width: 8px;
    height: 40px;
    background: #4a7c4a;
    border-radius: 4px;
    animation: wave 1.2s infinite ease-in-out;
}

.loader-bar:nth-child(1) {
    animation-delay: 0s;
    background: #2d5a2d;
}

.loader-bar:nth-child(2) {
    animation-delay: 0.15s;
    background: #3d6a3d;
}

.loader-bar:nth-child(3) {
    animation-delay: 0.3s;
    background: #4a7c4a;
}

.loader-bar:nth-child(4) {
    animation-delay: 0.45s;
    background: #5a8c5a;
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.4);
        opacity: 0.4;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.progress-container {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: #4a7c4a;
    border-radius: 2px;
    animation: progress 3s infinite ease-in-out;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

/* PDF Section */
.pdf-section {
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.pdf-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}

.pdf-container h2 {
    color: #1a1a1a;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.mon-contenu {
    position: relative;
    width: 100%;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
}

.mon-contenu iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.pdf-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pdf-download,
.pdf-view {
    display: inline-block;
    padding: 14px 32px;
    background: #4a7c4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.pdf-download:hover,
.pdf-view:hover {
    background: #3d6a3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 74, 0.3);
}

.pdf-view {
    background: #2d5a2d;
}

.pdf-view:hover {
    background: #1a3a1a;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7c4a;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-links a:hover {
    background: #4a7c4a;
    color: #ffffff;
    border-color: #4a7c4a;
    transform: translateY(-2px);
}

/* Email Notify */
.email-notify {
    margin-top: 32px;
}

.email-input {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.email-input form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 12px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    outline: none;
    min-width: 280px;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: #4a7c4a;
    box-shadow: 0 0 0 3px rgba(74, 124, 74, 0.1);
}

input[type="email"]::placeholder {
    color: #9a9a9a;
}

button[type="submit"] {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    background: #4a7c4a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background: #3d6a3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 74, 0.3);
}
.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3a1a 100%);
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: 100px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Info */
.company-info {
    flex: 1;
    min-width: 250px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.company-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
}

/* Designer Credit */
.designer-credit {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.made-by {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.designer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.designer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-code {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.icon-linkedin {
    transition: transform 0.3s ease;
}

.designer-link:hover .icon-linkedin {
    transform: scale(1.1);
}

.designer-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 30px;
    }

    .company-info,
    .designer-credit {
        min-width: 100%;
        text-align: center;
    }

    .made-by {
        justify-content: center;
        font-size: 14px;
    }

    .designer-link {
        padding: 6px 12px;
        font-size: 14px;
    }

    .designer-subtitle {
        font-size: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 15px;
    }

    .company-name {
        font-size: 16px;
    }

    .company-tagline {
        font-size: 13px;
    }

    .made-by {
        font-size: 13px;
    }

    .designer-link {
        font-size: 13px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 40px 20px;
    }

    .container {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .logo img {
        max-width: 160px;
    }
    
    p {
        font-size: 16px;
    }
    
    input[type="email"] {
        min-width: 100%;
    }
    
    .loader-bar {
        width: 6px;
        height: 32px;
    }

    .pdf-section {
        margin-top: 60px;
    }

    .pdf-container {
        padding: 30px 20px;
    }

    .pdf-container h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .mon-contenu iframe {
        height: 450px;
    }

    .pdf-actions {
        flex-direction: column;
    }

    .pdf-download,
    .pdf-view {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 24px;
    }

    .logo img {
        max-width: 140px;
    }

    .mon-contenu iframe {
        height: 350px;
    }
}