/* Red Soil — Chiplun one-page refinements */
:root {
    --rs-accent: #b4472f; /* Red Soil terracotta */
    --rs-accent-dark: #8f3726;
    --rs-ink: #141414;
}

/* Keep navbar readable over slider */
.navbar:not(.nav-scroll) {
    background: rgba(20, 20, 20, 0.40);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.navbar:not(.nav-scroll) .container {
    height: 100%;
    align-items: center;
}

/* Navbar brand (logo + name) */
.logo-wrapper .rs-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-wrapper .rs-brand__logo {
    height: 70px;
    width: auto;
    flex: 0 0 auto;
    display: block;
}
.logo-wrapper .rs-brand__name {
    margin: 0;
    padding: 0; /* override theme padding */
    line-height: 1.1;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--rs-accent);
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}
.logo-wrapper .rs-brand__name span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.9;
    text-transform: none;
}

/* Improve contrast for brand on dark/transparent navbar */
.navbar:not(.nav-scroll) .logo-wrapper .rs-brand__name,
.navbar:not(.nav-scroll) .logo-wrapper .rs-brand__name span {
    color: #fff;
}

/* Sticky navbar (nav-scroll): keep logo icon visible + aligned */
.nav-scroll .logo-wrapper .rs-brand {
    display: flex; /* override theme h2 layout expectations */
    align-items: center;
}
.nav-scroll .logo-wrapper .rs-brand__logo {
    height: 40px;
}
.nav-scroll .logo-wrapper .rs-brand__name {
    width: auto;          /* override theme: width: 100% */
    text-align: left;     /* override theme: text-align: center */
    padding: 0 !important;/* override theme: padding: 20px 0 */
    font-size: 20px;
}

/* Tablet/mobile: reduce brand text further */
@media (max-width: 991.98px) {
    .logo-wrapper .rs-brand__logo {
        height: 42px;
    }
    .logo-wrapper .rs-brand__name {
        font-size: 18px;
        letter-spacing: 0.25px;
    }
    .logo-wrapper .rs-brand__name span {
        font-size: 10px;
        letter-spacing: 2.5px;
    }
}
@media (max-width: 575.98px) {
    .logo-wrapper .rs-brand {
        gap: 8px;
    }
    .logo-wrapper .rs-brand__logo {
        height: 50px;
    }
    .logo-wrapper .rs-brand__name {
        font-size: 16px;
        letter-spacing: 0.15px;
    }
    .logo-wrapper .rs-brand__name span {
        font-size: 9px;
        letter-spacing: 2px;
    }
}

/* Brand accent color overrides (theme gold → Red Soil terracotta) */
b {
    color: var(--rs-accent);
}
.progress-wrap::after {
    color: var(--rs-accent);
}
.progress-wrap svg.progress-circle path {
    stroke: var(--rs-accent);
}
input:focus,
textarea:focus {
    border-color: var(--rs-accent);
}
input[type="submit"] {
    background: var(--rs-accent);
}
.alert-success {
    border-color: var(--rs-accent);
}
.butn-dark a,
.butn-dark2 {
    background: var(--rs-accent);
}
.butn-dark a:hover,
.butn-dark2:hover {
    background: var(--rs-accent-dark);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--rs-accent);
}
.trust-strip .trust-item i {
    color: var(--rs-accent);
}
.navbar .nav-link[href^="#"] {
    scroll-margin-top: 0;
}
html {
    scroll-behavior: smooth;
}
.trust-strip {
    padding: 2.5rem 0;
    background: #f8f6f1;
    border-top: 1px solid rgba(170, 132, 83, 0.15);
}
.trust-strip .trust-item {
    text-align: center;
    padding: 0.75rem;
}
.trust-strip .trust-item i {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}
.trust-strip .trust-item strong {
    display: block;
    font-family: "Gilda Display", serif;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.25rem;
}
.trust-strip .trust-item span {
    font-size: 13px;
    color: #666;
    line-height: 1.45;
}

/* From Chiplun — explore the Konkan (side-by-side destination cards) */
.konkan-destinations {
    margin-top: 10px;
}
.konkan-destination {
    display: flex;
    gap: 16px;
    align-items: stretch;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    height: 100%;
}
.konkan-destination:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(255, 255, 255, 0.14);
}
.konkan-destination__img {
    flex: 0 0 36%;
    max-width: 36%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}
.konkan-destination__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.konkan-destination__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.konkan-destination__tag {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}
.konkan-destination__title {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.25;
    font-size: 16px;
}
@media (max-width: 575.98px) {
    .konkan-destination {
        gap: 10px;
        padding: 10px;
    }
    .konkan-destination__img {
        flex-basis: 34%;
        max-width: 34%;
    }
    .konkan-destination__tag {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }
    .konkan-destination__title {
        font-size: 15px;
        line-height: 1.22;
    }
}

/* Page banners (about/contact) — shorter + cleaner */
.banner-header {
    height: 50vh;
    min-height: 320px;
}
.banner-header .caption {
    padding: 0;
}
.banner-header .caption h5 {
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}
.banner-header .caption h1 {
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.05;
    margin-bottom: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
    .banner-header {
        height: 28vh;
        min-height: 220px;
    }
    .banner-header .caption.mt-90 {
        margin-top: 60px;
    }
    .banner-header .caption h5 {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

/* Split sections (Dining / Banquet / Day trips) — alignment polish */
.rs-split > [class*="col-"] {
    display: flex;
    align-items: stretch;
}
.rs-split .content,
.rs-split .img {
    width: 100%;
}

/* Make the text block compact + vertically centered */
.rs-split__text .content {
    display: flex;
    align-items: center;
}
.rs-split__text .cont {
    display: block; /* override theme's table-cell */
    width: 100%;
}
.rs-split__text .info h6 {
    margin-bottom: 6px;
}
.rs-split__text .cont h4 {
    margin: 0 0 10px 0;
    line-height: 1.25;
}
.rs-split__text .cont p {
    margin-bottom: 16px;
    line-height: 1.65;
}
.rs-split__text .butn-dark {
    margin-top: 6px;
}

.rs-split--banquet .content,
.rs-split--daytrips .content,
.rs-split--families .content {
    padding: 40px 42px;
}
.rs-split--banquet .cont h4 {
    letter-spacing: 0.2px;
}
.rs-split--banquet .img img,
.rs-split--daytrips .img img,
.rs-split--families .img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.rs-split__media-link {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}
.rs-split__media-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 20, 20, 0.28), rgba(20, 20, 20, 0.06));
    pointer-events: none;
}
.rs-split__media-link img {
    transform: scale(1.01);
    transition: transform 400ms ease;
}
.rs-split__media-link:hover img {
    transform: scale(1.06);
}

/* Dining page — reduce dark overlay/shadow, make images crisp */
.rs-page--dining .rs-split__media-link::after {
    background: linear-gradient(120deg, rgba(20, 20, 20, 0.18), rgba(20, 20, 20, 0.03));
}
.rs-page--dining .rooms-page.section-padding {
    padding: 70px 0;
}
.rs-page--dining .services.section-padding {
    padding: 70px 0;
}
.rs-page--dining .services .row + .row {
    margin-top: 18px;
}
.rs-page--dining .services .img {
    border-radius: 14px;
}
.rs-page--dining .services .img.left,
.rs-page--dining .services .img {
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
}
.rs-page--dining .services .img img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: none !important;
    filter: none !important;
}
.rs-page--dining .services .img:hover img {
    -webkit-filter: none !important;
    filter: none !important;
}
@media (max-width: 767.98px) {
    .rs-split--banquet .content,
    .rs-split--daytrips .content,
    .rs-split--families .content {
        padding: 28px 22px;
    }
    .rs-split--banquet .img img,
    .rs-split--daytrips .img img,
    .rs-split--families .img img {
        min-height: 240px;
    }
}

/* Services section: ensure media fills the half-width like the original demo */
.services .img img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    /* Make each services row equal-height (image == content panel) */
    .services .row {
        align-items: stretch;
    }
    .services .row > .col-md-6 {
        display: flex;
        flex-direction: column;
        align-self: stretch;
    }

    /* The theme uses `.valign` to center; in Services we need stretching */
    .services .valign {
        align-items: stretch;
    }

    .services .img,
    .services .content {
        flex: 1;
        width: 100%;
    }

    .services .img,
    .services .img a {
        height: 100%;
    }
    .services .img img {
        height: 100%;
        object-fit: cover;
    }
}


