﻿
:root{ --maroon:#6f1f12; --gold:#d9bf7c; --cream:#e9dbb9; --ink:#1e1b18; }
html,body{ font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color:var(--ink); background:#f6efdf; }

/* Header */
.dr-navbar{ background:var(--maroon); padding:1.65rem 1.25rem; box-shadow:0 2px 6px rgba(0,0,0,.15); }
.dr-logo{ height:85px; width:auto; object-fit:contain; image-rendering: -webkit-optimize-contrast; }
.navbar-nav .nav-link{ color:#d9bf7c !important; margin-left:1.25rem; font-weight:500; letter-spacing:.03rem; transition:color .3s ease; }
.navbar-nav .nav-link:hover{ color:#fff !important; }

/* Hero slider */
.dr-hero-img{ height:70vh; object-fit:cover; filter:brightness(.9); }
.carousel-control-prev-icon, .carousel-control-next-icon{ filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
@media (max-width: 992px){ .dr-hero-img{ height:56vh; } .dr-logo{ height:60px; } }

/* Sections */
.dr-h2{ font-family:'Playfair Display', serif; font-weight:700; letter-spacing:.5px; }
.dr-about-section{ background:var(--cream); padding:4rem 0; }
.dr-about-graphic{ font-family:'Playfair Display', serif; font-weight:800; font-size:clamp(2rem,6vw,5rem); line-height:1; color:#1f1f1f; }
.dr-btn-primary{ background:var(--maroon); border:2px solid #2b0e08; color:#f6efdf; padding:.6rem 1.25rem; border-radius:.35rem; }
.dr-btn-primary:hover{ background:#59190e; color:#fff; }

/* Services */
.dr-services{ background:var(--cream); padding:4rem 0; }
.dr-service-card{ background:#eee; border-radius:.35rem; overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,.06); }
.dr-service-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.dr-service-title{ text-align:center; margin-top:.75rem; min-height:3.5rem; }

/* Partners */
.dr-partners{ background:#efe6cf; padding:4rem 0; }
.dr-partner-tile{ background:#caaa63; display:flex; align-items:center; justify-content:center; height:160px; border-radius:.5rem; box-shadow:0 10px 24px rgba(0,0,0,.08); }
.dr-partner-tile img{ max-height:70px; width:auto; }

/* Reviews */
.dr-reviews{ background:#f7f2e1; padding:4rem 0; }
.dr-review-card{ background:#fff; border-radius:.6rem; padding:1.25rem; box-shadow:0 10px 24px rgba(0,0,0,.12); }
.dr-stars{ color:#ffb000; letter-spacing:.2rem; font-size:1.1rem; }

/* Footer */
/*dr-footer{ background:var(--maroon); color:#f7e8bf; }
.dr-footer .link-warning{ text-decoration:underline; }*/

/* Force large logo inside same navbar height */
/* Keeps navbar slim but allows logo to look large */
.dr-navbar {
    background: var(--maroon);
    padding: 0.75rem 1.25rem; /* slim height */
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    overflow: visible;
}

/* Larger logo without affecting navbar height */
.dr-logo {
    height: 200px; /* visually big logo */
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    margin-top: -25px; /* lift up the image slightly */
    margin-bottom: -25px; /* allow a little overlap below */
}

/* Centers vertically and avoids extra space */
.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

/* ===== BESPOKE PROPERTY MANAGEMENT SECTION ===== */
.dr-banner1 {
    background: var(--maroon);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px; /* adjust for your layout */
    text-align: center;
}

.dr-banner1-text {
    font-family: 'EB Garamond', serif !important;
    font-weight: 300 !important;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.dr1-banner {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.dr-about-section {
    background: var(--cream);
    padding: 5rem 0;
}

.dr-about-img {
    max-width: 90%;
    height: auto;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transition: transform .4s ease;
}

    .dr-about-img:hover {
        transform: scale(1.02);
    }

.dr-h2 {
    font-family: 'EB Garamond', serif !important;
    font-weight: 400 !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    color: var(--maroon);
    margin-bottom: 1.25rem;
}

.dr-copy {
    font-family: "Inter", sans-serif;
    color: #3b2f25;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .dr-about-section {
        text-align: center;
    }

    .dr-about-img {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

/* ===== SERVICES SECTION ===== */
.dr-service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-col {
    flex: 0 0 20%; /* 100% / 5 columns = 20% each */
    max-width: 20%;
    padding: 1rem;
}

@media (max-width: 1200px) {
    .service-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
    /* 4 per row */
}

@media (max-width: 992px) {
    .service-col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    /* 3 per row */
}

@media (max-width: 768px) {
    .service-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    /* 2 per row */
}

@media (max-width: 576px) {
    .service-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* 1 per row */
}


.dr-partner-tile img {
    max-height: 170px; /* increased for visibility */
    max-width: 90%; /* prevent overflow */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto; /* center horizontally */
    image-rendering: -webkit-optimize-contrast;
}

.dr-partner-tile {
    background: #caaa63;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px; /* previously 160px */
    border-radius: .5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.dr-review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%; /* makes all cards equal height in a row */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .dr-review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    }

.dr-reviews .row > [class*="col-"] {
    display: flex;
}

.dr-stars {
    color: #ffb000;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    margin-bottom: 0.5rem;
}

.dr-h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700 !important;
    color: #6f1f12;
}

.carousel-item {
    transition: transform 1.2s ease-in-out;
}

/* Footer */
.dr-footer {
    background: var(--maroon);
    color: #f7e8bf;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

    .dr-footer a {
        color: #f7e8bf;
        text-decoration: underline;
        font-weight: 500;
    }

        .dr-footer a:hover {
            color: #fff;
            text-decoration: none;
        }

    .dr-footer .footer-text {
        color: #f7e8bf !important; /* ✅ matches 'Follow Us' color */
        opacity: 1;
        margin: 0.75rem 0;
    }

    .dr-footer .footer-social {
        color: #f7e8bf;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }


.footer-links {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

    .footer-links .nav-link {
        display: inline;
        color: #f7e8bf;
        font-weight: 500;
        text-decoration: underline;
        padding: 0;
    }

        .footer-links .nav-link:hover {
            color: #fff;
            text-decoration: none;
        }
.dr-privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.dr-privacy-section h5 {
    color: var(--maroon);
    font-family: 'EB Garamond', serif;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600 !important;
    font-size: 1.2rem;
}
.dr-h1 {
    color: var(--maroon);
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}