<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="5sur5 Séjour - Partagez les aventures, imprimez les souvenirs">
<title>{% block title %}5sur5 Séjour{% endblock %}</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="{{ asset('images/Logo.png') }}">
<link rel="apple-touch-icon" href="{{ asset('images/Logo.png') }}">
<!-- Google Fonts - Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Base Styles -->
<style>
:root {
--teal-5sur5: #41A2AA;
--teal-dark: #359BA3;
--teal-light: rgba(65, 162, 170, 0.08);
--orange-5sur5: #F56040;
--text-dark: #1A1A1A;
--text-secondary: #6B7280;
--text-muted: #9CA3AF;
--bg-white: #FFFFFF;
--bg-light: #F9FAFB;
--border-light: #E5E7EB;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: var(--text-dark);
background: var(--bg-white);
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1.6;
}
a {
color: var(--teal-5sur5);
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: var(--teal-dark);
}
img {
max-width: 100%;
height: auto;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
background: var(--teal-5sur5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--teal-dark);
}
/* Focus visible */
:focus-visible {
outline: 2px solid var(--teal-5sur5);
outline-offset: 2px;
}
/* Selection */
::selection {
background: var(--teal-light);
color: var(--text-dark);
}
</style>
{% block stylesheets %}{% endblock %}
<!-- Analytics -->
{{ render(controller('App\\Controller\\AnalyticsController::analyticsBloc', {'max': 3})) }}
</head>
<body>
<!-- Header -->
{% block Header %}
{% include 'Accueil/header.html.twig' %}
{% endblock %}
<!-- Main Content -->
<main>
{% block Content %}{% endblock %}
</main>
<!-- Footer -->
{% block Footer %}
{% include 'Accueil/_footer_premium.html.twig' %}
{% endblock %}
<!-- Core JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RY1ZZZ8KGZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RY1ZZZ8KGZ');
</script>
{% block javascript %}{% endblock %}
</body>
</html>