/*
Theme Name: Anvogue
Theme URI: https://anvogue.presslayouts.com/landing
Author: PressLayouts Team
Author URI: https://presslayouts.com
Description: Anvogue is ThemeForest WordPress Premium Theme.
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Version: 2.0.3
License: Themeforest Commercial Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: anvogue
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready
Anvogue WordPress Theme, (C) 2024 PressLayouts.com
Anvogue is distributed under the terms of the Envato.

 DO NOT ADD YOUR CSS TO THIS FILE - IT WILL BE LOST
 To add your own CSS, use a child theme anvogue-child
 
 CSS file is in "assets/css"
*/#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #3B2F2F; /* marron foncé */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

.preloader-text {
  display: flex;
  gap: 40px;
  font-size: 14vw; /* lettres géantes responsive */
  font-weight: bold;
  color: white;
  font-family: sans-serif;
}

.letter {
  opacity: 0;
  transform: translateX(80px);
  animation: slideIn 0.8s forwards ease-out;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.3s; }
.letter:nth-child(3) { animation-delay: 0.5s; }
.letter:nth-child(4) { animation-delay: 0.7s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
