/* ========================================================
   HERO
   ======================================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

.slide.active { opacity: 1; }

@keyframes subtleZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom,
        rgba(10, 76, 86, 0.2) 0%,
        rgba(10, 76, 86, 0.5) 100%);
}

.hero h1 {
    position: relative;
    color: #faf3E0;
    font-size: 6rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 8px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========================================================
   INFO SECTION
   ======================================================== */
.info-section {
    background: linear-gradient(135deg, #D9A441 0%, #f4c467 100%);
    padding: 120px 12%;
    color: #0a4c56;
}

.info-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px; left: 0;
    width: 120px; height: 4px;
    background: linear-gradient(90deg, #0a4c56, #0d5f6d);
}

.info-section ul {
    list-style: none;
    border-left: 3px solid #0a4c56;
    padding-left: 40px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-section li {
    position: relative;
    padding-left: 10px;
    transition: transform 0.3s ease;
}

.info-section li:hover { transform: translateX(10px); }

.info-section li::before {
    content: '';
    position: absolute;
    left: -50px; top: 8px;
    width: 20px; height: 20px;
    background: linear-gradient(135deg, #0a4c56, #0d5f6d);
    border-radius: 50%;
}

.info-section li h3 {
    font-family: "Playfair Display", serif;
    color: #0a4c56;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-section li p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(10, 76, 86, 0.85);
}

/* ========================================================
   CAVE CONTAINER
   ======================================================== */
.cave-container {
    background-image: url('../img/heros/cave/vinCoeur.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ========================================================
   CAVE SECTIONS — alternance clair / sombre
   ======================================================== */
.cave-section { position: relative; }

.cave-light { background: rgba(250, 243, 224, 0.94); }
.cave-dark  { background: rgba(12, 8, 5, 0.91); }

/* ========================================================
   CAVE SECTION HEADER
   ======================================================== */
.cave-section-header { padding: 70px 10% 40px; }

.cave-header-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cave-label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
}

.cave-categorie {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
}

.cave-light .cave-categorie { color: #1a1208; }
.cave-dark  .cave-categorie { color: #faf3E0; }

.cave-divider {
    height: 2px;
    width: 50px;
    margin-top: 8px;
}

/* ========================================================
   CAVE LIST
   ======================================================== */
.cave-list {
    padding: 0 10% 70px;
    display: flex;
    flex-direction: column;
}

.cave-vin {
    display: flex;
    align-items: center;
    border-bottom: 1px solid;
    transition: background 0.2s ease;
}

.cave-light .cave-vin { border-color: rgba(26, 18, 8, 0.08); }
.cave-dark  .cave-vin { border-color: rgba(250, 243, 224, 0.07); }
.cave-light .cave-vin:hover { background: rgba(0,0,0,0.03); }
.cave-dark  .cave-vin:hover { background: rgba(255,255,255,0.03); }

.cave-vin-bar {
    width: 3px;
    align-self: stretch;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cave-vin:hover .cave-vin-bar { opacity: 1; }

.cave-vin-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cave-vin-nom {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
}

.cave-light .cave-vin-nom { color: #1a1208; }
.cave-dark  .cave-vin-nom { color: #faf3E0; }

.cave-vin-region {
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    font-style: italic;
}

.cave-light .cave-vin-region { color: #888; }
.cave-dark  .cave-vin-region { color: rgba(250, 243, 224, 0.4); }

.cave-vin-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 20px 24px;
    flex-shrink: 0;
}

.cave-vin-contenance {
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cave-light .cave-vin-contenance { color: #aaa; }
.cave-dark  .cave-vin-contenance { color: rgba(250, 243, 224, 0.3); }

.cave-vin-prix {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 900px) {
    .hero h1 { font-size: 4rem; }
    .info-section { padding: 90px 8%; }
    .cave-section-header { padding: 60px 6% 35px; }
    .cave-list { padding: 0 6% 60px; }
    .cave-categorie { font-size: 2.6rem; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; letter-spacing: 4px; }
    .info-section { padding: 70px 6%; }
    .info-section h2 { font-size: 2.3rem; }
    .info-section ul { padding-left: 20px; gap: 35px; }
    .info-section li::before { left: -28px; width: 16px; height: 16px; }
    .cave-container { background-attachment: scroll; }
    .cave-section-header { padding: 50px 5% 25px; }
    .cave-list { padding: 0 5% 50px; }
    .cave-categorie { font-size: 2rem; }
    .cave-vin-body { padding: 16px 12px; }
    .cave-vin-right { padding: 16px 12px; }
    .cave-vin-nom { font-size: 0.95rem; }
}

/* footer → voir footer.css */
