body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f4f6fa;
  color: #222;
}

header {
  background: #222;
  color: #fff;
  padding: 30px 0 10px 0;
  text-align: center;
  position: relative;
}

.logo-container {
  margin-bottom: 10px;
}

.vv-logo {
  display: inline-block;
  margin-bottom: 10px;
  perspective: 400px;
}

.vv-logo .v1, .vv-logo .v2 {
  display: inline-block;
  font-size: 60px;
  font-weight: bold;
  color: #ffd700;
  margin: 0 5px;
  animation: rotateV 3s linear infinite;
  text-shadow: 0 2px 10px #0008;
}

.vv-logo .v2 {
  animation-delay: 1.5s;
  color: #fff;
}

@keyframes rotateV {
  0% { transform: rotateY(0deg);}
  100% { transform: rotateY(360deg);}
}

nav {
  margin: 20px 0 0 0;
}

nav a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

.river-section {
  position: relative;
  height: 120px;
  background: linear-gradient(to bottom, #e0eafc 60%, #b6c6e6 100%);
  overflow: hidden;
}

.river-animation {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: repeating-linear-gradient(120deg, #4fc3f7 0 20px, #1976d2 20px 40px);
  animation: riverMove 6s linear infinite;
  opacity: 0.7;
}

@keyframes riverMove {
  0% { background-position-x: 0; }
  100% { background-position-x: 200px; }
}

.reflection {
  position: absolute;
  left: 50%; top: 10px;
  width: 120px; height: 40px;
  background: radial-gradient(ellipse at center, #fff6 0%, #fff0 80%);
  transform: translateX(-50%) scaleY(-1);
  opacity: 0.3;
  filter: blur(2px);
}

section {
  padding: 40px 10vw;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  color: #1976d2;
  margin-top: 0;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.gallery-grid img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0002;
}

.apartments-table {
  overflow-x: auto;
}

.calculator-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0001;
  padding: 24px;
  max-width: 400px;
  margin: 0 auto;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  margin-top: 40px;
  font-size: 15px;
}