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

:root {
    --primary: #1a4d6f;
    --secondary: #e8f4f8;
    --accent: #ff6b35;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --header-height: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* HEADER STICKY */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    gap: 2rem;
}

.logo-section {
    display: flex;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
}

.header-contact a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.external-link {
    color: #3498db !important;
    font-weight: 500;
}

.external-link:hover {
    color: #2980b9 !important;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.cta-nav {
    background: var(--accent);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

/* hero et containers */
.hero {
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: var(--text-light);
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

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

.content-section {
    padding: 4rem 0;
}

/* homepage */
/* HERO SECTION */
.app_home .hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.85), rgba(26, 77, 111, 0.7)),
                url('../../ressources/images/0001.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

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

.app_home h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.rating {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.stars {
    color: #ffd700;
    margin-left: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* SECTIONS */

section {
    padding: 5rem 0;
    scroll-margin-top: var(--header-height);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* CHALET SECTION */
.chalet-details {
    background: var(--secondary);
}

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

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

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

/* TESTIMONIALS */
.testimonials {
    background: var(--secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

.testimonial-date {
    color: #999;
    font-size: 0.9rem;
}

/* PRICING */
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-table {
    margin: 1.5rem 0;
    text-align: left;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-amount {
    font-weight: bold;
    color: var(--accent);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

/* CONTACT */
.contact {
    background: linear-gradient(135deg, var(--primary), #2c5f7f);
    color: var(--text-light);
}

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

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
}

.contact-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.home-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.home-contact-item span {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.home-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-contact-item a:hover {
    color: var(--accent);
}


/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

/* page contact */

.app_contact .hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/vue1.webp');
    background-size: cover;
    background-position: center;
}

.app_contact .hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* CONTACT INFO */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item span {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

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

.info-highlight {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.info-highlight strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* FORMULAIRE */
.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-card h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--error);
    margin-left: 0.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 111, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    background: var(--accent);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* MESSAGES */
.alert {
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert.show {
    display: block;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* MAP */
.map-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.map-container h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), #d4e8f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    border: 2px dashed #bbb;
}


/* page le chalet */
/* PAGE HERO */
.app_chalet .hero{
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/00015.webp');
    background-size: cover;
    background-position: center;
}


.rating-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.9;
    color: #555;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-header {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--primary);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.amenity-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amenity-item span {
    font-size: 2rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), #2c5f7f);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

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

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

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

/* page about */
.app_about .hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/hotes.webp');
    background-size: cover;
    background-position:center;
}

/* HOSTS PRESENTATION */
.hosts-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.hosts-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.hosts-intro .subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
}

.hosts-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 3rem;
    margin: 3rem 0;
}

.hosts-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--secondary);
}

.hosts-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #2c5f7f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(26, 77, 111, 0.3);
}

.hosts-title h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hosts-title p {
    font-size: 1.1rem;
    color: #666;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: linear-gradient(135deg, var(--primary), #2c5f7f);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    color: var(--text-light);
}

.highlight-box .content-text strong {
    color: var(--accent);
}

/* STATION INFO */
.station-section {
    background: var(--secondary);
    padding: 4rem 0;
    margin-top: 4rem;
}

.station-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.station-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.station-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.station-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.station-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.station-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.feature-item span {
    font-size: 1.8rem;
}

.feature-item strong {
    color: var(--primary);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--secondary);
    border-radius: 50px;
    font-size: 1.1rem;
}

.contact-item span {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* page services */

.app_services .page-hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/00018.webp');
    background-size: cover;
    background-position: center;
}

.page-hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)),
                url('');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
}

.services-section {
    padding: 4rem 0;
}

.service-details {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.service-contact {
    background: var(--secondary);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 600;
}

.service-contact a {
    color: var(--primary);
    text-decoration: none;
}

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

.included-section {
    background: var(--secondary);
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.included-item p {
    color: #666;
    font-size: 0.95rem;
}

/* page tarifs */

.app_tarifs .page-hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/balcon.webp');
    background-size: cover;
}

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

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--primary);
}

/* page galerie */
/* FILTERS */

.app_galery .page-hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/isola7.webp');
    background-size: cover;
    background-position: center;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-item-category {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}


/* page avis */

.app_review .page-hero {
    background: linear-gradient(135deg, rgba(26, 77, 111, 0.95), rgba(26, 77, 111, 0.85)), url('../../ressources/images/isola0000.webp');
    background-size: cover;
    background-position: center;
}

.stats-section {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--secondary);
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 300px;
        height: 90vh;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    } 
    .station-content {
        grid-template-columns: 1fr;
    }
    .hosts-header {
        flex-direction: column;
        text-align: center;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .header-container {
        padding: 0.6rem 1rem;
    }
    section {
        padding: 3rem 0;
    }
    .hero {
        background-attachment: scroll;
    }
    .details-grid,
    .gallery-grid,
    .testimonials-grid,
    .pricing-tables,
    .services-grid,
    .contact-grid,
    .features-grid,
    .amenities-list,
    .image-gallery {
        grid-template-columns: 1fr;
    }
    .content-section {
        padding: 2rem 0;
    }
    .hosts-card {
        padding: 2rem 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .station-features {
        grid-template-columns: 1fr;
    }
    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-section {
    padding: 2rem 0;
    }
    .form-card {
        padding: 1.5rem;
    }
    .app_home .hero .hero-content p {
        display: none;
    }
}



/* Reset et Base pour .admin */
.admin {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #212529;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.admin * {
    box-sizing: border-box;
}

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

/* Header / Titre de page */
.admin h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

.admin h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
}

.admin h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

/* Boutons */
.admin .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.admin .btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.admin .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.admin .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.admin .btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.admin .btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.admin .btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

.admin .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.admin .btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.admin .btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

.admin .btn-warning:hover {
    background-color: #ffca2c;
    border-color: #ffc720;
}

.admin .btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.admin .btn-info:hover {
    background-color: #31d2f2;
    border-color: #25cff2;
}

.admin .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.admin .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

/* Groupes de boutons */
.admin .btn-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Tables */
.admin table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-collapse: collapse;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.admin table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #495057;
    vertical-align: bottom;
}

.admin table tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.15s ease-in-out;
}

.admin table tbody tr:hover {
    background-color: #f8f9fa;
}

.admin table td {
    padding: 0.75rem;
    vertical-align: middle;
}

.admin table td:last-child {
    text-align: right;
}

.admin table .actions {
    white-space: nowrap;
}

.admin table .actions a,
.admin table .actions button {
    margin-left: 0.5rem;
}

/* Table responsive */
.admin .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Formulaires */
.admin form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.admin .form-group {
    margin-bottom: 1rem;
}

.admin label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #212529;
}

.admin label.required::after {
    content: ' *';
    color: #dc3545;
}

.admin input[type="text"],
.admin input[type="email"],
.admin input[type="password"],
.admin input[type="number"],
.admin input[type="date"],
.admin input[type="time"],
.admin input[type="datetime-local"],
.admin input[type="url"],
.admin input[type="tel"],
.admin select,
.admin textarea {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.admin input[type="text"]:focus,
.admin input[type="email"]:focus,
.admin input[type="password"]:focus,
.admin input[type="number"]:focus,
.admin input[type="date"]:focus,
.admin input[type="time"]:focus,
.admin input[type="datetime-local"]:focus,
.admin input[type="url"]:focus,
.admin input[type="tel"]:focus,
.admin select:focus,
.admin textarea:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.admin textarea {
    resize: vertical;
    min-height: 100px;
}

.admin input[type="checkbox"],
.admin input[type="radio"] {
    margin-right: 0.5rem;
}

.admin .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.admin .form-check input {
    margin-right: 0.5rem;
}

/* Messages flash / Alerts */
.admin .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.admin .alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.admin .alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.admin .alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.admin .alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

/* Cards */
.admin .card {
    background-color: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.admin .card-header {
    padding: 0.75rem 1.25rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.admin .card-body {
    padding: 1.25rem;
}

.admin .card-footer {
    padding: 0.75rem 1.25rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Badges */
.admin .badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.admin .badge-primary {
    background-color: #0d6efd;
}

.admin .badge-success {
    background-color: #198754;
}

.admin .badge-danger {
    background-color: #dc3545;
}

.admin .badge-warning {
    background-color: #ffc107;
    color: #000;
}

.admin .badge-info {
    background-color: #0dcaf0;
    color: #000;
}

.admin .badge-secondary {
    background-color: #6c757d;
}

/* Pagination */
.admin .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    gap: 0.25rem;
}

.admin .pagination li {
    display: inline-block;
}

.admin .pagination a,
.admin .pagination span {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
}

.admin .pagination a:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.admin .pagination .active span {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.admin .pagination .disabled span {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Breadcrumb */
.admin .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.375rem;
}

.admin .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: #6c757d;
}

.admin .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
}

.admin .breadcrumb-item a:hover {
    text-decoration: underline;
}

.admin .breadcrumb-item.active {
    color: #6c757d;
}

/* Navigation */
.admin nav {
    background-color: #343a40;
    padding: 1rem;
    margin-bottom: 2rem;
}

.admin nav .main {
    display: flex;
    justify-content: space-between;
}

.admin nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.admin nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.admin nav a:hover {
    color: #fff;
}

/* Utilities */
.admin .text-center {
    text-align: center !important;
}

.admin .text-right {
    text-align: right !important;
}

.admin .text-left {
    text-align: left !important;
}

.admin .mt-1 { margin-top: 0.25rem !important; }
.admin .mt-2 { margin-top: 0.5rem !important; }
.admin .mt-3 { margin-top: 1rem !important; }
.admin .mt-4 { margin-top: 1.5rem !important; }
.admin .mt-5 { margin-top: 3rem !important; }

.admin .mb-1 { margin-bottom: 0.25rem !important; }
.admin .mb-2 { margin-bottom: 0.5rem !important; }
.admin .mb-3 { margin-bottom: 1rem !important; }
.admin .mb-4 { margin-bottom: 1.5rem !important; }
.admin .mb-5 { margin-bottom: 3rem !important; }

.admin .p-1 { padding: 0.25rem !important; }
.admin .p-2 { padding: 0.5rem !important; }
.admin .p-3 { padding: 1rem !important; }
.admin .p-4 { padding: 1.5rem !important; }
.admin .p-5 { padding: 3rem !important; }

.admin .d-flex {
    display: flex !important;
}

.admin .justify-content-between {
    justify-content: space-between !important;
}

.admin .align-items-center {
    align-items: center !important;
}

.admin .gap-2 {
    gap: 0.5rem !important;
}

.admin .w-100 {
    width: 100% !important;
}

/* Erreurs de formulaire */
.admin .invalid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.admin .is-invalid {
    border-color: #dc3545;
}

.admin .is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.admin form img {
    max-width: 80vw;
    max-height: 80vh;
}

.admin .photo-preview {
    max-width:30vw;
    max-height:30vh;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* Responsive */
@media (max-width: 768px) {
    .admin .container {
        padding: 10px;
    }
    
    .admin form {
        padding: 1rem;
    }
    
    .admin table {
        font-size: 0.875rem;
    }
    
    .admin table thead {
        display: none;
    }
    
    .admin table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 0.375rem;
    }
    
    .admin table td {
        display: block;
        text-align: right;
        padding: 0.5rem;
        border-bottom: 1px solid #dee2e6;
    }
    
    .admin table td:last-child {
        border-bottom: none;
    }
    
    .admin table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
    }
    
    .admin .btn-group {
        flex-direction: column;
    }
    .row {
        display: block;
    }
}