body{
  top: 0!important;
}



.goog-te-gadget-simple {
    margin: 20px;
    margin-top: 23px;
    position: absolute;
    right: 1%;
    top: 0.05%;
}

.event-wrapper {
    width: 100%;
    margin: auto;
    
  }

  .section-header {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .venue-photo {
    width: 100%;
    height: 35vw;
    object-fit: cover; /* Обеспечивает обрезку изображения без искажений */
    object-position: center; /* Позиционирует изображение вверху */
    border-radius: 12px;
    margin-bottom: 25px;
    
  }

  .venue-details {
    margin-bottom: 25px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .venue-details p {
    margin: 0 0 10px;
    font-size: 1.1rem;
  }






.tech-specs-wrapper {
  display: flex;
  align-items: stretch; /* чтобы дочерние элементы растягивались по высоте */
  gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

/* Картинка слева */
.specs-image {
  width: 30%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Контейнер таблицы — растягивается по высоте картинки */
.table-wrapper {
  width: 70%;
  box-sizing: border-box;

  display: flex;       /* чтобы таблица растянулась */
  flex-direction: column;
  justify-content: center; /* вертикально по центру */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* такая же тень, как у картинки */
  border-radius: 8px;
  background-color: #fff;
  padding: 10px 20px; /* можно подстроить */
}

/* Таблица занимает всю ширину контейнера */
.tech-specs-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.95rem;
}

/* Ячейки таблицы */
.tech-specs-table td {
  padding-left: 3em;
  line-height: 3;
  vertical-align: middle;
  word-break: break-word;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .tech-specs-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .specs-image,
  .table-wrapper {
    width: 100%;
    margin-bottom: 15px;
    box-shadow: none;
  }

  .tech-specs-table td {
    padding-left: 8px;
     word-break: keep-all;       /* не ломай слова внутри слов */
    overflow-wrap: break-word; 
    border: 1px solid #c3242e;
    line-height: 1.8;           /* было 3 — сделаем меньше */
    font-size: 0.85rem;         /* чуть уменьшенный шрифт */
    white-space: normal;        /* позволяет перенос строк, но не слишком агрессивно */
    word-break: break-word;     /* перенос слов по частям при нехватке места */
  }
  
}

















  .logo-a {

    cursor: pointer;
    text-decoration: none;
    position: relative; /* для правильного позиционирования */
    z-index: 1; /* чтобы ссылка была поверх других элементов */
  }
  
  .img-logo,
  .img-logo-2 {

    vertical-align: middle;
    cursor: pointer;
  }
  
  .logo img {
    pointer-events: auto; /* убедиться, что изображения реагируют на клик */
  }
  
  .menu-toggle {
    position: relative;
    z-index: 0; /* чтобы не перекрывал логотип */
  }
  
  /* Дополнительно: если вдруг другой элемент перекрывает ссылку */
  .logo, .logo-a, .img-logo, .img-logo-2 {
    position: relative;
    z-index: 2;
  }
  



  .photo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 колонки для больших экранов */
    gap: 20px; /* расстояние между блоками */
    max-width: 80%;
    margin: 0 auto; /* центрируем */
}

.zoomable-image img {
    width: 100%;
    height: 450px; /* фиксированная высота изображений */
    display: block;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .photo-container {
        grid-template-columns: 1fr; /* 1 колонка для мобильных устройств */
        max-width: 100%; /* на мобильных экранах контейнер заполняет всю ширину */
    }

    .zoomable-image img {
        height: auto; /* высота изображений адаптируется под размер экрана */
    }
}

#chi-siamo{
  margin: 0 auto;
  width: 75%;
}

.text-chi-siamo{
    font-size: 1.3rem;
    margin: 0 auto; /* Центрирование элемента по горизонтали */

    text-align: justify;
}



.text-chi-siamo>div{
  text-indent: 1em;
  margin-top: 10px;
}


.container-video{
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.highlight-notes a {
    transition: color 0.3s ease;
}
.highlight-notes a:hover {
    color: #c3242e;
}
.highlight-notes {
    margin-top: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}















#esperienza {
    width: 100%;
    padding: 60px 20px;
    background-color: #fff;
    box-sizing: border-box;
}

#esperienza h1.text-la {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.la-nostra-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.la-nostra-row.reverse {
    flex-direction: row-reverse;
}

.text-la-con {
    flex: 1;
    font-size: 1.2rem;
    color: #111;
    line-height: 1.6;
    padding: 0 20px;
}

.img-la-nostra {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.img-la-nostra img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 400px;
    /* border-radius удалён по запросу */
}

@media screen and (max-width: 768px) {
    .la-nostra-row {
        flex-direction: column;
        text-align: center;
    }

    .la-nostra-row.reverse {
        flex-direction: column;
    }

    .text-la-con {
        padding: 0;
    }

    .img-la-nostra {
        padding: 0;
    }
}




.text-la-con ul {
    padding-left: 20px; /* отступ слева для точек */
    margin-top: 10px;
}

.text-la-con li {
    margin-bottom: 10px;
}





































.vse {
  margin-top: 2%;
    width: 100%;
    height: 300px;
    border-top: 1px solid #c3242e;
    display: flex;
    font-size: 20px;
}

.logo-vse,
.ul-con {
    flex: 1;
}

.logo-vse {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ul-con-p {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33.3%;
}

#ul-con-2 {
    text-align: left;
    margin-bottom: 20px;
}

#ul-con-2 > li{
 margin: 5px;
}

#ul-con-3 {
    text-align: left;
}

#ul-con-3 p {
    margin: 5px 0;
}

#ul-con-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

li {
    list-style: none; /* Убираем маркеры списка */
}

.decor-a {
    text-decoration: none; /* Убираем декорации ссылки (подчеркивание и т.д.) */
    display: flex; /* Размещаем иконку и текст внутри ссылки в одну строку */
    align-items: center; /* Выравниваем элементы по центру по вертикали */
    color: black; /* Цвет текста ссылки */
}

.decor-a img {
    margin-right: 5px; /* Добавляем небольшой отступ между иконкой и текстом */
}

.text-pp {
    margin-bottom: 10px;
}   

#con-map {
    height: 600px;
}






















#pianoModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: fixed;
    
    
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}














.text-la-con,
.text-la-con-2,
.text-la-con-3,
.text-la-con-4,
.text-la-con-5 {
  display: block;
}


.text-la-con > ul > li {
  list-style-type: disc; 
}

.zagl-st {
  font-weight: 600;
  margin-bottom: 0px;
}



@media screen and (max-width: 768px) {
  .logo-vse {
    margin-top: 7%;
  }
}