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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

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


.header-content {
            display: flex !important;
            align-items: center !important;
            flex-direction: row !important;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .logo {
            height: 95px !important;
            width: auto !important;
            flex-shrink: 0 !important;
            display: block !important;
        }

        .header-title {
            font-size: 1.4rem !important;
            font-weight: bold !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            display: inline-block !important;
            margin: 0 !important;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: #2c5530;
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section rgba(44, 85, 48, 0.8), rgba(76, 175, 80, 0.6)*/
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(88, 88, 88, 0.8), rgba(102, 102, 102, 0.6)),
                        url('cornimont/backOne.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            width:auto;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: #4CAF50;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .btn:hover {
            background: #45a049;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Page Sections */
        .page {
            display: none;
            min-height: 100vh;
            padding: 100px 0 50px;
        }

        .page.active {
            display: block;
        }

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

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 3rem;
        }

        /* Photos & Description Page */
        .description-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .description-text h3 {
            color: #2c5530;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .description-text p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

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

        .feature {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2rem;
            color: #4CAF50;
            margin-bottom: 1rem;
        }

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

        .gallery img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

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

        /* Reviews Section */
        .reviews {
            background: #f8f9fa;
            padding: 3rem 0;
            border-radius: 15px;
            margin: 3rem 0;
        }

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

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .stars {
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* Location Page */
        .map-container {
            height: 700px;
            background: #e9ecef;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #666;
            margin: 2rem 0;
        }

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

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

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-card h4 {
            color: #2c5530;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Agenda Page */
        .booking-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 3rem 0;
        }

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

        .calendar h4 {
            text-align: center;
            margin-bottom: 1rem;
            color: #2c5530;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            text-align: center;
        }

        .calendar-day {
            padding: 10px 5px;
            border: 1px solid #e9ecef;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-day:hover {
            background: #e8f5e8;
        }

        .calendar-day.available {
            background: #d4edda;
            color: #155724;
        }

        .calendar-day.booked {
            background: #f8d7da;
            color: #721c24;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #2c5530;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #4CAF50;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .description-section {
                grid-template-columns: 1fr;
            }

            .booking-section {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .gallery {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
 /*-------------------------------------  Style tabeau Tarif -------------------------------*/       
        .containerTarif {
            /*background: rgba(255, 255, 255, 0.95);
            
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
            max-width: 1280px;
            width: 100%;
        }

        h1Tarif {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.5rem;
            font-weight: 300;
        }

        .table-container {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
        }

        th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        th:first-child {
            text-align: left;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        td {
            padding: 18px 15px;
            text-align: center;
            border-bottom: 1px solid #ecf0f1;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        td:first-child {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            font-weight: 600;
            text-align: left;
            color: #2c3e50;
            border-right: 3px solid #667eea;
        }

        .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #27ae60;
        }

        .season-haute {
            background: linear-gradient(135deg, #f7fe2e 0%, #f7fe2e 100%);
        }

        .season-tres-haute {
            background: linear-gradient(135deg, #ff8000 0%, #ff8000 100%);
            color: white;
        }

        .season-moyenne {
            background: linear-gradient(135deg, #82fa58 0%, #82fa58 100%);
            color: white;
        }

        .season-basse {
            background: linear-gradient(135deg, #2eccfa 0%, #2eccfa 100%);
            color: white;
        }

        tr:hover td {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-cards {
            display: none;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
                margin: 10px;
            }

            h1Tarif {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .table-container {
                display: none;
            }

            .mobile-cards {
                display: block;
            }

            .period-section {
                margin-bottom: 25px;
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .period-header {
                background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                color: white;
                padding: 15px;
                text-align: center;
                font-weight: 600;
                font-size: 1.1rem;
            }

            .season-card {
                padding: 15px;
                border-bottom: 1px solid #ecf0f1;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .season-card:last-child {
                border-bottom: none;
            }

            .season-name {
                font-weight: 600;
                color: #2c3e50;
            }

            .season-price {
                font-size: 1.2rem;
                font-weight: 700;
                color: #27ae60;
            }

            .season-card.tres-haute {
                background: linear-gradient(135deg, #ff8000 0%, #ff8000 100%);
                color: white;
            }

            .season-card.tres-haute .season-name,
            .season-card.tres-haute .season-price {
                color: white;
            }

            .season-card.haute {
                background: linear-gradient(135deg, #f7fe2e 0%, #f7fe2e 100%);
            }

            .season-card.moyenne {
                background: linear-gradient(135deg, #82fa58 0%, #82fa58 100%);
                color: white;
            }

            .season-card.moyenne .season-name,
            .season-card.moyenne .season-price {
                color: white;
            }

            .season-card.basse {
                background: linear-gradient(135deg, #2eccfa 0%, #2eccfa 100%);
                color: white;
            }

            .season-card.basse .season-name,
            .season-card.basse .season-price {
                color: white;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
                margin: 5px;
            }

            h1Tarif {
                font-size: 1.5rem;
            }

            .period-header {
                padding: 12px;
                font-size: 1rem;
            }

            .season-card {
                padding: 12px;
            }

            .season-name {
                font-size: 0.9rem;
            }

            .season-price {
                font-size: 1.1rem;
            }
        }

        .note {
            margin-top: 20px;
            text-align: center;
            color: #7f8c8d;
            font-style: italic;
        }        
        
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px 20px;
            font-family: 'Arial', sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #3498db;
            border-bottom: 2px solid #3498db;
            padding-bottom: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-contact-icon {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            fill: #3498db;
        }

        .footer-contact-link {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-link:hover {
            color: #3498db;
        }

        .footer-social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .footer-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #34495e;
            color: #ecf0f1;
            text-decoration: none;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background-color: #3498db;
            transform: translateY(-2px);
        }

        .footer-social-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-address {
            font-size: 14px;
            line-height: 1.6;
            margin-top: 10px;
        }

        .footer-address-line {
            margin-bottom: 5px;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            text-align: center;
            font-size: 12px;
            color: #95a5a6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-column {
                min-width: 100%;
            }

            .footer-social-links {
                justify-content: center;
            }

            .footer-contact-item {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 30px 15px 15px;
            }

            .footer-title {
                font-size: 16px;
            }

            .footer-contact-item {
                font-size: 13px;
            }

            .footer-social-link {
                width: 35px;
                height: 35px;
            }

            .footer-social-icon {
                width: 18px;
                height: 18px;
            }
        }
        
        
