﻿:root {
    --primary: #0f172a; /* Midnight Blue */
    --secondary: #d4af37; /* Gold */
    --light: #f8fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    overflow-x: hidden;
    margin: 0;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar-custom {
    background-color: var(--primary);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: #fff !important;
    font-size: 24px;
}

    .navbar-brand span {
        color: var(--secondary);
    }

.nav-link {
    color: #ccc !important;
    font-weight: 500;
    margin-right: 15px;
}

    .nav-link:hover {
        color: var(--secondary) !important;
    }

/* Hero Section */
.hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}

/* Controls */
.form-control-custom {
    padding: 12px;
    border-radius: 5px;
    border: none;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 10px 30px;
    border: none;
    transition: 0.3s;
}

    .btn-gold:hover {
        background-color: #fff;
        transform: translateY(-3px);
    }

/* Property Card */
.prop-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    background: white;
}

    .prop-card:hover {
        transform: translateY(-10px);
    }

.prop-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* --- High-End Styling --- */
.hero-section {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

/* Crypto Ticker Animation */
.ticker-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 50px;
    background-color: rgba(0,0,0,0.8);
    padding-left: 100%;
    box-sizing: content-box;
}

.ticker {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 30s;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1rem;
    color: #d4af37; /* Gold */
    font-weight: bold;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Feature Icon Boxes */
.feature-box {
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

    .feature-box:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid #d4af37;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

/* Process Steps */
.step-circle {
    width: 70px;
    height: 70px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 3px solid #d4af37;
    position: relative;
    z-index: 2;
}
/* Connecting line for steps */
.step-container {
    position: relative;
}

    .step-container::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 0;
        right: 0;
        height: 2px;
        background: #e9ecef;
        z-index: 1;
        display: none; /* Hidden on mobile */
    }

@media(min-width: 768px) {
    .step-container::before {
        display: block;
    }
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* --- Navbar Styling --- */
.navbar-custom {
    background: rgba(15, 23, 42, 0.95); /* Midnight Blue with slight transparency */
    backdrop-filter: blur(10px); /* Glass Effect */
    padding: 18px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
}

    .navbar-brand span {
        color: #d4af37; /* Gold */
    }

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

    .nav-link:hover, .nav-link.active {
        color: #d4af37 !important;
    }

/* Connect Wallet Button */
.btn-wallet {
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #0f172a;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 25px;
    border: none;
    transition: transform 0.3s;
}

    .btn-wallet:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        background: #fff;
    }

/* --- Footer Styling --- */
footer {
    background-color: #0b1120; /* Darker than Navbar */
    color: #94a3b8;
    padding-top: 22px;
    font-size: 0.9rem;
}

    footer h5 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 25px;
    }

    footer ul li {
        margin-bottom: 12px;
    }

        footer ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: 0.3s;
        }

            footer ul li a:hover {
                color: #d4af37;
                padding-left: 5px;
            }

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

    .social-icon:hover {
        background: #d4af37;
        color: #000;
        transform: translateY(-3px);
    }

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}


/* 1. Disable Text Selection & I-beam Cursor Globally */
body {
    /* Prevents users from highlighting/selecting text */
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Edge/IE */
    user-select: none; /* Standard */
    /* Forces the mouse to stay as an Arrow (Default), not the 'I' text bar */
    cursor: default;
}

/* 2. IMPORTANT: Re-enable it for Input fields so users can type */
input,
textarea,
select,
[contenteditable="true"] {
    /* Allow selection inside forms */
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    /* Show the 'I' cursor inside inputs so they know they can type */
    cursor: text !important;
}

/* 3. Ensure links and buttons show the 'Hand' pointer */
a, button, .btn {
    cursor: pointer !important;
}



