/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}        
        

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



        
        /* Styles spécifiques à la page documents */
        .documents-hero {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .documents-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="rgba(255,255,255,0.1)" rx="5"/></svg>') repeat;
            background-size: 80px 80px;
            animation: documentFloat 10s ease-in-out infinite;
        }
        
        @keyframes documentFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .documents-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .documents-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5em;
            color: #fff;
            text-shadow: 4px 4px 0 #333;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .documents-subtitle {
            color: #fff;
            text-align: center;
            font-size: 1.2em;
            margin-bottom: 30px;
            text-shadow: 2px 2px 0 #333;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .documents-content {
            padding: 80px 0;
            background: #fff;
        }
        
        .permit-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .permit-type-card {
            background: #fff;
            border-radius: 20px;
            border: 4px solid #333;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .permit-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .permit-type-card:nth-child(1) {
            border-color: #ff6b6b;
        }
        
        .permit-type-card:nth-child(2) {
            border-color: #4ecdc4;
        }
        
        .permit-type-card:nth-child(3) {
            border-color: #ffd93d;
        }
        
        .card-header {
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .permit-type-card:nth-child(1) .card-header {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        }
        
        .permit-type-card:nth-child(2) .card-header {
            background: linear-gradient(135deg, #4ecdc4, #6fd5d0);
        }
        
        .permit-type-card:nth-child(3) .card-header {
            background: linear-gradient(135deg, #ffd93d, #ffe066);
        }
        
        .permit-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }
        
        .permit-name {
            font-family: 'Bangers', cursive;
            font-size: 2em;
            color: #fff;
            text-shadow: 2px 2px 0 #333;
            margin-bottom: 0;
            text-transform: uppercase;
        }
        
        .documents-list {
            padding: 30px;
        }
        
        .documents-list h4 {
            font-family: 'Bangers', cursive;
            font-size: 1.5em;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: center;
        }
        
        .doc-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .doc-item:hover {
            background: #e9ecef;
            border-color: #333;
        }
        
        .doc-icon {
            font-size: 1.5em;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .doc-text {
            flex: 1;
        }
        
        .doc-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        
        .doc-description {
            color: #666;
            font-size: 0.95em;
            line-height: 1.4;
        }
        
        .info-link {
            display: inline-block;
            margin-left: 10px;
            padding: 4px 12px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            text-decoration: none;
            border-radius: 15px;
            border: 2px solid #333;
            font-size: 0.85em;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }
        
        .info-link:hover {
            background: linear-gradient(135deg, #764ba2, #667eea);
            transform: translateY(-2px);
            box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
        }
        
        .info-link i {
            margin-right: 4px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .important-notes {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .important-notes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 60px 60px;
            animation: warningFloat 8s ease-in-out infinite;
        }
        
        @keyframes warningFloat {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(20px); }
        }
        
        .important-notes .container {
            position: relative;
            z-index: 2;
        }
        
        .notes-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .note-card {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            border: 4px solid #333;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .note-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        }
        
        .note-card h4 {
            font-family: 'Bangers', cursive;
            font-size: 1.8em;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .note-card .note-icon {
            font-size: 1.2em;
        }
        
        .note-card ul {
            list-style: none;
            padding: 0;
        }
        
        .note-card ul li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #666;
            line-height: 1.5;
        }
        
        .note-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ecdc4;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .download-section {
            background: #f8f9fa;
            padding: 60px 0;
            text-align: center;
        }
        
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .download-card {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            border: 4px solid #333;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        }
        
        .download-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: block;
        }
        
        .download-card h4 {
            font-family: 'Bangers', cursive;
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .download-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #4ecdc4, #45b7af);
            color: #333;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-family: 'Bangers', cursive;
            font-size: 1.1em;
            border: 3px solid #333;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .download-btn:hover {
            background: linear-gradient(135deg, #45b7af, #3da8a0);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(78, 205, 196, 0.4);
        }
        
        .contact-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 50px 50px;
            animation: sparkle 6s ease-in-out infinite;
        }
        
        .contact-cta .container {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h3 {
            font-family: 'Bangers', cursive;
            font-size: 2.5em;
            color: #fff;
            text-shadow: 3px 3px 0 #333;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .cta-content p {
            color: #fff;
            font-size: 1.2em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 0 #333;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        @media (max-width: 768px) {
            .documents-title {
                font-size: 2.5em;
            }
            
            .permit-types {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .notes-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .download-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .documents-title {
                font-size: 2em;
            }
            
            .doc-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .permit-name {
                font-size: 1.5em;
            }
        }