/* --- Общие шрифты и базовые стили --- */
body,h1,h2,h3,h4,h5 { font-family: "Raleway", sans-serif; }
body, html { height: 100%; margin:0; padding:0; background:#fafafa; }

.bgimg {
  background-image: url('/streetart2.jpg');
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.gallery-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.section {
  padding: 50px;
}

/* --- Анимация LIVE --- */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* --- Кнопки Menu/Contact (прозрачные) --- */
.w3-display-topleft.w3-container.w3-xlarge {
    top: 60px !important;
}

.w3-display-topleft .w3-button {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    color: #fff !important;
}

.w3-display-topleft .w3-button:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

/* --- Weather Banner --- */
#weather-banner {
    position: fixed;
    bottom: 10px;
    right: 15px;
    width: 250px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 5px;
    transform: scale(0.75);
    transform-origin: bottom right;
}

#close-weather {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(1.5);
    transition: 0.3s;
}

#close-weather:hover {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.4);
}
