/* Modern Enhancements */
:root {
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    background-color: #fcfcfc;
}

/* Glassmorphism Cards */
.card-modern,
.feature-item,
article,
.park-header,
.review-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover,
article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Floating Elements Container */
.floating-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-item {
    position: absolute;
    opacity: 0.6;
}

/* Typography Polish */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Section Transitions */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Overlay Polish */
.hero-section::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

/* Header - Styles Jaune permanent */
.site-header {
    background: #ffdb17 !important;
    /* Force le jaune */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo & Liens toujours sombres */
.site-header .logo-white {
    display: none !important;
}

.site-header .logo-dark {
    display: block !important;
}

.site-header a,
.site-header .nav-item a {
    color: #333 !important;
    font-weight: 500;
    text-shadow: none !important;
}

.site-header .btn-outline {
    border-color: #333 !important;
    color: #333 !important;
}

.site-header .btn-outline:hover {
    background: #333 !important;
    color: #ffdb17 !important;
    /* Texte jaune sur fond noir au survol */
}

/* Fix intersection with fixed header */
.page-header {
    margin-top: 100px;
    color: #fff !important;
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header p {
    color: #fff !important;
}

/* Leaflet Customizations */
.leaflet-popup-content {
    min-width: 200px !important;
}

/* Styled Lists for Content Areas */
.content ul,
.park-description ul,
article ul,
.guide-item ul,
.blog-item ul,
.faq-item ul {
    list-style: none;
    padding-left: 0;
}

.content ul li,
.park-description ul li,
article ul li,
.guide-item ul li,
.blog-item ul li,
.faq-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.content ul li:before,
.park-description ul li:before,
article ul li:before,
.guide-item ul li:before,
.blog-item ul li:before,
.faq-item ul li:before {
    content: "●";
    color: var(--primary-color, #007bff);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1em;
}

.content ol,
.park-description ol,
article ol,
.guide-item ol,
.blog-item ol,
.faq-item ol {
    padding-left: 1.5rem;
}

.content ol li,
.park-description ol li,
article ol li,
.guide-item ol li,
.blog-item ol li,
.faq-item ol li {
    margin-bottom: 0.5rem;
}