.full-width-img {
  object-fit: fill;
}

.lang-button-menu a {
    display: flex;
    margin: auto;
}

/* Disable image click/active scaling inside Swiper */
.swiper-slide img {
  transition: none !important;    /* remove smooth zoom effect */
}

.swiper-slide img:active {
  transform: none !important;     /* stop shrinking/growing */
}

.swiper-slide,
.swiper-slide * {
  transition: none !important;
  transform: none !important;
}

.listing-card {
  transition: none !important;   /* disable smooth transform */
}

.listing-card:active {
  transform: none !important;    /* stop the shrink/grow */
}

.post-entry {
    position: relative;
    margin-bottom: var(--gap);
    padding: var(--gap);
    background: var(--entry);
    border-radius: var(--radius);
    transform: none !important;    /* stop the shrink/grow */
    border: 1px solid var(--border);
}

.post-entry:active {
  transform: none !important;    /* stop the shrink/grow */
}

/* Change arrow color globally */
.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ffffff; /* orange example */
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.listing-header {
  display: flex;
  justify-content: space-between; /* pushes children to edges */
  align-items: center;            /* vertical centering */
  padding: 1rem 1rem;           /* some spacing */
  /*border-top: 1px solid #ddd;  /* optional */
}

.listing-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.listing-availability {
  font-size: 1rem;
  font-weight: 500;
}

.listing-info {
  display: flex;
  gap: 2rem;              /* space between columns */
  margin-top: 1rem;
}

.info-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;           /* space between items */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;           /* space between icon and text */
}

.info-icon {
  width: 24px;
  height: 24px;
}

.listing-gallery {
  margin-bottom: 2rem;
}

.mainSwiper {
  width: 100%;
  height: 400px;
  margin-bottom: 10px;
}

.thumbSwiper {
  width: 100%;
  height: 100px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* Base header styling */


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 64px;
}

/* Desktop menu */
.menu.desktop-menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.menu.desktop-menu li {
  display: inline-block;
}

.menu.desktop-menu a {
  text-decoration: none;
  color: inherit;
}

/* Mobile hamburger */
.mobile-hamburger {
  display: block;
}

.mobile-hamburger button {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.mobile-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: rgb(255, 255, 255);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px; /* start offscreen on the right */
  width: 260px;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 50;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0; /* slide in from right */
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #000000;
}

.mobile-menu-list {
  list-style: none;
  padding: 1rem;
}

.mobile-menu-list li {
  margin-bottom: 1rem;
}

.mobile-menu-list a {
  text-decoration: none;
  color: inherit;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
  z-index: 40;
}

/* Responsive */
@media (min-width: 581px) {
  .menu.desktop-menu,
  .desktop-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-left: auto; 
  }

  .mobile-hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}
@media (max-width: 580px) {
  .desktop-menu {
    display: none;
  }
}

.status-for-sale {
  color: rgb(0, 199, 0);
  font-weight: bold;
}

.status-sold-out {
  color: red;
  font-weight: bold;
}

.dark {
    --theme: rgb(0, 0, 0);
    --entry: rgb(46, 46, 51);
    --primary: rgb(218, 218, 219);
    --secondary: rgb(155, 156, 157);
    --tertiary: rgb(65, 66, 68);
    --content: rgb(196, 196, 197);
    --code-block-bg: rgb(46, 46, 51);
    --code-bg: rgb(55, 56, 62);
    --border: rgb(51, 51, 51);
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}


.hero {
  background: url('/img/homepage/hero_2.jpeg') no-repeat center center;
  background-size: cover;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: auto;       /* full screen height */
  min-height: 115vh;
  max-height: 200vh;
  display: flex;
  justify-content: flex-start; /* push content to the left */
  align-items: center;         /* center vertically */
  text-align: left;
  margin-top: -15vh;
}

.hero-box{
    margin-right: auto;
    margin-left: auto;
    position: relative;
    vertical-align: middle;
    box-sizing: border-box;
}

.hero-text {
  font-size: 40px;
  padding: 20px 40px;
  border-radius: 8px;
  color: #fff;
  text-shadow: rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px;
  padding-top: 100px;
  margin: 5%;
}

.info-button {
  display: inline-block;
  border: 2px solid white;
  padding: 6px 6px;
  margin-left: 6px;
  margin-top: 6px;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  border-radius: 0px;
  transition: background 0.2s ease-in-out;
}

.info-button:hover {
  background-color: #0b00a7;
}

.hidden-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hidden-section.visible {
  opacity: 1;
  transform: translateY(0);
}

#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px 40px;
  z-index: 1000;
  transition: all 0.0s ease;
}

/* Shrunk state */
#main-header.shrink {
  padding: 10px 30px;
  background: rgba(0, 0, 0, 1);
}

#main-header .logo {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: all 0.5s ease;
}

#main-header.shrink .logo {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}

.main {
  margin-top: 80px; /* offset so content doesn't go under header */
}

@media (max-width: 700px) {
  .hero-text {
    font-size: 30px;
  }
}

.available-buildings {
  text-align: center;
}

.unavailable-buildings {
  text-align: center;
}

.listing-description {
  border-bottom: 1px solid #ddd;  /* optional */
  padding: 1rem 1rem;           /* some spacing */
}

.about-photo{
  background: url('/img/tsitouri/29.jpeg') no-repeat center center;
  background-size: cover;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: auto;       /* full screen height */
  min-height: 50vh;
  max-height: 100vh;
  display: flex;
  justify-content: flex-start; /* push content to the left */
  align-items: center;         /* center vertically */
  text-align: left;
  margin-top: 0vh;
}

.about-subtext {
  text-align: center;
  font-size: medium;
}

.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
  width: 100%;
  max-width: 900px;
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
/* Example of spanning images */
.wide {
  grid-column: span 2;
}
.tall {
  grid-row: span 2;
}