@charset "UTF-8";
/* CSS Document */
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

        /* Colors */
        :root {
    --primary: #e8ab96;
    --secondary: #edc9bd;
    --overlay-color: #dd7552;
}

/* Bouton remontée section - flèche personnalisée centrée */
.scroll-up-button {
    position: fixed;
    bottom: 6rem; /* Au-dessus de WhatsApp */
    right: 1.5rem; /* Même position que WhatsApp */
    z-index: 1001;
    width: 3.5rem; /* Même largeur que WhatsApp */
    display: flex;
    justify-content: center; /* Centrage horizontal */
}

.scroll-up-button button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #e7aa96;
    padding: 0;
}

.scroll-up-button button:hover {
    transform: scale(1.1);
}

.scroll-up-button svg {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg); /* Rotation pour pointer vers le haut */
    fill: currentColor;
}

/* WhatsApp Button - en bas à droite */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
}
        /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 50;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

       .logo-placeholder {
    width: 16rem;
    height: auto; /* hauteur auto */
    background: none; /* plus besoin de gris */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder img {
    max-width: 100%;
    height: auto;
}


        .nav-desktop {
            display: none;
            gap: 2rem;
        }

        .nav-desktop .nav-link {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-desktop .nav-link:hover,
        .nav-desktop .nav-link.active {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger {
            display: block;
            width: 1.5rem;
            height: 0.125rem;
            background: #374151;
            position: relative;
            transition: 0.3s;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 0.125rem;
            background: #374151;
            transition: 0.3s;
        }

        .hamburger::before {
            top: -0.5rem;
        }

        .hamburger::after {
            top: 0.5rem;
        }

        .hamburger.active {
            background: transparent;
        }

        .hamburger.active::before {
            transform: rotate(45deg);
            top: 0;
        }

        .hamburger.active::after {
            transform: rotate(-45deg);
            top: 0;
        }

        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 0.5rem 1rem;
        }

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

        .mobile-nav-link {
            display: block;
            padding: 0.5rem 0;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--primary);
        }

        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
        }

    /* Hero Section */
.hero {
    position: relative;
    height: 75vh; /* plus petit sur mobile */
    overflow: visible; /* Changer hidden en visible */
}

@media (min-width: 768px) {
    .hero {
        height: 100vh;
        max-height: 700px;
        overflow: visible; /* Ajouter aussi sur desktop */
    }
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden; /* Garder hidden ici pour les images */
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease, filter 1s ease;
    filter: blur(10px);
}

.hero-slide.active {
    opacity: 1;
    filter: blur(0);
}
        .booking-form {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) translateY(50%);
            z-index: 9999 !important;
             background: transparent; /* ← CHANGÉ : transparent au lieu de rgba(...) */
    padding: 0; /* ← CHANGÉ : 0 au lieu de 1.5rem */
    box-shadow: none; /* ← CHANGÉ : none au lieu de box-shadow */
    width: 18rem;
}

       .booking-form h2 {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.25rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.625rem;
            border: 1px solid #d1d5db;
            font-size: 0.875rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .btn-primary {
            width: 100%;
            background-color: var(--primary);
            color: white;
            padding: 0.625rem 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        /* Hotel Section */
        .hotel-section {
            padding-top: 12rem;
            padding-bottom: 2rem;
            background: white;
        }

        .hotel-content {
            max-width: 64rem;
            margin: 0 auto;
            text-align: center;
        }

        .logo-section {
            margin-bottom: 2rem;
        }

.logo-placeholder-large {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder-large img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .logo-placeholder-large {
        margin: 0 auto 4rem; /* Plus d'espace en bas sur mobile */
    }
}

.hotel-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.divider {
    width: 4rem;
    height: 0.125rem;
    background-color: var(--primary);
    margin: 0 auto 1.5rem;
}

.hotel-description {
    color: #6b7280;
    line-height: 1.625;
    max-width: 32rem; /* Réduit pour mobile */
    margin: 0 auto 1.5rem;
}

.hotel-images {
    display: grid;
    grid-template-columns: 100%; 
    gap: 0.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.hotel-image {
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-image:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

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

@media (min-width: 768px) {
    .hotel-description {
        max-width: 100%; /* Étendre sur toute la largeur comme les amenities */
    }
    
    .hotel-images {
        grid-template-columns: 33.333% 33.333% 33.333%;
        gap: 1rem;
        max-width: 100%; /* Aligner avec les amenities */
    }
    
    .hotel-image img {
        height: 14rem;
    }
}
/* Amenities Section */
.amenities-section {
    padding: 1rem 0;
    background: white;
	
}

.amenities-grid {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    gap: 0.25rem; /* Réduit pour mobile */
	justify-content: center;
	margin-left: 10px;
	margin-right: 10px;
	
}

.amenity-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #e7aa96;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 60% 60%; /* Taille responsive */
    background-repeat: no-repeat;
    background-position: center;
}

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

.amenity-overlay {
    position: absolute;
    inset: 0;
    background-color: #dd7453;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-overlay {
    opacity: 1;
}

.amenity-overlay span {
    color: white;
    font-weight: 500;
    text-align: center;
    font-size: 0.75rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
        gap: 1rem;
		justify-content: center;
    }
    
    .amenity-overlay span {
        font-size: 0.875rem;
    }
    
    .amenity-item {
        background-size: 70% 70%; /* Responsive en pourcentage */
    }
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 0;
    background-color: var(--secondary);
    color: white;
}

.room {
    margin-bottom: 4rem;
}

.room:last-child {
    margin-bottom: 0;
}

.room-content-mobile {
    display: block;
}

.room-content-desktop {
    display: none;
}

.room-text h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-style: italic;
}

.room-text p {
    margin-bottom: 1.5rem;
}

.expand-btn {
    background: white;
    color: #1f2937;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expand-btn:hover {
    background-color: #f3f4f6;
}

.expand-icon {
    transition: transform 0.3s ease;
}

.room-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    background: white;
    color: black;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 calc(50vw - 50% + 1.5rem);
}

.room-details.expanded {
    max-height: 2000px;
    opacity: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* DESKTOP UNIQUEMENT : marges pour le texte */
@media (min-width: 768px) {
    .room-details.expanded {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.room-info-grid {
    display: grid;
    grid-template-columns: 33.333% 33.333% 33.333%;  
    gap: 0.75rem; /* Réduire le gap sur mobile */
    margin-bottom: 2rem;
	margin-right: 1rem;
}

/* Desktop : gap plus grand */
@media (min-width: 768px) {
    .room-info-grid {
        gap: 1rem;
    }
}

.room-info-item {
    background-color: #f3f4f6;
    padding: 1rem;
    text-align: center;
}

.room-info-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.room-info-item p {
    color: #1f2937;
    font-weight: bold;
    font-size: 1.25rem;
	
}

.room-full-description {
    margin-bottom: 2rem;
	text-align: justify;
}

.room-full-description h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.room-full-description p {
    color: #374151;
    line-height: 1.625;
}

.room-slider {
    position: relative;
    margin-top: 1.5rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 16rem;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.slider-btn.prev {
    left: 0.5rem;
}

.slider-btn.next {
    right: 0.5rem;
}

@media (min-width: 768px) {
    .room-content-mobile {
        display: none;
    }
    
    .room-content-desktop {
        display: block;
    }
    
    .room-grid {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 2rem;
        align-items: center;
        margin: 0 4rem; /* MARGES GAUCHE/DROITE SUR DESKTOP */
    }
    
    .room-details {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}


/* Restaurant Section */
.restaurant-section {
	
    background: #e8ab96;
    padding: 2rem 0 2rem 0;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 80px; /* Vraie morsure vers le haut */
    margin-bottom: -50px; /* Vraie morsure vers le bas */
    z-index: 15;
}

.restaurant-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.restaurant-icon {
    margin-bottom: -5rem;
    transform: translateY(-100px); /* Tajine qui sort vraiment */
}

.restaurant-icon svg {
    width: 120px;
    height: 120px;
    fill: #333333; /* REMPLI en noir */
    stroke: none; /* PAS de contours */
}

.restaurant-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: -1rem;
    color: white;
}

.restaurant-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white;
}

.restaurant-btn {
    display: inline-block;
    background: #e8cabf;
    color: #333333;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(50px); /* Bouton qui sort vraiment */
    position: relative;
    z-index: 25;
}

@media (max-width: 767px) {
    .restaurant-section {
        margin-top: 80px;
        margin-bottom: -35px;
		padding: 1rem 0 -5rem 0; /* Réduire le padding vertical */
    }
	
	 .restaurant-section h2 {
        white-space: nowrap;
        font-size: 8vw; /* 6% de la largeur de l'écran */
        width: 100%;
        text-align: center;
    }
    
    .restaurant-icon {
        transform: translateY(-105px);
    }
    
    .restaurant-icon svg {
        width: 120px;
        height: 120px;
    }
    
    .restaurant-btn {

        transform: translateY(45px);
    }
}
    /* Gallery Section */
.gallery-section {
	margin-top: 1rem;
    padding: 4rem 0;
    background: white;
}

.gallery-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

/* MOBILE : 2 colonnes avec hauteurs variables */
.gallery-grid {
    display: grid;
    grid-template-columns: 50% 50%; /* 2 colonnes */
    grid-auto-rows: 120px; /* Hauteur de base mobile */
    gap: 0.25rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.3s ease;
    /* Pas d'aspect-ratio fixe */
}

/* Classes masonry mobile simplifiées */
.gallery-item-2v {
    grid-row: span 3; /* 2 hauteurs sur mobile */
}

.gallery-item-2h {
    grid-column: span 1; /* 2 colonnes sur mobile */
}

.gallery-item-4 {
    grid-column: span 1; /* 2 colonnes sur mobile */
    grid-row: span 2; /* 2 hauteurs sur mobile */
}

.gallery-item:hover {
    opacity: 0.9;
}

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

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

/* Supprimer les boutons play */
.video-overlay {
    display: none !important;
}

.play-button {
    display: none !important;
}

/* DESKTOP : Masonry 4 colonnes */
@media (min-width: 768px) {
	
	.gallery-section {
	margin-top: 4rem;
    padding: 4rem 0;
    background: white;
}
	
    .gallery-grid {
        grid-template-columns: 25% 25% 25% 25%; /* 4 colonnes */
        grid-auto-rows: 120px;
        height: 37.5rem;
    }
    
    .gallery-item {
        aspect-ratio: auto; /* Enlever les carrés sur desktop */
    }
    
    .gallery-item-2v {
        grid-row: span 2;
    }

    .gallery-item-2h {
        grid-column: span 2;
    }

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(231, 170, 150, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img, .modal-content video {
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.close:hover,
.close:focus {
    color: #f0f0f0;
    text-decoration: none;
    cursor: pointer;
}


        /* Discover Section */
        .discover-section {
            padding: 4rem 0;
            background-color: #e7aa96;
        }

 @media (min-width: 768px) {
            .discover-section {
				margin-top: 25rem;
                 padding-top: 2rem;
            }}
.discover-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.discover-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.discover-logo a:hover {
    transform: scale(1.05);
}

.discover-logo img {
    max-height: 60px;
    width: auto;
}
        .discover-section h2 {
            font-size: 1.875rem;
            font-weight: bold;
            text-align: center;
            color: #1f2937;
            margin-bottom: 3rem;
        }

        .discover-grid {
            display: grid;
            grid-template-columns: 50% 50%;
            gap: 1.5rem;
			justify-content: center;
			margin-left: 10px;
			margin-right: 10px;
        }

        .discover-item {
            cursor: pointer;
            transform: scale(1);
            transition: transform 0.3s ease;
            background: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

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

.discover-image-link {
    display: block;
    width: 100%;
    height: 8rem;
}

.discover-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .discover-image-link {
        height: 12rem;
    }
}

        .discover-item img {
            width: 100%;
            height: 8rem;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .discover-item:hover img {
            opacity: 0.9;
        }

        .discover-content {
            padding: 0.75rem;
        }
.discover-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

        .discover-content h3 {
            font-size: 0.875rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
            color: #1f2937;
            transition: color 0.3s ease;
        }

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

        .discover-content p {
            font-size: 0.75rem;
            color: #6b7280;
        }

        @media (min-width: 768px) {
            .discover-grid {
                grid-template-columns: 25% 25% 25% 25%;
            }
            
            .discover-item img {
                height: 12rem;
            }
            
            .discover-content {
                padding: 1rem;
            }
            
            .discover-content h3 {
                font-size: 1.125rem;
                margin-bottom: 0.5rem;
            }
            
            .discover-content p {
                font-size: 0.875rem;
            }
        }

       /* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: white;
}

.reviews-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

#reviews-container {
    /* Styles pour le conteneur Elfsight */
    max-width: 100%;
    margin: 0 auto;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.map-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.address-info {
    margin-top: 2rem;
    text-align: center;
}

.address-content {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.address-header svg {
    margin-right: 0.5rem;
    color: var(--primary);
}

.address-header span {
    font-weight: 600;
    color: #1f2937;
}

.address-content p {
    color: #6b7280;
}

        /* Footer */
        .footer {
            background-color: var(--secondary);
            color: black;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 100%;
            gap: 2rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: black;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: black;
        }

        .footer-section p {
            color: black;
            margin-bottom: 1rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            color: black;
        }

        .contact-item svg {
            margin-right: 0.5rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
            color: black;
        }

        .contact-item a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #374151;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #374151;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.3);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: black;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: 33.333% 33.333% 33.333%;
            }
        }

/* Cacher le lien Elfsight */
a[href*="elfsight.com"] {
    display: none !important;
}

.logalys-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

