/*
 * Tclearvalley - Styles
 * Atelier de création et restauration de vitraux traditionnels
 * Version: 1.0
 */

/* ========== Table of Contents ==========
1. Base Styles
   1.1 Reset
   1.2 Typography
   1.3 Variables
   1.4 Global Styles
   1.5 Utilities
2. Layout
   2.1 Container
   2.2 Grid
3. Components
   3.1 Buttons
   3.2 Forms
   3.3 Cards
   3.4 Modals
   3.5 Cookie Banner
   3.6 Lightbox
   3.7 Switch
4. Header
   4.1 Logo
   4.2 Navigation
   4.3 Burger Menu
5. Footer
6. Hero Section
7. About Section
8. Services Section
9. Process Section
10. Gallery Teaser
11. Materials Section
12. Business Teaser
13. Contact Section
14. Thank You Page
15. Gallery Page
16. Pour Entreprises Page
17. Contacts Page
18. Legal Pages
19. Media Queries
========== End Table of Contents ========== */




*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #FFF8E7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #2D1E10;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: #666666;
}


:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #FFD700;
    --color-bg-light: #FFF8E7;
    --color-bg-dark: #2D1E10;
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-error: #B22222;
    --color-success: #2E8B57;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}


::selection {
    background-color: var(--color-primary);
    color: white;
}

:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
    color: white;
}

.section-header--light .section-title::after {
    background-color: white;
}


.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}




.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 1.5rem;
    margin: 0 auto;
}


.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    flex: 1 0 0%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}




.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover, .btn--primary:focus {
    background-color: #7a3c10;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--color-secondary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover, .btn--secondary:focus {
    background-color: #ba5a19;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--tertiary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn--tertiary:hover, .btn--tertiary:focus {
    background-color: rgba(139, 69, 19, 0.1);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--full {
    display: block;
    width: 100%;
}

.btn:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.btn i {
    margin-right: 0.5rem;
}


.form {
    margin-bottom: 2rem;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.form__input,
.form__textarea,
.form__select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__group--checkbox {
    display: flex;
    align-items: flex-start;
}

.form__checkbox {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.form__checkbox-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.form__checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form__checkbox-label a:hover {
    color: var(--color-secondary);
}

.form__error {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}


.iti {
    width: 100%;
}


.card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card__content {
    padding: 1.5rem;
}

.card__title {
    margin-bottom: 0.75rem;
}

.card__text {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.card__footer {
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}


.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card__title {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card__text {
    color: var(--color-text-secondary);
}


.feature {
    text-align: center;
    padding: 1rem;
}

.feature__icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.feature__title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature__text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}


.material-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.material-card__title {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.material-card__text {
    color: var(--color-text-secondary);
}


.contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-card__icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
}

.contact-card__content {
    flex-grow: 1;
}

.contact-card__title {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.contact-card__text {
    color: var(--color-text-secondary);
}

.contact-card--large .contact-card__icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
}

.contact-card--large .contact-card__title {
    font-size: 1.4rem;
}


.note-card {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
}

.note-card__icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-right: 1rem;
    flex-shrink: 0;
}

.note-card__content {
    flex-grow: 1;
}

.note-card__title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.note-card__text {
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
}

.note-card__text:last-child {
    margin-bottom: 0;
}


.offer-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.offer-card__title {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.offer-card__text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.offer-card__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card__list li {
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}


.standard-card {
    background-color: white;
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.standard-card__title {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.standard-card__text {
    color: var(--color-text-secondary);
}


.case-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.case-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-card__image img {
    transform: scale(1.05);
}

.case-card__content {
    padding: 1.5rem;
}

.case-card__title {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.case-card__text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.case-card__details {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.case-card__details li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}


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

.requirement-item__icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
}

.requirement-item__content {
    flex-grow: 1;
}

.requirement-item__title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.requirement-item__text {
    color: var(--color-text-secondary);
}


.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 0;
    padding-bottom: 75%;
}

.gallery-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.05);
}

.gallery-item__title {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.gallery-item__subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.gallery-item__view {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.gallery-item__view:hover {
    background-color: #e6c200;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background-color: white;
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal__content {
    transform: translateY(0);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal__title {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--color-text-primary);
}

.modal__body {
    padding: 1.5rem;
}

.modal__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-banner__title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-banner__text {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}


.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category__title {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.cookie-category__description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}


.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}


.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.lightbox__image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin-bottom: 1rem;
}

.lightbox__details {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.lightbox__title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.lightbox__description {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}


.filter-btn {
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: #f8f9fa;
}

.filter-btn--active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.filter-btn--active:hover {
    background-color: #7a3c10;
}




.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 248, 231, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 248, 231, 0.98);
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}


.logo {
    display: block;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}


.nav__list {
    display: flex;
    align-items: center;
}

.nav__item {
    margin-left: 1.5rem;
}

.nav__link {
    position: relative;
    font-weight: 500;
    color: var(--color-text-primary);
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link--active {
    color: var(--color-primary);
}


.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.burger__line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition);
}

.burger.active .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background-color: white;
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav__item {
        margin: 0;
        width: 100%;
    }
    
    .nav__link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
}


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

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

.footer__logo {
    display: block;
    margin-bottom: 1rem;
    height: 50px;
}

.footer__logo img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer__title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer__address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.footer__address a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer__address a:hover {
    color: white;
}

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

.footer__nav li {
    margin-bottom: 0.75rem;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer__nav a:hover {
    color: white;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer__top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 30, 16, 0.7), rgba(210, 105, 30, 0.5));
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.5rem;
    }
}


.about {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about__image {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__text {
    flex: 1;
}

.about__subtitle {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .about__content {
        flex-direction: row;
    }
    
    .about__features {
        grid-template-columns: repeat(3, 1fr);
    }
}


.services {
    padding: 5rem 0;
    background-color: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.process {
    padding: 5rem 0;
    background-color: var(--color-bg-dark);
    color: white;
    position: relative;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 30, 16, 0.85);
}

.process__steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-step__content {
    position: relative;
}

.process-step__title {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.process-step__text {
    color: rgba(255, 255, 255, 0.8);
}

.process-step--horizontal {
    padding-left: 0;
    padding-top: 80px;
    margin-bottom: 2rem;
}

.process-step--horizontal .process-step__number {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-step--horizontal .process-step__content {
    text-align: center;
}

@media (min-width: 768px) {
    .process-step--horizontal {
        padding-top: 0;
        padding-left: 80px;
        margin-bottom: 3rem;
    }
    
    .process-step--horizontal .process-step__number {
        top: 0;
        left: 0;
        transform: none;
    }
    
    .process-step--horizontal .process-step__content {
        text-align: left;
    }
}


.gallery-teaser {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.gallery-teaser__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-teaser__cta {
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .gallery-teaser__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.materials {
    padding: 5rem 0;
    background-color: var(--color-bg-dark);
    color: white;
    position: relative;
}

.materials__content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.materials__intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.materials__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.materials__care {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-md);
}

.materials__care-title {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .materials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.business-teaser {
    padding: 5rem 0;
    background-color: white;
}

.business-teaser__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.business-teaser__image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.business-teaser__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.business-teaser__content {
    flex: 1;
    text-align: center;
}

.business-teaser__title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.business-teaser__text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .business-teaser__inner {
        flex-direction: row;
        text-align: left;
    }
    
    .business-teaser__content {
        text-align: left;
    }
}


.contact {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact__info {
    flex: 1;
}

.contact__form {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .contact__inner {
        flex-direction: row;
    }
}


.thank-you {
    padding: 8rem 0;
    margin-top: var(--header-height);
    background-color: var(--color-bg-light);
    min-height: calc(100vh - var(--header-height) - 400px);
    display: flex;
    align-items: center;
}

.thank-you__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you__icon {
    font-size: 5rem;
    color: var(--color-success);
    margin-bottom: 2rem;
}

.thank-you__title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.thank-you__text {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.thank-you__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}


.page-hero {
    height: 300px;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-vitrage1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero__title {
    margin-bottom: 1rem;
}

.page-hero__text {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.gallery-filters {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-filters__inner {
    text-align: center;
}

.gallery-filters__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.gallery-filters__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.gallery {
    padding: 3rem 0 5rem;
    background-color: var(--color-bg-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--color-primary);
    color: white;
}

.cta-section__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section__title {
    margin-bottom: 1rem;
    color: white;
}

.cta-section__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.page-hero--enterprise::before {
    background-image: url('../images/entreprise-projet.jpg');
}

.commercial-offers {
    padding: 5rem 0;
    background-color: white;
}

.commercial-offers__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.business-process {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.standards {
    padding: 5rem 0;
    background-color: white;
}

.standards__inner {
    max-width: 900px;
    margin: 0 auto;
}

.standards__title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.standards__text {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.standards__note {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.standards__note a {
    color: var(--color-primary);
    text-decoration: underline;
}

.portfolio-cases {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.portfolio-cases__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.technical-requirements {
    padding: 5rem 0;
    background-color: white;
}

.technical-requirements__inner {
    max-width: 900px;
    margin: 0 auto;
}

.technical-requirements__title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.technical-requirements__text {
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.requirements-list {
    margin-bottom: 3rem;
}

.technical-requirements__cta {
    text-align: center;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
}

@media (min-width: 768px) {
    .commercial-offers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .standards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .commercial-offers__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.page-hero--contact::before {
    background-image: url('../images/atelier-histoire.jpg');
}

.contact-info {
    padding: 5rem 0;
    background-color: white;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info__details {
    display: flex;
    flex-direction: column;
}

.contact-info__cta {
    margin-top: 2rem;
    text-align: center;
}

.contact-info__map {
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.map-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-info {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.visit-info__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.visit-info__subtitle {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

@media (min-width: 992px) {
    .contact-info__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .visit-info__content {
        grid-template-columns: 2fr 1fr;
    }
}


.legal-content {
    padding: 5rem 0;
    margin-top: var(--header-height);
    background-color: var(--color-bg-light);
}

.legal-content__inner {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.legal-content__title {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-content__date {
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section__title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.legal-section h3 {
    color: var(--color-secondary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

.cookie-settings-cta {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-top: 3rem;
}


@media (max-width: 575px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .cookie-banner__buttons {
        flex-direction: column;
    }
    
    .cookie-banner__buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .legal-content__inner {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .cookie-banner__buttons {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .process-step--horizontal {
        padding-top: 0;
        padding-left: 80px;
    }
    
    .process-step--horizontal .process-step__number {
        top: 0;
        left: 0;
        transform: none;
    }
    
    .process-step--horizontal .process-step__content {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .hero {
        height: calc(100vh - var(--header-height));
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}