

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}


.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/user/themes/custom/images/facade-cote-jardin.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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


.button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid;
    text-align: center;
    line-height: 1.4;
}

.button.primary {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

.button.primary:hover {
    background-color: #5a6fd8;
    border-color: #5a6fd8;
    transform: translateY(-2px);
}

.button.secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.button.secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-2px);
}


.content-section, .region-section, .city-section {
    background: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.content-section .button, .region-section .button, .city-section .button {
    display: block;
    margin: 1.5rem auto;
    width: fit-content;
    min-width: 200px;
}

.content-section h2, .region-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: center;
}

.location-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.location-info h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.description-section h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.description-section p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}


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

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.02);
}


.region-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.region-section h2 {
    color: white;
}

.region-section .button {
    background-color: white;
    color: #667eea;
    border-color: white;
}

.region-section .button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}


.city-section h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.city-section p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.city-section .button {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

.city-section .button:hover {
    background-color: #5a6fd8;
    border-color: #5a6fd8;
    transform: translateY(-2px);
}


.rooms-intro {
    margin-bottom: 2rem;
}

.rooms-intro p {
    margin-bottom: 1rem;
    text-align: justify;
}

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

.room-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.room-type h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.room-type ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.room-type li {
    margin-bottom: 0.5rem;
}

.room-image {
    margin-bottom: 1rem;
}

.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.activity-category {
    margin-bottom: 2rem;
}

.activity-category h4 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.activity-category ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.activity-category li {
    margin-bottom: 0.5rem;
}


.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method a {
    color: #667eea;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

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

.reservation-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.reservation-option h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reservation-option p {
    margin-bottom: 1.5rem;
}

.location-features ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.location-features li {
    margin-bottom: 0.5rem;
}


.restauration-intro {
    margin-bottom: 2rem;
    text-align: justify;
}

.specialties {
    margin: 3rem 0;
}

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

.specialty-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    text-align: center;
}

.specialty-item h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.recipes-section {
    margin: 3rem 0;
    text-align: center;
}

.recipe-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


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

.contact-method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #667eea;
}

.contact-method h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.devis-info {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.devis-info ul {
    list-style: none;
    padding-left: 0;
}

.devis-info li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.devis-info li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tarifs-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.tarifs-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.tarifs-info ul {
    list-style: none;
    padding-left: 0;
}

.tarifs-info li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tarifs-info li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}


.recipe-intro {
    margin-bottom: 2rem;
    text-align: justify;
}

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

.ingredients, .preparation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.ingredients h3, .preparation h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.recipe-tips {
    margin: 2rem 0;
    padding: 2rem;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.recipe-tips h3 {
    color: #2196F3;
    margin-bottom: 1rem;
}


.agenda-intro {
    margin-bottom: 2rem;
}


.events-gallery, .rooms-gallery, .specialties-gallery, .attractions-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
}

.gallery-caption h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.agenda-intro p {
    text-align: justify;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.event-category {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.event-category:hover {
    transform: translateY(-3px);
}

.event-category h3 {
    color: #667eea;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px 0 0 2px;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.event-item h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.event-date {
    color: #764ba2;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-item p:last-child {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.info-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.info-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.info-item h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-item p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.info-item .button {
    background-color: white;
    color: #667eea;
    border-color: white;
}

.info-item .button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.info-item .button.secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.info-item .button.secondary:hover {
    background-color: white;
    color: #667eea;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}


@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-section, .region-section, .city-section {
        padding: 2rem 1rem;
    }
}
