/* ============================================================
   Voice of Wishes — common.css
   Styles partagés par toutes les pages du site
   ============================================================ */

/* === CSS VARIABLES === */
:root {
    --vow-navy:        #1C1C1C;
    --vow-navy-light:  #2d2d2d;
    --vow-gold:        #C2934A;
    --vow-gold-light:  #dfb26b;
    --vow-sand:        #FAFAF9;
    --vow-charcoal:    #333333;
    --vow-grey-1:      #F2F4F9;
    --vow-grey-2:      #203240;
    --vow-text-body:   #54595F;
    --vow-border:      #EBEBEB;
    --vow-shadow-btn:  rgba(3, 4, 28, 0.30);

    /* Glassmorphisme */
    --glass-bg:        rgba(255, 255, 255, 0.72);
    --glass-border:    rgba(194, 147, 74, 0.20);
    --glass-shadow:    0 8px 32px rgba(0, 0, 0, 0.10);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
    font-family: 'Libre Bodoni', serif;
}
.text-script {
    font-family: 'Sail', cursive;
}

/* === HEADER SCROLL STATE === */
#navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #EBEBEB;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}
.nav-scrolled .nav-link {
    color: #1C1C1C !important;
}
.nav-scrolled .nav-link:hover {
    color: #C2934A !important;
}
.nav-scrolled .logo-light {
    display: none !important;
}
.nav-scrolled .logo-dark {
    display: block !important;
}

/* Logo swap par défaut */
.logo-dark {
    display: none;
}
.logo-light {
    display: block;
}

/* === MOBILE MENU === */
#mobile-menu {
    display: none;
}
#mobile-menu.open {
    display: flex;
    flex-direction: column;
}

/* === BUTTONS === */
.btn-gold {
    background-color: var(--vow-gold);
    color: #FFFFFF;
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--vow-gold);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(194, 147, 74, 0.30);
    text-decoration: none;
}
.btn-gold:hover {
    background-color: #FFFFFF;
    color: var(--vow-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(194, 147, 74, 0.40);
}

.btn-navy {
    background-color: var(--vow-navy);
    color: #FFFFFF;
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--vow-navy);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.20);
    text-decoration: none;
}
.btn-navy:hover {
    background-color: #FFFFFF;
    color: var(--vow-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.30);
}

/* Bouton outline navy (ex : Pack Essentiel / Éclat) */
.btn-outline-navy {
    background-color: #FFFFFF;
    color: var(--vow-navy);
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--vow-navy);
    display: inline-block;
    text-decoration: none;
}
.btn-outline-navy:hover {
    background-color: var(--vow-navy);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

/* Bouton outline blanc (pour sections à fond sombre) */
.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.40);
    display: inline-block;
    text-decoration: none;
}
.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.10);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* === DECORATIVE SEPARATOR === */
.separator-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem auto;
}
.separator-ornament::before,
.separator-ornament::after {
    content: '';
    height: 1px;
    width: 60px;
    background-color: rgba(194, 147, 74, 0.40);
}
.separator-ornament i {
    color: var(--vow-gold);
    font-size: 0.8rem;
}

/* === EVENT CARDS — premium avec image === */
.evt-card {
    background: #ffffff;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.evt-card:hover {
    border-color: rgba(194, 147, 74, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(194, 147, 74, 0.06);
    transform: translateY(-6px);
}

/* Image en haut de la carte */
.evt-card-img {
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
    position: relative;
}
.evt-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92) saturate(0.9);
}
.evt-card:hover .evt-card-img img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}
/* Ligne or sur l'image au hover */
.evt-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vow-gold), var(--vow-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.evt-card:hover .evt-card-img::after {
    transform: scaleX(1);
}

/* Zone de contenu */
.evt-card-content {
    padding: 1.5rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

/* Icône + titre côte à côte */
.evt-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}
.evt-card-icon {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--vow-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vow-gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.evt-card:hover .evt-card-icon {
    background: var(--vow-gold);
    color: #ffffff;
}
.evt-card-header h4 {
    font-family: 'Libre Bodoni', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

/* Description */
.evt-card-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #8a8a8a;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* CTA */
.evt-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vow-gold);
    border-bottom: 1px solid rgba(194, 147, 74, 0.35);
    padding-bottom: 2px;
    margin-top: 0.4rem;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}
.evt-card-cta i {
    font-size: 0.5rem;
    transition: transform 0.3s ease;
}
.evt-card:hover .evt-card-cta {
    color: #1a1a1a;
    border-color: rgba(26, 26, 26, 0.4);
}
.evt-card:hover .evt-card-cta i {
    transform: translateX(3px);
}

/* === FORM INPUTS === */
.classic-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--vow-sand);
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    font-family: 'Open Sans', sans-serif;
    color: var(--vow-charcoal);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.classic-input:focus {
    outline: none;
    border-color: var(--vow-gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(194, 147, 74, 0.15);
}
select.classic-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C2934A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem top 50%;
    background-size: 0.65rem auto;
    padding-right: 3rem;
    cursor: pointer;
}

/* === UTILITY === */
.w-full { width: 100%; }

/* Bounce ralenti (3s au lieu de 1s Tailwind) */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50%       { transform: translateY(-10px); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Section booking — image de fond */
.booking-bg {
    background-image: url('../../images/voice-of-wishes-contact-bg.jpg');
    background-position: center;
    background-size: cover;
}
