
/* === Основные стили сайта === */

     .navbar-brand {
      color: #874c26 !important;
      text-shadow: 3px 3px 4px rgba(255, 255, 255, 0.8);
      font-weight: bold;
      font-size: 26px;
    }
    .navbar-nav .nav-link {
      color: #874c26 !important;
      transition: color 0.3s, background-color 0.3s;
      padding: 8px 16px;
      border-radius: 8px;
      text-shadow: 3px 3px 4px rgba(255, 255, 255, 0.8);
      font-weight: bold;
      font-size: 20px;
    }
    .navbar-nav .nav-link:hover {
      color: #000 !important;
      background-color: rgba(232, 159, 114, 0.7);
    }

    .video-bg {
    pointer-events: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }

    .navbar-custom {
      background-color: rgba(196, 183, 175, 0.3);
      backdrop-filter: blur(10px);
    }
    .hero-content {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 0 0 10px rgba(0,0,0,0.7);
    }
    .section-padding {
      padding: 60px 0;
    }
    
    /* === Новый стиль рамки для секций === */
    .bordered-section {
     border: 2px solid #e2cfcf;
     border-radius: 15px;
     padding: 40px 20px;
     background-color: #fffdfc;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      border-radius: 12px;
    }
    
    @media (max-width: 576px) {
    .gallery-img {
    height: 180px;
    }
    }
    
    footer {
      background: #f8f9fa;
      padding: 20px 0;
      text-align: center;
    }
    
    .social-buttons a { /* СОЦ. сети  */
     margin: 0 10px;
     display: inline-block;
     vertical-align: middle;
     font-size: 24px;
    }


