@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.fullscreen-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    image-rendering: pixelated;
    filter: blur(2px) brightness(0.8);
}

.wrap {
    position: relative;
    z-index: 1;
    padding: 30px 10vw;
    max-width: 1200px;
    margin: 0 auto;
}

.entry-title {
    font-weight: 700;
    font-size: 4vw;
    color: #fff;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.7);
    padding: 30px 0;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0 10px 0;
    background: linear-gradient(90deg, #4CAF50 0%, #007BFF 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: pop 0.5s ease-out;
}

@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.description {
    background: rgba(255,255,255,0.7);
    color: #222;
    font-size: 1.3em;
    padding: 25px;
    border-radius: 15px;
    line-height: 1.7;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.icone {
    margin-top: 15px;
    text-align: center;
}

.icone a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 18px;
    font-size: 2em;
    transition: color 0.3s, transform 0.3s;
}

.icone a:hover {
    color: #4CAF50;
    transform: scale(1.2) rotate(-5deg);
}

section, .tools-learned, .entreprise, .achievements, .wordpress-experience, .pagespeed-insights, .tools-used, .adobe-tools, .conclusion, .methodology, .services, .mission, .contact {
    background: rgba(255,255,255,0.85);
    padding: 30px 25px;
    margin: 30px 0;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(2px);
}

h2 {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5em;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}

ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

li {
    font-size: 1.15em;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
}

.small-image img {
    image-rendering: pixelated;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.small-image {
    text-align: center;
    margin-bottom: 18px;
}

.image-item img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 10px;
    border-radius: 18px;
    gap: 20px;
}

.tech-item {
    background: linear-gradient(135deg, #007BFF 0%, #4CAF50 100%);
    padding: 22px 18px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    width: 160px;
    margin: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.tech-item:hover img {
    transform: scale(1.12);
    box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}

.tech-item p {
    margin-top: 10px;
    font-size: 1.1em;
    color: #fff;
    font-weight: 600;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

button, .cv-button {
    background: linear-gradient(90deg, #007BFF 0%, #4CAF50 100%);
    border: none;
    color: white;
    padding: 15px 35px;
    text-align: center;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: background 0.4s, box-shadow 0.4s, transform 0.3s;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

button:hover, .cv-button:hover {
    background: linear-gradient(90deg, #4CAF50 0%, #007BFF 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transform: translateY(-3px) scale(1.04);
}

.cv-button:active {
    background: #004085;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wrap {
        padding: 20px 3vw;
    }
    .entry-title {
        font-size: 7vw;
    }
}

@media (max-width: 768px) {
    .wrap {
        padding: 10px 2vw;
    }
    .entry-title {
        font-size: 9vw;
        padding: 15px 0;
    }
    .description {
        font-size: 1.1em;
        padding: 15px;
    }
    .icone a {
        font-size: 1.5em;
        margin: 0 10px;
    }
    section, .tools-learned, .entreprise, .achievements, .wordpress-experience, .pagespeed-insights, .tools-used, .adobe-tools, .conclusion, .methodology, .services, .mission, .contact  {
        padding: 15px;
        margin: 15px 0;
    }
    h2 {
        font-size: 1.3em;
    }
    ul {
        padding-left: 15px;
    }
    li, p {
        font-size: 1em;
    }
    .technologies {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .tech-item {
        width: 90vw;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 5px 1vw;
    }
    .entry-title {
        font-size: 12vw;
        padding: 10px 0;
    }
    .description {
        font-size: 1em;
        padding: 10px;
    }
    .icone a {
        font-size: 1.1em;
        margin: 0 5px;
    }
    section, .tools-learned, .entreprise, .achievements, .wordpress-experience, .pagespeed-insights, .tools-used, .adobe-tools, .conclusion, .methodology, .services, .mission, .contact  {
        padding: 8px;
        margin: 8px 0;
    }
    h2 {
        font-size: 1em;
    }
    ul {
        padding-left: 10px;
    }
    li, p {
        font-size: 0.95em;
    }
    .small-image img, .image-item img {
        width: 100%;
        max-width: 95vw;
    }
}