/* Hero Section Layout */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    gap: 40px;
    padding: 20px 0;
}

.hero-text {
    flex: 1;
}

.badge-fullstack {
    display: inline-block;
    background: #EBF2FA;
    color: #06668C;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9em;
    margin-bottom: 20px;
    border: 1px solid #427AA1;
}

.hero-text h1 {
    font-size: 4em;
    color: #06668C;
    margin-bottom: 10px;
}

.pitch {
    font-size: 1.2em;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

/* Photo & Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.photo-container {
    position: relative;
}

.photo-main {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 0px #679436;
    transition: 0.4s;
}

.photo-main:hover {
    transform: translate(5px, 5px);
    box-shadow: 10px 10px 0px #679436;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #06668C;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Boutons */
.cta-group {
    display: flex;
    gap: 15px;
}

.button-primary, .button-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.button-primary {
    background: #06668C;
    color: white;
}

.button-primary:hover { background: #427AA1; }

.button-secondary {
    border: 2px solid #06668C;
    color: #06668C;
}

.button-secondary:hover { background: #EBF2FA; }

.button-primary img, .button-secondary img {
    width: 24px;
}

/* Video Section */
.video-section {
    margin: 80px 0;
    text-align: center;
}

.section-title h2 { color: #06668C; font-size: 2em; }
.underline {
    width: 60px;
    height: 4px;
    background: #679436;
    margin: 10px auto 40px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 10px solid #EBF2FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .hero-section { flex-direction: column-reverse; text-align: center; }
    .cta-group { justify-content: center; }
    .photo-main { width: 280px; height: 280px; }
}