/* ============================================================
   Rang Fusion — Public Pages Shared CSS
   Used by: index, properties, services, about, contact,
            privacy-policy, terms-of-service
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --nav-bg: #E4F9F8;
    --accent-color: #FEEED0;
    --highlight-color: #6a1b9a;
    --text-dark: #383838;
    --text-muted-custom: #6c757d;
    --button-gradient: linear-gradient(to right, #4dd0e1, #e65bbf);
    --secondary-bg: #f8f9fa;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5,
.navbar-brand {
    font-family: 'Merienda', cursive;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    background-color: var(--nav-bg) !important;
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 0.5rem 2rem;
    background-color: rgba(228, 249, 248, 0.9) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
}

/* Hamburger icon color */
.navbar-toggler {
    border-color: var(--highlight-color);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236a1b9a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gradient {
    background: var(--button-gradient);
    border: none;
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(77, 208, 225, 0.3);
}

/* ── Page Header (used by properties, services, about etc.) ── */
.page-header {
    background: linear-gradient(135deg, var(--nav-bg) 0%, var(--accent-color) 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-content h2 {
    font-family: 'Merienda', cursive;
    color: var(--highlight-color);
    margin-top: 2rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted-custom);
    line-height: 1.8;
}

.legal-navbar {
    background-color: white !important;
    border-bottom: 1px solid #e9ecef;
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.legal-navbar .navbar-brand img {
    height: 40px;
}
