
           .hero {
            position: relative;           
            background-size: cover;
          /*  min-height: 100vh;*/
            min-height: calc(var(--vh, 1vh) * 100);
            display: flex;
            align-items: center;
            color: white;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7); 
            z-index: 1;
        }

        .hero .container {
            max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
    overflow-wrap: break-word;
            position: relative;
            z-index: 2; 
        }

           /* Для больших экранов (от 1025px) */
            @media (min-width: 1025px) {
                .hero {
                     background: url('/assets/img/header4-desktop.webp') no-repeat center center;
                    background-size: cover;
                }
            }


            /* Для планшетов (до 1024px) */
            @media (max-width: 1024px) {
                .hero {
                    background: url('/assets/img/header4-tablet.webp') no-repeat center center;
                    background-size: cover;
                }
            }

            /* Для мобильных устройств (до 768px) */
            @media (max-width: 768px) {
                .hero {
                    background: url('/assets/img/header4-phone.webp') no-repeat center center;
                    background-size: cover;
                    
                }
            }

          .bg-footer {
            position: relative;
            background: url('/assets/img/bg-footer.webp') no-repeat center center;
            background-size: cover;
          
        }

        .bg-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 0; 
        }

        .bg-footer .container {
            position: relative;
            z-index: 1; 
        }

            @font-face {
                font-family: 'Trajan Pro';
                src: url('/assets/fonts/TrajanPro-Regular/TrajanPro-Regular.woff2') format('woff2'),
                     url('/assets/fonts/TrajanPro-Regular/TrajanPro-Regular.woff') format('woff');
                font-weight: normal;
                font-style: normal;
            }

            h1.font-top-header {
                font-family: 'Trajan Pro', serif;
                color: #fff;
            }

            .btn-egypt {
                font-family: 'Trajan Pro' , serif;
                font-weight: bold;
                text-transform: uppercase;
           
                background: linear-gradient(145deg, #FFD700, #DAA520);
                color: #3b2f1e; 
                border: 3px solid #8b6f25; /* Обводка */
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* Тень */
                padding: 12px 24px;
                border-radius: 8px; 
                transition: all 0.3s ease-in-out;
                min-width: 250px;
            }

            .btn-egypt:hover {
         
               background: linear-gradient(145deg,  #DAA520, #FFD700);
                color: #fff; 
              
            }

             /** **/
             .egyptian-section {
            
                background-size: cover;
                padding: 80px 0;
                color: #3b2f1e; 
                font-family: 'Cinzel', serif;
                border-top: 2px solid #b8860b;
                border-bottom: 2px solid #b8860b;
            }

            .egyptian-section h2 {
                font-size: 36px;
                font-weight: bold;
                color: #523613;
                text-transform: uppercase;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                border-bottom: 3px solid #b8860b;
                display: inline-block;
                padding-bottom: 8px;
            }

            .egyptian-section p {
                font-size: 18px;
                line-height: 1.6;
                color: #4c3b2b; 
                text-align: justify;
            }

            .egyptian-section img {
                border: 4px solid #b8860b; 
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
                margin-bottom: 25px;
            }

            hr{

               border: 1px solid #b8860b;
          

            }

   .footer {      
      color: white;
      text-align: center;
      padding: 20px 0;
      margin-top: 40px;
    }

     .accordion-item {
            border: 1px solid #dc3545; 
        }

        .accordion-header {
            background: linear-gradient(135deg, #ff4d4d, #b30000); 
        }

        .accordion-button {
            background-color: #dc3545; 
            color: white; 
            font-weight: bold;
        }

        .accordion-button:not(.collapsed) {
            background-color: #dc3545; 
            color: #fff;
        }

        .accordion-button:focus {
            box-shadow: 0 0 5px rgba(220, 53, 69, 0.7);
        }

        .accordion-body {
            background-color: #ffe6e6; 
            color: #333;
        }

    
        .overlay {
            background: rgba(0, 0, 0, 0.7);
        }

        .container.position-relative {
            z-index: 1;
        }
       
       h1{
        font-size: 3.0rem;
        font-weight: bold;
       }
       li.fw-bold{
         text-transform: uppercase;
       }
       section.container-fluid img{
        border-radius:20px;
        margin-bottom:20px;
       }

          .rating-stars {
              display: flex;
              gap: 5px;
              cursor: pointer;
            }

            .star {
              width: 30px;
              height: 30px;
              fill: #ccc;
              transition: fill 0.2s ease;
            }

            .star.hover {
              fill: #f5d479; /* при наведении */
            }

            .star.active {
              fill: #f5b301; /* выбранный рейтинг */
            }

