/* Styles spécifiques pour le Spot Nature */

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section Nature */
.nature-hero {
    height: 80vh;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 30%, #0f4c75 70%, #1e3a8a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.nature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(56, 161, 105, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(0, 242, 254, 0.2) 0%, transparent 50%);
    animation: sway 20s ease-in-out infinite;
}

.nature-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 Q35,20 25,30 Q15,20 25,10" fill="white" opacity="0.08"/><path d="M10,35 Q20,45 10,55 Q0,45 10,35" fill="white" opacity="0.05"/><circle cx="40" cy="15" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    animation: float 18s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(8px) rotate(2deg); }
}

@keyframes float {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    color: var(--text-light);
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 50%, #b2dfdb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4facfe, transparent);
    border-radius: 2px;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .location {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .location::before {
    content: '🌍';
    font-size: 1.1em;
}

.hero-content .cta-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #38a169 100%);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.4s ease;
}

.hero-content .cta-button:hover::before {
    left: 100%;
}

.hero-content .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.6);
}

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

.nature-hero .hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.nature-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nature-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #90EE90;
    font-weight: 300;
}

.nature-hero .hero-location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item.main {
    grid-row: span 2;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-normal);
    border: none;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.nature-main {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
}

.nature-forest {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.nature-path {
    background: linear-gradient(135deg, #8FBC8F 0%, #9ACD32 100%);
}

.nature-camping {
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 100%);
}

/* Description Section */
.description {
    padding: 4rem 0;
    background: var(--background-light);
}

.description-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.description-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--nature-color);
}

.description-text .intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.description-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.description-text .highlight {
    background: var(--gradient-nature);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 15px;
    font-style: italic;
    text-align: center;
}

/* Booking Card */
.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--nature-color);
}

.booking-info {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.new-badge {
    color: var(--nature-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.host-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 10px;
}

.host-avatar {
    width: 40px;
    height: 40px;
    background: var(--nature-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.full-width {
    width: 100%;
    text-align: center;
}

.btn-primary.full-width {
    width: 100%;
    text-align: center;
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--nature-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Access Section */
.access {
    padding: 4rem 0;
    background: var(--background-light);
}

.access-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.access-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.access-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--nature-color);
}

.access-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 4rem 0;
    background: white;
}

.experience-content {
    margin-top: 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.experience-item {
    background: linear-gradient(135deg, #f8fff8 0%, #f0fff0 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--nature-color);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.experience-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--nature-color);
}

.experience-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--gradient-nature);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

.btn-primary.large {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary.large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary.large {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary.large:hover {
    background: var(--text-light);
    color: var(--nature-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nature-hero .hero-title {
        font-size: 2rem;
    }
    
    .nature-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }
    
    .gallery-item.main {
        grid-row: span 1;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-card {
        position: static;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nature-hero {
        height: 50vh;
    }
    
    .nature-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-rows: repeat(4, 200px);
    }
    
    .feature-card, .access-item, .experience-item {
        padding: 1.5rem;
    }
}
