/* Custom Styles for Rural Property Landing Page */

:root {
    --color-primary: #4169E1; /* Royal Blue */
    --color-accent: #bf00ff; /* Neon Purple */
    --color-bg-dark: #0f0f0f;
    --color-text-main: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: 'Outfit', sans-serif; /* Modern, geometric sans */
    overflow-x: hidden;
}

/* Typography Utilities */
.text-glow {
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.5), 0 0 20px rgba(65, 105, 225, 0.3);
}

.text-glow-accent {
    text-shadow: 0 0 10px rgba(191, 0, 255, 0.5), 0 0 20px rgba(191, 0, 255, 0.3);
}

/* Backgrounds */
.bg-gradient-hero {
    background: radial-gradient(circle at 50% 50%, rgba(65, 105, 225, 0.15) 0%, rgba(15, 15, 15, 1) 70%);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.2);
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(191, 0, 255, 0.6);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(65, 105, 225, 0.1);
    box-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
}

/* Animations */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Utility for particles/shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
    100% { transform: translate(0, 0); }
}

/* Form Styles */
.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}
