/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.site-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

/* Navigation */
.nav {
  background-color: #fff;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 128px;
  width: auto;
  user-select: none;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #333;
  font-weight: 600;
  padding: 0.5rem 0;
  display: inline-block;
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: #007acc;
  border-bottom: 2px solid #007acc;
}

.nav-links[hidden] {
  display: none !important;
}

/* houses, villas, cottages, etc */

.houses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.house-card {
  border: 1px solid #ccc;
  padding: 1rem;
  width: 250px; /* or adjust */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.house-image img {
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.house-card h3 {
  margin-bottom: 0.5rem;
}

.house-card p {
  margin: 0.3rem 0;
}

.btn.btn-primary {
  margin-top: auto;
  background-color: #007acc;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn.btn-primary:hover {
  background-color: #005fa3;
}

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  user-select: none;
  padding: 0.25rem 0.5rem;
}

/* Language Switch Button */
.lang-switcher-wrapper {
  margin-left: 1rem;
}

.lang-switch-button {
  font-weight: 700;
  color: #007acc;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    border-radius: 0 0 8px 8px;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex !important;
  }

  .nav-toggle {
    display: block;
  }
}

