/* INDEX : vitrine chaude */

.home-showcase {
    margin-bottom: 28px;
}



.home-showcase-text,
.home-showcase-visual,
.home-poem,
.path-card,
.ambience-panel,
.content-intro-text,
.editorial-card,
.video-block,
.contact-card,
.tarif-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.home-showcase-text {
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 240, 210, 0.95), rgba(239, 204, 150, 0.82));
}

.home-kicker,
.tarif-kicker,
.contact-subtitle {
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
}

.home-lead {
    max-width: 620px;
    font-size: 1.12rem;
    margin-bottom: 0;
    color: var(--text);
}

.home-showcase-visual {
    padding: 28px;
    border-radius: 34px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(241, 200, 117, 0.75) 0, transparent 35%),
        radial-gradient(circle at bottom right, rgba(163, 58, 29, 0.28) 0, transparent 35%),
        linear-gradient(135deg, #fff0d2 0%, #e7c793 100%);
}

.toy-window {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 280px;
}

.toy-window-card {
    position: absolute;
    width: 170px;
    min-height: 125px;
    padding: 18px;
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(80, 38, 15, 0.14);
}

.toy-window-card:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: var(--shadow-md);
}

.toy-window-card span {
    font-size: 2rem;
    line-height: 1;
}

.toy-window-card p {
    margin: 0;
    font-weight: 800;
    color: var(--primary-dark);
}

.toy-window-card-1 {
    top: 0;
    left: 10px;
    background: linear-gradient(135deg, #fff0d2, #f1c875);
    transform: rotate(-6deg);
    animation: float1 6s ease-in-out infinite;
}

.toy-window-card-2 {
    top: 34px;
    right: 0;
    background: linear-gradient(135deg, #f0c09a, #fff0d2);
    transform: rotate(7deg);
    animation: float2 7s ease-in-out infinite;
}

.toy-window-card-3 {
    bottom: 0;
    left: 90px;
    background: linear-gradient(135deg, #cfe6df, #f3dfbd);
    transform: rotate(-3deg);
    animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
    100% { transform: translateY(0) rotate(-6deg); }
}

@keyframes float2 {
    0% { transform: translateY(0) rotate(7deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0) rotate(7deg); }
}

@keyframes float3 {
    0% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-6px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(-3deg); }
}

.home-poem {
    max-width: 860px;
    margin: 0 auto 30px auto;
    padding: 26px 30px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 240, 210, 0.95), rgba(255, 248, 236, 0.86));
}

.home-poem p {
    margin: 0;
    font-size: 1.08rem;
    color: var(--text);
}

.home-paths {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.path-card {
    display: block;
    padding: 26px 22px;
    border-radius: 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.path-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-md);
}

.path-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 18px;
    font-size: 1.5rem;
    background: rgba(255, 240, 210, 0.72);
    color: var(--primary-dark);
}

.path-card h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.path-card p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.path-card-blue {
    background: linear-gradient(180deg, #fff0d2 0%, #e9cfa6 100%);
}

.path-card-peach {
    background: linear-gradient(180deg, #f3c19f 0%, #fff0d2 100%);
}

.path-card-green {
    background: linear-gradient(180deg, #d9e4cf 0%, #fff0d2 100%);
}

.path-card-yellow {
    background: linear-gradient(180deg, #f1c875 0%, #fff0d2 100%);
}

.home-ambience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.ambience-panel {
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 240, 210, 0.92), rgba(231, 199, 147, 0.72));
}

.ambience-panel p:last-child {
    margin-bottom: 0;
}

/* PAGES DE CONTENU */

.content-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    margin: 26px 0 24px 0;
}

.content-intro-text {
    padding: 24px 28px;
    border-radius: 28px;
}

.content-intro-text p {
    margin: 0;
    font-size: 1.04rem;
    color: var(--text);
}

.content-intro-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    padding: 18px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--secondary-soft) 0%, var(--surface-strong) 100%);
    border: 1px solid rgba(163, 58, 29, 0.20);
    box-shadow: var(--shadow-sm);
}

.content-intro-badge span {
    font-weight: 800;
    color: var(--primary-dark);
    white-space: nowrap;
}

.content-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 24px;
}

.editorial-card {
    padding: 28px;
    border-radius: 30px;
}

.editorial-card h2 {
    margin-bottom: 12px;
}

.editorial-card p:last-child,
.editorial-card ul:last-child {
    margin-bottom: 0;
}

.editorial-card-soft {
    background: linear-gradient(180deg, #fff0d2 0%, #f4d9ad 100%);
}

.editorial-card-accent {
    background: linear-gradient(180deg, #f1d38a 0%, #fff0d2 100%);
}

.content-highlight-band {
    margin-bottom: 24px;
    padding: 30px 34px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(163, 58, 29, 0.16) 0%, rgba(212, 147, 22, 0.26) 100%);
    border: 1px solid rgba(80, 38, 15, 0.16);
    box-shadow: var(--shadow-sm);
}

.highlight-band-text {
    max-width: 760px;
}

.highlight-band-text h2 {
    margin-bottom: 10px;
}

.highlight-band-text p {
    margin-bottom: 0;
    color: var(--text);
}

.mini-facts {
    display: grid;
    gap: 14px;
}

.mini-fact {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 240, 210, 0.82);
    border: 1px solid var(--line);
}

.mini-fact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 0.92rem;
}

.mini-fact span {
    color: var(--text);
}

/* VIDÉOS */

.video-block {
    margin: 40px auto;
    padding: 28px;
    max-width: 900px;
    border-radius: 30px;
}

.video-block h2 {
    margin-bottom: 16px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 22px;
    overflow: hidden;
    background: #1f1109;
    box-shadow: var(--shadow-sm);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* PAGE CONTACT */

.contact-page {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    gap: 24px;
    margin-top: 28px;
}

.contact-card {
    padding: 28px;
    border-radius: 30px;
}

.contact-card h2 {
    margin-bottom: 16px;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff8ee;
    font-size: 1rem;
    color: var(--text);
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(163, 58, 29, 0.42);
    box-shadow: 0 0 0 4px rgba(163, 58, 29, 0.10);
    background: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-form button {
    align-self: flex-start;
    min-width: 170px;
    min-height: 50px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-phone {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.form-success,
.form-error {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-success {
    background: #dcefe2;
    color: #225f3f;
    border: 1px solid #a8d4b8;
}

.form-error {
    background: #f7ddd4;
    color: #8f2e1d;
    border: 1px solid #e5a899;
}

.honeypot {
    display: none;
}

/* PAGE TARIFS */

.tarifs-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.tarif-panel {
    padding: 28px;
    border-radius: 30px;
}

.tarif-panel-wide {
    grid-column: 1 / -1;
}

.tarif-panel-head {
    margin-bottom: 18px;
}

.tarif-panel-head h2 {
    margin-bottom: 8px;
}

.tarif-note {
    margin-bottom: 0;
    color: var(--text-soft);
}

.tarif-lines {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 240, 210, 0.78);
    border: 1px solid var(--line);
}

.tarif-row strong {
    white-space: nowrap;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.tarif-row-soft {
    background: linear-gradient(180deg, #fff0d2 0%, #f4d9ad 100%);
}

.tarif-desc {
    margin-bottom: 0;
    color: var(--text);
}

.tarif-feature-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.tarif-feature {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(163, 58, 29, 0.09);
    border: 1px solid rgba(163, 58, 29, 0.15);
    color: var(--text);
}

.tarif-panel-conditions {
    background: linear-gradient(180deg, #fff0d2 0%, #ead0a2 100%);
}

.tarif-conditions p:last-child {
    margin-bottom: 0;
}
/* BLOC ARTISTE (photo + texte) */

.home-artist {
    margin: 40px 0;
}

.home-artist-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: center;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 240, 210, 0.92), rgba(231, 199, 147, 0.75));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.home-artist-photo img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.home-artist-text p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text);
}
/* PAGE SPECTACLES : blocs simplifiés */

.spectacle-list {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.spectacle-card {
    padding: 30px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.spectacle-card h2 {
    margin-bottom: 14px;
}

.spectacle-card h3 {
    margin-top: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.spectacle-card ul {
    margin-bottom: 18px;
}

.spectacle-card li {
    margin-bottom: 8px;
}

.spectacle-note {
    margin-top: 18px;
    margin-bottom: 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(163, 58, 29, 0.09);
    border: 1px solid rgba(163, 58, 29, 0.14);
}

.spectacle-card-soft {
    background: linear-gradient(180deg, #fff0d2 0%, #ead0a2 100%);
}
.spectacle-detail-card {
    max-width: 900px;
    margin: 28px auto;
    padding: 32px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.spectacle-detail-card p {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.spectacle-detail-card p:last-child {
    margin-bottom: 0;
}

.back-link {
    max-width: 900px;
    margin: 20px auto 0 auto;
}

.back-link a {
    font-weight: 800;
    color: var(--primary-dark);
}
.spectacle-links a,
.spectacle-note a {
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.spectacle-links a:hover,
.spectacle-note a:hover {
    color: var(--primary);
}
.spectacle-inline-video {
    margin-top: 22px;
}
.home-image-wrapper {
    margin-top: 60px;
    text-align: center;
}

.home-image {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}
.spectacle-image {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 24px auto;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}
.video-small {
    max-width: 520px;
    margin: 30px auto;
    opacity: 0.85;
}
.spectacle-video-small {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.82;
}
.spectacle-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.spectacle-gallery img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}
.spectacle-gallery {
    max-width: 900px;
    margin: 24px auto 34px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spectacle-gallery img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}
.home-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    align-items: center;
}

.home-media-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.home-media-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.home-media-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}