@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;500;600&display=swap');

:root {
    --windows-blue: #0078d7;
    --windows-light-blue: #429ce3;
    --windows-gray: #e6e6e6;
    --windows-dark-gray: #767676;
    --windows-black: #333333;
    --progress-color: #0078d7;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0078d7, #005a9e);
    color: #333;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.windows-setup {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.setup-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    position: relative;
    overflow: hidden;
}


.progress-bar {
    height: 6px;
    background-color: #e6e6e6;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #0078d7, #00b4ff);
    transition: width 0.8s ease-in-out;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 120, 215, 0.5);
}


.setup-screen {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    text-align: center;
}

.setup-screen.active {
    display: block;
}


.windows-logo {
    font-size: 60px;
    color: #0078d7;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}


h1 {
    color: #0078d7;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 28px;
}

h2 {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}


.setup-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.setup-details p {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.setup-details p i {
    margin-right: 8px;
    color: #0078d7;
}




ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

ul li {
    background-color: #f0f7ff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid #0078d7;
}

ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #e0f0ff;
}




#projet-screen ul li a {
    color: #0078d7;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

#projet-screen ul li a:hover {
    text-decoration: underline;
}

#projet-screen ul li a::before {
    content: '🔗';
    font-size: 14px;
}


.navigation-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.dual-buttons {
    justify-content: space-between;
}

.next-btn, .terminer-btn {
    background-color: #0078d7;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.next-btn:hover, .back-btn:hover, .terminer-btn:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.back-btn {
    background-color: #f0f0f0;
    color: #555;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.back-btn:hover {
    background-color: #e0e0e0;
}


.education-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.education-section h3 {
    color: #0078d7;
    margin-bottom: 15px;
    font-weight: 500;
}

.education-section ul {
    display: block;
    text-align: left;
    margin: 10px 0;
}

.education-section li {
    background: none;
    box-shadow: none;
    border: none;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.education-section li i {
    color: #00b050;
    margin-right: 10px;
}



.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 25px 0;
}

.project-card {
  width: 100%;
  max-width: 320px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 120, 215, 0.2);
}

.project-image {
  height: 160px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 15px;
  text-align: left;
}

.project-info h3 {
  color: #0078d7;
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.project-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  background-color: #0078d7;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.project-link:hover {
  background-color: #005fa3;
}



.email-container {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}
  
.styled-email {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #0078d7, #00a4ef);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 120, 215, 0.3);
    transition: all 0.3s ease;
}

.styled-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 120, 215, 0.4);
    background: linear-gradient(to right, #006cc1, #0098df);
}

.styled-email i {
    font-size: 20px;
    animation: bounce 2s infinite;
    margin-top: 5px;
}

.styled-email span {
    position: relative;
}

.styled-email span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.styled-email:hover span::after {
    width: 100%;
}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  

@media (max-width: 768px) {
    .setup-container {
        padding: 20px;
        margin: 15px;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .dual-buttons {
        flex-direction: row;
    }
    
    button {
        width: 100%;
        justify-content: center;
    }
    
    ul {
        flex-direction: column;
        gap: 10px;
    }
    
    ul li {
        width: 100%;
        box-sizing: border-box;
    }
    .projects-container {
    flex-direction: column;
    align-items: center;
    }
    
    .project-card {
        max-width: 100%;
    }
}