@charset "UTF-8";
/* CSS Document */

		
		
		
        /* === VARIABLES CSS === */
        :root {
            --primary-color: #f4e4a6;
            --dark-bg: #181818;
            --text-light: #ffffff;
            --text-muted: #cccccc;
        }

        /* === RESET ET BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Oswald', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
        }
		
		body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remplacez l'URL par votre image de grain, si vous en avez une */
    background-image: url('img/grain2.png'); 
    background-size: cover;
    opacity: 0.05; /* Ajustez cette valeur pour l'intensité du grain */
    pointer-events: none; /* Empêche la texture d'interférer avec les clics */
    z-index: 999; /* Place la texture au-dessus de tout le contenu */
}

        /* === NAVIGATION === */
        .navbar {
            background-color: rgba(26, 26, 26, 0.10) !important;
            backdrop-filter: blur(3px);
            padding: 1rem 0;
            transition: all 0.3s ease;
			border-bottom: 1px solid #f4e4a6;

        }

        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-light) !important;
            letter-spacing: 2px;
        }

        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        /* === SECTION HERO === */
        .hero-section {
              min-height: 100vh;
    background-image: url("img/calligraphie-bg.png");
    background-size: cover;
    background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Image de transparence au-dessus de l'arrière-plan */
        .hero-overlay-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            z-index: 1;
            pointer-events: none;
        }

        /* Placeholder pour l'image de transparence */
        .hero-overlay-placeholder {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            pointer-events: none;
        }

        .overlay-placeholder-text {
            color: rgba(244, 228, 166, 0.6);
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            text-align: center;
            background-color: rgba(26, 26, 26, 0.8);
            padding: 1rem 2rem;
            border-radius: 4px;
            border: 1px solid rgba(244, 228, 166, 0.3);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .welcome-text {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-weight: 300;
        }

      .artist-name-placeholder {
    /* Utiliser une largeur maximale pour l'affichage sur ordinateur, mais laisser une largeur en % pour qu'il s'adapte sur mobile */
    max-width: 600px;
    width: 90%;
    height: auto;
 	margin: 1.5rem auto;	
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-2deg);
    position: relative;
}

.artist-name-placeholder img {
    /* L'image doit toujours remplir son conteneur et non le déborder */
    width: 100%;
    height: auto;
    object-fit: contain;
}
        .placeholder-text {
            color: var(--primary-color);
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
            background-color: rgba(26, 26, 26, 0.8);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .artist-subtitle {
            font-size: 1.5rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 300;
        }

        /* === SECTION À PROPOS === */
        .about-section {
            padding-top: 3em;
            background-color: var(--dark-bg);
        }

        .about-text {
            font-size: 1.4rem;
            line-height: 1.8;
            color: var(--text-muted);
            text-align: center;
            font-weight: 300;
        }

        /* === GALERIE === */
        .gallery-section {
            padding: 0rem 0;
            background-color: var(--dark-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			z-index: 5;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        

       
    

        /* === SECTION SERVICES === */
        .services-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative; /* Nécessaire pour le z-index de l'image */
}

.services-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: left; /* Changé de center à left */
}

/* Nouvelle classe pour l'image décorative */
.services-image {
    position: absolute;
	width: 45%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1; /* En dessous de la dernière image de galerie mais au-dessus de l'arrière-plan */
}

.services-content {
    position: relative;
    z-index: 2;
    padding-left: 8rem; /* Ajustez cette valeur selon vos besoins */
}

        .contact-email {
            color: var(--primary-color);
            font-size: 1.2rem;
            text-decoration: none;
            font-weight: 400;
        }

        .contact-email:hover {
            color: var(--text-light);
        }

        /* === RÉSEAUX SOCIAUX === */
        .social-links {
            margin-top: 3rem;
        }

        .social-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: transparent;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            color: var(--primary-color);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
			margin-right: 1em;           
			transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        /* === FOOTER === */
        .footer {
            background-color: var(--dark-bg);
            padding: 2rem 0;
            border-top: 1px solid #f4e4a6;
        }

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

        .footer-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 300;
        }
		
		.footer-site {
            color: var(--text-light);
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 300;
        }

		 .footer-site:hover {
            color: var(--primary-color);
        }


/* === MENTIONS LEGALES === */

   .headermention {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 1000;
        }

       

        .close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            transition: all 0.3s ease;
        }

        .close-button:hover {
            background: white;
            transform: rotate(90deg);
        }


  .containermention {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

     

        .contentmention {
          /*  background: rgba(255, 255, 255, 0.95)*/;
            padding: 60px 40px 40px;
            border-radius: 15px;
            margin-top: 80px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
			border-color: #f4e4a6; 
			border: 1px solid;
        }

		 .sectionmention {
            margin-bottom: 30px;
			  font-family: 'Oswald', sans-serif;
            font-weight: 300;
        }
		

		  .H1mention {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 2.5em;
            color: #ffffff;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

		    .H2mention {
            font-family: 'Oswald', sans-serif;
            font-weight: 400;
            font-size: 1.5em;
			color: #f4e4a6;
            margin: 30px 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* === RESPONSIVITÉ === */
		
		
        @media (max-width: 768px) {
           .artist-name-placeholder {
   max-width: 80%;
    margin: 1.5rem auto;      /* Changé de 4rem à 2rem */
}
			.artist-name-placeholder img {
  		  width: 100%; /* Changez cette ligne */
        height: auto;
  		  object-fit: contain;
			}
			
			
            .artist-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.welcome-text {
    font-size: 1rem;
}

.about-text {
    font-size: 1.2rem;
    padding: 0 1rem;
}
            .placeholder-text {
                font-size: 1rem;
            }
            
            .overlay-placeholder-text {
                font-size: 1.2rem;
                padding: 0.8rem 1.5rem;
            }
            
            .hero-overlay-placeholder {
                width: 90%;
                height: 50%;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
	   .services-content {
        text-align: center;
        padding-left: 0;
    }
    .services-text {
        text-align: center;
    }
		      .containermention {
                padding: 10px;
            }
            
            .contentmention {
                padding: 60px 20px 20px;
                margin-top: 70px;
            }
            
             .H1mention {
                font-size: 2em;
            }
			
			
			
		}

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
        
		
		.artist-name-placeholder {
	    margin: 1.5rem auto;   }

		.artist-name-placeholder img {
 		   max-width: 100%;
  			  max-height: 160%;
  		  width: auto;
  		  height: auto;
  		  object-fit: contain;
			}
			
			
.artist-subtitle {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.welcome-text {
    font-size: 1.1rem;
}

.about-text {
    font-size: 1.1rem;
}
.services-image {
        width: 60%; /* Adjust this percentage as needed */
      
    }
}
		
		
		
        /* === ANIMATIONS === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

      
