@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&display=swap');

:root {
    --cream: #f8f5dc;
    --dark-text: #2a2a2a;
    --light-text: #6a6a6a;
    --border-light: #e8e6e3;
    --accent: #8b7355;
    --dark2-text: #333333;
    --brown-text: #4a3728;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f5dc;
    color: var(--dark-text);
    line-height: 1.6;
    font-weight: 300;
}

.nav {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--brown-text);
}

.nav a {
    text-decoration: none;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent);
}

.location-text {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 300px 1fr 400px;
    gap: 4rem;
    align-items: start;
}

/* sidebar section */
.sidebar {
    padding-top: 2rem;
}

.sidebar-section {
    margin-bottom: 3rem;
}

.sidebar-title {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--brown-text);
}
         
.sidebar-item {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar a {
    text-decoration: none;
}

.sidebar-item:hover {
    color: var(--dark-text);
}

.main-content {
    text-align: center;
    padding-top: 2rem;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--brown-text);
}

.main-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.main-image {
    width: 200px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.description {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 32px;
    color: var(--dark-text);
    text-align: justify;
    letter-spacing: 0.02em;
    padding: 1rem;
    margin-top: 0;
    max-width: 350px;
    padding-top: 13rem;
}

/* Categories Section */
.categories {
    margin-top: 4rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-row:hover {
    background: rgba(255,255,255,0.5);
    transform: translateX(10px);
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown-text);
}

.category-links {
    display: flex;
    gap: 3rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-links span {
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-links span:hover {
    color: var(--dark-text);
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-info {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--light-text);
}

.map-title {
    font-weight: 500;
    color: var(--brown-text);
    margin-bottom: 1rem;
}

.time-list {
    margin-top: 2rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.time-duration {
    font-weight: 500;
}

.map-placeholder {
    width: 400px;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 400px;
    height: 600px;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
}


/* Footer Section */
.footer {
    margin-top: 6rem;
    padding: 3rem 0 2rem 0;
    border-top: 1px solid var(--border-light);
    background: var(--cream);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--brown-text);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--light-text);
    word-wrap: break-word;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.75rem;
    color: var(--light-text);
    letter-spacing: 1px;
}

/* Éviter le débordement */
.footer-section {
    min-width: 0;
    overflow-wrap: break-word;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablettes et écrans moyens */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .description {
        max-width: 100%;
        padding-top: 2rem;
        text-align: center;
    }

    .map-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-links {
        gap: 1.5rem;
    }
}

/* Tablettes et mobiles */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-left, .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-center {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .sidebar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .sidebar-section {
        margin-bottom: 2rem;
        text-align: center;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .main-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .main-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .description {
        padding: 0.5rem;
        text-align: center;
        font-size: 14px;
        line-height: 28px;
    }

    .category-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .category-row:hover {
        transform: none;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.75rem;
    }

    .map-placeholder {
        height: 300px;
        padding: 0 10px;
    }

    .time-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Footer responsive pour tablettes */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Petits écrans */
@media (max-width: 580px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem 0;
        margin-top: 4rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        font-size: 0.7rem;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem 0;
        margin-top: 3rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section li {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.65rem;
    }
}
@media (max-width: 768px) {
    .map-placeholder {
        height: 600px; /* Réduit la hauteur sur mobile */
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 300px; /* Encore plus petit sur très petits écrans */
        margin-bottom: 1rem;
    }
}



/* CSS pour la bannière cookies */
/* CSS pour la bannière cookies */
/* CSS pour la bannière cookies */
.cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: rgba(74, 55, 40, 0.92);
   backdrop-filter: blur(15px);
   color: var(--cream);
   padding: 1.5rem;
   z-index: 10000;
   box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.25);
   border-top: 1px solid rgba(248, 245, 220, 0.2);
   
   /* Animation */
   transform: translateY(100%);
   opacity: 0;
   transition: all 0.3s ease;
}

.cookie-content {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 2rem;
   flex-wrap: wrap;
}

.cookie-text {
   flex: 1;
   min-width: 300px;
}

.cookie-text p {
   margin: 0;
   font-size: 1.1rem;
   line-height: 1.6;
   font-family: 'Cormorant Garamond', serif;
   color: var(--cream);
   font-weight: 400;
}

.cookie-link {
   color: var(--cream);
   text-decoration: underline;
   transition: opacity 0.3s ease;
   font-weight: 500;
}

.cookie-link:hover {
   opacity: 0.8;
}

.cookie-buttons {
   display: flex;
   gap: 1.2rem;
   flex-shrink: 0;
}

.cookie-btn {
   padding: 0.8rem 2rem;
   border: 2px solid var(--cream);
   font-family: 'Cormorant Garamond', serif;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   border-radius: 30px;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   min-width: 130px;
}

.cookie-btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn.accept {
   background: var(--accent);
   color: var(--cream);
   border-color: var(--accent);
}

.cookie-btn.accept:hover {
   background: #a08968;
   border-color: #a08968;
}

.cookie-btn.refuse {
   background: transparent;
   color: var(--cream);
   border-color: var(--cream);
}

.cookie-btn.refuse:hover {
   background: var(--cream);
   color: var(--brown-text);
   border-color: var(--cream);
}

/* Responsive Design */
@media (max-width: 768px) {
   .cookie-banner {
       padding: 1.2rem;
   }
   
   .cookie-content {
       flex-direction: column;
       gap: 1.5rem;
       text-align: center;
   }
   
   .cookie-text {
       min-width: auto;
   }
   
   .cookie-text p {
       font-size: 1rem;
   }
   
   .cookie-buttons {
       justify-content: center;
       width: 100%;
       gap: 1rem;
   }
   
   .cookie-btn {
       padding: 0.7rem 1.5rem;
       font-size: 0.9rem;
       min-width: 110px;
   }
}

@media (max-width: 480px) {
   .cookie-buttons {
       flex-direction: column;
       gap: 1rem;
       align-items: center;
   }
   
   .cookie-btn {
       width: 220px;
       padding: 0.8rem 1rem;
   }
}