<!DOCTYPE html>
<html lang="fr">

<head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ESR VOLLEYBALL - Club Amateur UFOLEP</title>
    <link href="ESR2025/remixicon.min.css" rel="stylesheet">
    <style>
        @font-face {
            font-family: 'AlimamaShuHeiTi';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/AlimamaShuHeiTi-Bold.otf') format('opentype');
            font-weight: bold;
        }

        @font-face {
            font-family: 'MiSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
            font-weight: normal;
        }

        @font-face {
            font-family: 'MiSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
            font-weight: bold;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'MiSans', sans-serif;
        }

        body {
            width: 1200px;
            margin: 0 auto;
            background-color: #f8f9fa;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid #FFD700;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            width: 80px;
            height: 80px;
        }

        .logo-text {
            margin-left: 15px;
        }

        .logo-text h1 {
            font-family: 'AlimamaShuHeiTi', sans-serif;
            font-size: 28px;
            color: #0066CC;
            letter-spacing: 1px;
        }

        .logo-text span {
            font-size: 16px;
            color: #FFD700;
            font-weight: bold;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 40px;
        }

        nav ul li a {
            text-decoration: none;
            color: #0066CC;
            font-weight: bold;
            font-size: 18px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 5px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: #FFD700;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #FFD700;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .hero {
            position: relative;
            height: 600px;
            background: linear-gradient(rgba(0, 102, 204, 0.7), rgba(0, 102, 204, 0.7)), url('https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 40px;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
        }

        .hero h2 {
            font-family: 'AlimamaShuHeiTi', sans-serif;
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-btn {
            display: inline-block;
            background-color: #FFD700;
            color: #0066CC;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-btn:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, #f8f9fa, transparent);
        }

        footer {
            background-color: #0066CC;
            color: white;
            padding: 50px 40px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .footer-logo h3 {
            font-family: 'AlimamaShuHeiTi', sans-serif;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-contact h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #FFD700;
        }

        .contact-info {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: #FFD700;
        }

        .footer-social {
            flex: 1;
            min-width: 250px;
        }

        .footer-social h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #FFD700;
        }

        .social-icons {
            display: flex;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 15px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #FFD700;
            color: #0066CC;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 20px;
            }

            nav ul {
                margin-top: 20px;
            }

            nav ul li {
                margin-left: 20px;
                margin-right: 20px;
            }

            .hero {
                height: 500px;
            }

            .hero h2 {
                font-size: 36px;
            }

            .footer-content>div {
                flex: 100%;
                margin-bottom: 30px;
            }
        }
    </style>
</head>

<body>
    <header>
        <div class="logo-container"><img src="ESR2025/logo2025_futurist.png" alt="ESR Volleyball Logo" class="logo" style="margin: 0 auto 0 0; display: block; ">
            <div class="logo-text">
                <h1>ESR</h1><span>VOLLEYBALL</span>
            </div>
        </div>
        <nav>
            <ul>
                <li><a href="#">Accueil</a></li>
            </ul>
        </nav>
    </header>
    <section class="hero">
        <div class="hero-content">
            <h2>Bienvenue chez l&apos;ESR Volleyball</h2>
            <p>Rejoignez notre club amateur dynamique et partagez votre passion pour le volleyball dans une ambiance conviviale et sportive. Entrainement seul ou comp&eacute;tition au choix en semaine.</p><a href="mailto:volleyball.esr@gmail.com" class="hero-btn">Nous rejoindre</a>
        </div>
    </section>
    <footer>
        <div class="footer-content">
            <div class="footer-logo"><img src="ESR2025/logo_anime_esr2.gif" alt="ESR Volleyball Logo">
                <h3>ESR VOLLEYBALL</h3>
                <p>Entrainements : Lundi de 20h30 &agrave; 22h30 / Mercredi de 20h &agrave; 23h</p>
            </div>
            <div class="footer-contact">
                <h4>Contactez-nous</h4>
                <div class="contact-info">
                    <p>Gymnase Raymond Escavi, Av. des Rigaous, 13360 Roquevaire</p>
                </div>
                <div class="contact-info">
                    <p>volleyball.esr@gmail.com</p>
                </div>
                <div class="contact-info">
                    <p>06 37 70 20 11 - Pr&eacute;sident : Thomas PERIE</p>
                </div>
            </div>
        </div>
    </footer>
</body>

</html>