/* === GLOBAL === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

/* === HEADER === */
.header {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  height: 120px;
  overflow: visible;
}



.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar a {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}

/* Red underline */
.header-underline {
  height: 6px;
  background-color: #c8102e;
  width: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    height: auto;
  }

  .logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .logo-wrapper img.big-logo {
    height: 100px;
    width: auto;
    max-width: 160px;
    position: relative;
    display: block;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: 2px solid #fff;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    cursor: pointer;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #000;
    width: 100%;
    padding: 0;
    border-top: 2px solid #b22222;
  }

  .navbar.open {
    display: flex;
  }

  .navbar a {
    color: #fff;
    padding: 1rem;
    width: 100%;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #333;
  }
}


/* === HERO SECTION === */
.hero {
  background: #c00;
  color: #fff;
  padding: 2em;
  text-align: center;
}

.cta-button {
  background: #000;
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1em;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #333;
}

.apartment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .apartment-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


.apartment-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.apartment-card:hover {
  transform: translateY(-5px);
}

.apartment-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 300px;
  display: block;
  background-color: #f0f0f0;
}



.apartment-card h3,
.apartment-card p {
  padding: 0.5rem 1rem;
  margin: 0;
}

/* === APARTMENT DETAIL PAGE === */
.apartment-detail {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.apartment-info {
  margin-top: 3rem;
}

.overview-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding-left: 0;
}

.overview-list li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.apartment-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.amenities-list {
  columns: 2;
  column-gap: 2rem;
  list-style: disc inside;
  line-height: 1.6;
  padding-left: 0;
}

@media (max-width: 600px) {
  .amenities-list {
    columns: 1;
  }
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #c00;
}

.back-link:hover {
  text-decoration: underline;
}

/* === SCROLLABLE IMAGE GALLERY === */
.gallery-container {
  position: relative;
  margin: 2rem auto;
  max-width: 100%;
  overflow: hidden;
}

.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
}

.gallery img {
  flex: 0 0 auto;
  width: 500px;
  height: 350px;
  border-radius: 10px;
  object-fit: cover;
  background: #f0f0f0;
  cursor: pointer;
}

/* === SCROLL ARROW BUTTONS === */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 4px;
}

.scroll-btn.left {
  left: 5px;
}

.scroll-btn.right {
  right: 5px;
}

/* === MODAL LIGHTBOX === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  display: block;
  margin: 2% auto;
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.modal-content.zoomed {
  transform: scale(2.5);
  cursor: zoom-out;
}

.close,
.modal-arrow {
  position: absolute;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.close {
  top: 20px;
  right: 40px;
}

.modal-arrow.left {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.modal-arrow.right {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#modal-count {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.3rem 1rem;
  border-radius: 5px;
  user-select: none;
}

/* === BOOKING CTA SECTION === */
.booking-cta {
  margin-top: 2rem;
  text-align: center;
}

.booking-message {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #000;
}

/* === FOOTER === */
.footer {
  background: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  margin-bottom: 0.5rem;
}

.footer-column p,
.footer-column ul,
.footer-column li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* === CONTACT PAGE STYLES === */
.contact-wrapper {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem 3rem;
}

.contact-section {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-left: 6px solid #b22222;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.contact-section:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  color: #b22222;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-section p,
.contact-section li {
  line-height: 1.6;
  font-size: 1rem;
  color: #222;
}

.contact-section ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-section a {
  color: #b22222;
  font-weight: bold;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Call-to-action style buttons */
.contact-section a.cta-button {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #b22222;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-section a.cta-button:hover {
  background-color: #8d1a1a;
}

/* Embedded map styling */
.contact-section iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 1.5rem;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-section a.cta-button {
    display: block;
    margin-top: 1rem;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}
/* === CONTACT PAGE GRID LAYOUT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
body {
  font-size: 20px; /* Global text size up */
  line-height: 1.8;
}

.contact-wrapper {
  max-width: 1200px;
  padding: 3rem 2rem 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-section {
  background: #fff;
  padding: 3rem;
  border-left: 8px solid #b22222;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
  font-size: 2.2rem;
  color: #b22222;
  margin-bottom: 1.25rem;
}

.contact-section p,
.contact-section li {
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact-section a.cta-button {
  display: inline-block;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  background-color: #b22222;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-section a.cta-button:hover {
  background-color: #8d1a1a;
}

/* MAP SECTION */
.map-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  font-size: 2.25rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  /* Prevent side scroll */
  html, body {
    overflow-x: hidden;
  }

  /* Header layout */
  .logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    padding: 1rem;
  }

  .navbar.open {
    display: flex;
  }

  /* Hero section */
  .hero {
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  /* Amenities section blocks */
  .amenities-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .amenities-text {
    margin-bottom: 1rem;
  }

  .amenities-text ul {
    padding-left: 1.2rem;
    text-align: left;
    display: inline-block;
  }

  .amenities-images {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }

  .amenities-images img {
    width: 95%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 1rem auto 0;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  }

  /* CTA button */
  .booking-cta {
    text-align: center;
    margin: 3rem 1rem 2rem;
  }

  .cta-button {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 1rem;
    font-size: 1rem;
    background-color: #b22222;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }

  /* Footer layout */
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .footer-column {
    width: 100%;
    max-width: 400px;
  }

  .footer-bottom {
    text-align: center;
    padding: 1rem;
  }

  /* Map section */
  .map-section {
    padding: 2rem 1rem;
    text-align: center;
    box-sizing: border-box;
  }

  .map-section img,
  .map-section iframe {
    width: 90%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 2rem;
  }

  .contact-section h2,
  .map-section h2 {
    font-size: 1.8rem;
  }

  .contact-section a.cta-button {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Mobile gallery */
  .gallery-container {
    position: relative;
    overflow: hidden;
    padding: 0 0.5rem;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
  }

  .gallery img {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    background: #f0f0f0;
    cursor: pointer;
  }

  .scroll-btn {
    display: none;
  }

  #modal-img.zoomed {
    transform: scale(2.5);
  }

  .modal-content {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    cursor: zoom-in;
  }

  #modal-count {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}
.price {
  font-size: 1rem;
  margin: 0 1rem 0.75rem;
  color: #000;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.5rem;
}

.sale-price {
  color: #b22222;
  font-weight: bold;
}




