
:root {
    --primary-color: #1A2F5A;
    --secondary-color: #83152D;
    --cream-color: #FFF8E7;
    --accent-color: #C98B28;
    --olive-color: #4A5D23;
    --lavender-color: #A898D1;
    --white-color: #FFFFFF;
    --light-gray-color: #F5F5F5;
    --dark-gray-color: #333333;
    --text-color: #1D1D1D;
    --text-light: #767676;
    --border-color: #E0E0E0;
    --diagonal-angle: 15deg;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.magazine-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.magazine-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

.section-title {
    margin-bottom: 3rem;
}

.btn {
    border-radius: 0;
    padding: 0.6rem 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #6a1124;
    border-color: #6a1124;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.accent-text {
    color: var(--secondary-color);
    font-weight: 700;
}


.diagonal-section {
    position: relative;
    padding: 5rem 0;
    margin-bottom: -2px;
    overflow: hidden;
}

.diagonal-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: skewY(var(--diagonal-angle));
    transform-origin: 100%;
    background-color: inherit;
    z-index: -1;
}

.diagonal-section.bg-light:before {
    background-color: var(--light-gray-color);
}


.magazine-image {
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.1);
}


.header {
    padding-top: 80px; 
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}


.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-content {
    padding-right: 2rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.1);
}


.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
}


.atelier-card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.atelier-card:hover {
    transform: translateY(-10px);
}

.atelier-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.atelier-card .card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}


.exercise-item {
    margin-bottom: 1.5rem;
}

.exercise-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


.lecture-principles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
}

.principle-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.principle-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    border-left: 3px solid var(--accent-color);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}


.stats-section {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.stats-section h2 {
    color: var(--white-color);
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.schedule-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
}

.schedule-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.schedule-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.schedule-details li {
    margin-bottom: 0.5rem;
}

.schedule-details i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}


.process-steps {
    position: relative;
    margin: 3rem 0;
}

.process-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: var(--secondary-color);
}


.inscription-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.cta {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.cta .magazine-title {
    color: var(--white-color);
}

.cta .magazine-title:after {
    background-color: var(--white-color);
}


.footer {
    background-color: var(--dark-gray-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.thank-you-section {
    padding: 8rem 0;
}

.thank-you-content {
    padding: 3rem;
    background-color: var(--white-color);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--light-gray-color);
    border-radius: 4px;
}

.next-steps ol {
    margin: 1.5rem 0;
}

.next-steps li {
    margin-bottom: 1rem;
}


.programmes-hero {
    padding: 8rem 0 4rem;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.programmes-hero h1, .programmes-hero .lead {
    color: var(--white-color);
}

.programmes-hero .magazine-title:after {
    background-color: var(--white-color);
}

.audience-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.audience-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.audience-item h4 {
    margin-bottom: 0.5rem;
}

.programme-item {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.programme-item:last-child {
    border-bottom: none;
}

.programme-tagline {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.programme-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.programme-details li {
    margin-bottom: 0.5rem;
}

.programme-details i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.programme-example {
    background-color: var(--cream-color);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.timeline li {
    display: flex;
    margin-bottom: 1rem;
}

.timeline li span {
    font-weight: 600;
    width: 70px;
    flex-shrink: 0;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.results-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.results-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.methodology-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.methodology-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.methodology-item h4 {
    margin-bottom: 1rem;
}

.feedback-structure {
    background-color: var(--white-color);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feedback-steps {
    margin-top: 2rem;
}

.feedback-step {
    display: flex;
    margin-bottom: 1.5rem;
}

.feedback-step .step-number {
    background-color: var(--accent-color);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
}

.accordion-button {
    background-color: var(--white-color);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.entreprises-hero {
    padding: 8rem 0 4rem;
    background-color: var(--light-gray-color);
}

.format-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.format-card:hover {
    transform: translateY(-5px);
}

.format-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0;
    background-color: transparent;
    border-left: none;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    margin-bottom: 0;
}

.benefit-item div {
    flex: 1;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
}

.package-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card .card-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.package-card .card-header h3 {
    color: var(--white-color);
    margin: 0;
}

.featured-package {
    border-top: 5px solid var(--accent-color);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features p {
    margin-bottom: 0.8rem;
}

.package-features i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.package-example, .package-ideal {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.workspace-options {
    margin: 2rem 0;
}

.workspace-option {
    margin-bottom: 2rem;
}

.workspace-option i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.workspace-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.contact-hero {
    padding: 8rem 0 4rem;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-hero h1, .contact-hero .lead {
    color: var(--white-color);
}

.contact-hero .magazine-title:after {
    background-color: var(--white-color);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.map-container {
    height: 450px;
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.transport-info {
    margin-top: 2rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.transport-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
}

.transport-item div {
    flex: 1;
}

.inscription-methods {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.inscription-methods li {
    margin-bottom: 0.8rem;
}

.inscription-methods i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.legal-doc-item {
    padding: 2rem;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.legal-doc-item:hover {
    transform: translateY(-5px);
}

.legal-doc-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.legal-doc-item h4 {
    margin-bottom: 1rem;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 47, 90, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1050;
    display: none;
}

.cookie-content {
    padding: 1rem;
}

.cookie-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-settings-options {
    margin-bottom: 1.5rem;
}


.policy-section {
    padding: 8rem 0 4rem;
}

.policy-header {
    margin-bottom: 3rem;
}

.policy-date {
    font-style: italic;
    color: var(--text-light);
}

.policy-content .policy-section {
    padding: 0;
    margin-bottom: 2.5rem;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.policy-content ul, .policy-content ol {
    margin: 1rem 0 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.action-section {
    background-color: var(--cream-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}


.iti {
    width: 100%;
}


@media (max-width: 991.98px) {
    .magazine-title {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 6rem;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .benefits-grid, .lecture-principles {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .diagonal-section {
        padding: 3rem 0;
    }
    
    .magazine-title {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons button {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}