:root {
    --primary-color: #78493a;
    --dark-color: #1a1a1a;
}

h1, h2, h3, h4 {
    font-family: "DM Serif Text", serif;
}

body {
     font-family: "Funnel Display", sans-serif;
}



/* ======================
MAIN HEADER – WHITE THEME
====================== */
.main-header {
    background: #ffffff !important;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Brand (Dev Heritage text) */
.navbar-brand {
    font-family: "Times New Roman", Times, serif !important;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 28px;
    letter-spacing: 0.8px;
}

/* Nav links */
.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin: 0 8px;
    transition: color .3s ease;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #000 !important;
}

/* Active link (optional) */
.navbar-nav .nav-link.active {
    color: #000 !important;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile toggle icon */
.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler::before {
    content: '☰';
    font-size: 22px;
    color: var(--primary-color);
}

/* ======================
TOP HEADER (DESKTOP)
====================== */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    flex-wrap: wrap; /* ✅ IMPORTANT */
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

/* Address should wrap nicely */
.top-header-left {
    max-width: 60%;
    line-height: 1.4;
}

/* Phone numbers aligned properly */
.top-header-right {
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
}

.top-header-right span {
    white-space: nowrap; /* keeps each number intact */
    margin-left: 6px;
}

.top-header i {
    color: var(--primary-color);
    font-size: 14px;
}


/* ======================
TOP HEADER (MOBILE)
====================== */
@media (max-width: 768px) {

    .top-header-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .top-header-left,
    .top-header-right {
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .top-header-right {
        flex-direction: column;
        gap: 4px;
    }
}

/* ======================
TOP HEADER LINK FIX (PROFESSIONAL)
====================== */
.top-header a {
    color: #333 !important;        /* same as text */
    text-decoration: none !important;
    font-weight: 500;
}

/* Icon color stays brand */
.top-header i {
    color: var(--primary-color);
}

/* On hover (desktop only) */
@media (hover: hover) {
    .top-header a:hover {
        color: var(--primary-color) !important;
    }
}

/* ======================
MAIN HEADER – WHITE THEME
====================== */
.main-header {
    background: #ffffff !important;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Brand (Dev Heritage text) */
.navbar-brand {
    font-family: "Times New Roman", Times, serif !important;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 28px;
    letter-spacing: 0.8px;
}

/* Nav links */
.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin: 0 8px;
    transition: color .3s ease;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #000 !important;
}

/* Active link (optional) */
.navbar-nav .nav-link.active {
    color: #000 !important;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile toggle icon */
.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler::before {
    content: '☰';
    font-size: 22px;
    color: var(--primary-color);
}



/* Footer */
.footer {
    background: #111;
    color: #ccc;
    padding: 50px 0 0;
}

.footer h5 {
    font-family: "DM Serif Text", serif;
    color: #fff;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer-phone i {
    color: var(--primary-color);
    margin-right: 6px;
}

/* Footer Bottom */
.footer-bottom {
    background: #000;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    text-decoration: none;
} 


/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url('../images/contact-banner.jpg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: "DM Serif Text", serif;
    font-size: 48px;
    color: #fff;
}

.contact-hero p {
    color: #eee;
    margin-top: 10px;
    font-size: 18px;
}

/* FORM SECTION */
.contact-form-wrapper {
    padding: 80px 0;
    background: #fff;
}

.section-head h2 {
    font-family: "DM Serif Text", serif;
    font-size: 36px;
}

.section-head p {
    max-width: 600px;
    margin: 10px auto 40px;
    color: #666;
}

.contact-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-card .form-control {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 12px 5px;
    font-size: 16px;
}

.contact-card .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.btn-brand {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 45px;
    border-radius: 30px;
    font-weight: 600;
}

/* INFO + MAP */
.contact-info-map {
    padding: 80px 0;
    background: #fafafa;
}

.info-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-box h3 {
    font-family: "DM Serif Text", serif;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 22px;
    color: var(--primary-color);
}

.info-item strong {
    display: block;
}

.info-item a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* MAP */
.map-frame {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* AMENITIES HERO */
.amenities-hero {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url('../images/amenities-banner.jpg') center/cover no-repeat;
    padding: 130px 0;
    text-align: center;
}

.amenities-hero h1 {
    font-family: ""DM Serif Text", serif;
    font-size: 48px;
    color: #fff;
}

.amenities-hero p {
    color: #f1f1f1;
    font-size: 18px;
    margin-top: 10px;
}

/* INTRO */
.amenities-intro {
    padding: 70px 0 40px;
    background: #fff;
}

.intro-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* GRID */
.amenities-grid {
    padding: 60px 0 90px;
    background: #fafafa;
}

.amenity-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 14px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.amenity-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-card h5 {
    font-family: "DM Serif Text", serif;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 15px;
    color: #666;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

/* Near by places pages */


/* PLACES HERO */
.places-hero {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url('../images/places-banner.jpg') center/cover no-repeat;
    padding: 130px 0;
    text-align: center;
}

.places-hero h1 {
    font-family: "DM Serif Text", serif;
    font-size: 48px;
    color: #fff;
}

.places-hero p {
    color: #f1f1f1;
    font-size: 18px;
    margin-top: 10px;
}

/* PLACES SECTION */
.places-section {
    padding: 90px 0;
    background: #fff;
}

.place-row {
    margin-bottom: 90px;
}

.place-row h3 {
    font-family: "DM Serif Text", serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.place-row p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* CAROUSEL IMAGE */
.carousel-inner img {
    border-radius: 14px;
    height: 420px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .carousel-inner img {
        height: 260px;
    }

    .place-row {
        margin-bottom: 60px;
    }
    
    /* ABOUT HERO */
.about-hero {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url('../images/about-banner.jpg') center/cover no-repeat;
    padding: 140px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: "DM Serif Text", serif;
    font-size: 48px;
    color: #fff;
}

.about-hero p {
    color: #eee;
    font-size: 18px;
    margin-top: 10px;
}

/* INTRO */
.about-intro,
.about-feel {
    padding: 90px 0;
    background: #fff;
}

.about-intro h2,
.about-feel h2 {
    font-family: "DM Serif Text", serif;
    font-size: 34px;
    margin-bottom: 10px;
}

.tagline {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro p,
.about-feel p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

/* IMAGES */
.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STATS */
.about-stats {
    padding: 80px 0;
    background: #fafafa;
}

.stat-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.stat-card h3 {
    font-family: "DM Serif Text", serif;
    font-size: 46px;
    color: var(--primary-color);
}

.stat-card p {
    margin-top: 8px;
    color: #555;
}

/* CLOSING */
.about-closing {
    padding: 80px 0 100px;
    background: #fff;
}

.about-closing p {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

}
