/* Base Reset */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    background-color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #111;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
}

/* Buttons */
button, .button, input[type="submit"] {
    background-color: #ff5a5f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Links */
a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: #c76e4e;
}

/* Containers */
.container, .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Cards or Content Blocks */
.card, .box, .content-block {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background: white;
    margin-bottom: 30px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.75em;
    }
    .container {
        padding: 20px 10px;
    }
}
/* Example: hover effect for a column with class 'my-column' */
.my-column:hover {
  background-color: #dae0e3;
  transition: background-color 0.3s ease;
}.zoom-inside {
  overflow: hidden;
  display: block;
}

.zoom-inside img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  height: auto;
}

.zoom-inside:hover img {
  transform: scale(1.2);
}
.image-label {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-label img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-label:hover img {
  transform: scale(1.1); /* Zoom effect */
}

/* Badges */
.image-label .badge-top,
.image-label .badge-bottom {
  position: absolute;
  left: 15px;
  background-color: #305370;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  z-index: 2;
}

.image-label .badge-top {
  top: 15px;
}

.image-label .badge-bottom {
  top: 60px;
}

/* Text overlay for Townsville Houses */
.image-label .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #1e3a5f;
  padding: 4px 10px; /* smaller padding */
  font-weight: bold;
  font-size: 22px;
  font-family: Arial, sans-serif;
  border-radius: 2px;
  opacity: 0;
  white-space: nowrap;  /* <<< KEY: Makes the box wrap tightly */
  transition: opacity 0.3s ease;
  z-index: 2;
}

.image-label:hover .hover-text {
  opacity: 1;
}
/* Normal state */
.hover-row-effect {
  transition: all 0.3s ease-in-out;
}

/* Hover state */
.hover-row-effect:hover {
  background-color: #dae0e3; /* Light grey */
  /* transform: scale(1.01); */  /* Removed zoom */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
}
@media (max-width: 991px) {
  .topbar {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
  .topbar .your-email-class,
  .topbar .your-phone-class,
  .topbar .your-social-icons-class {
    margin: 5px 0;
  }
}





