/* BROCHURE MAIN CENTERED */
.site-logo {
    max-width: 327px;
}
body {
 background:#f8f7f3;

}
h1 {
    font-size: 30px;
    line-height: 36px;
}
h2, .h2 {
    font-size: 24px;
    line-height: 36px;
}
.brochure-main {
    max-width: 980px;
    margin: 40px auto;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* RIGHT ACTION PANEL */
.brochure-actions {
    position: absolute;
    right: 40px;
    top: 40px;
    width: 180px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* HEADER */
.brochure-header {
    margin-bottom: 20px;
}

.brochure-address {
    font-size: 14px;
    line-height: 1.4;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
}

/* TITLES */
.brochure-title,
.brochure-price,
.section-title {
    text-align: center;
        line-height: 55px;
}

/.brochure-main-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.brochure-main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;

    /* Smooth fade-in effect */
    opacity: 0;
    animation: fadeInHero 0.7s ease-out forwards;
}

@keyframes fadeInHero {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
}

/* Soft shadow */
.brochure-main-image {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------------
   THUMBNAIL GROUP
--------------------------------------------------------------- */
.brochure-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;

    /* Provides consistent alignment */
    justify-content: center;
}

.brochure-thumbs .thumb {
    width: calc(47% - 10px);
    min-width: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;

    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

/* Thumbnail Image */
.thumb img {
    width: auto;
    height: 269px;
    object-fit: cover;
    border-radius: 8px;
}


/* ---------------------------------------------------------------
   THUMBNAIL HOVER EFFECT
   Premium smooth effect (Apple-like)
--------------------------------------------------------------- */
.thumb:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

/* Glow border on hover */
.thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid #ffcb00;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.thumb:hover::after {
    opacity: 1;
}


/* ---------------------------------------------------------------
   RESPONSIVE THUMBNAILS
--------------------------------------------------------------- */
@media (max-width: 768px) {
    .brochure-thumbs .thumb {
        width: 30%;
    }
    .thumb img {
        height: 110px;
    }
}

@media (max-width: 480px) {
    .brochure-thumbs .thumb {
        width: 45%;
    }
    .thumb img {
        height: 100px;
    }
}
/* FLOORPLAN & EPC */
.floor-image {
    max-height: 500px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

/* ICONS */
.icon-circle {
    width: 75px;
    height: 75px;
    background: #f1c838;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 20px;
    color: #000000;
}
h6, .h6 {
    font-size: 17px;
    line-height: 28px;
}

/* DISCLAIMER SECTION */
.brochure-footer {
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.brochure-disclaimer-text {
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
    color: #555;
}
.brochure-disclaimer {
    text-align: center;
    line-height: 1.6;
    font-size: 17px;
    margin-bottom: 14px;
    color: #555;
}

.brochure-company-info span {
    display: block;
    font-size: 13px;
    color: #555;
}

