/* ==========================================
   DownRent Platform - Core CSS Styles
   Color Palette: Deep Turquoise & Ivory Cream
   ========================================== */

:root {
    --bg-primary: #072a33;       /* الأزرق الفيروزي العميق والداكن (الخلفية الأساسية) */
    --bg-card: #0c3843;          /* لون البطاقات والعناصر البارزة */
    --bg-hover: #104856;         /* لون التفاعل عند التحويم */
    
    --accent-teal: #0e4d5c;      /* تدرج فيروزى تفاعلي */
    --accent-glow: #00b4d8;      /* لون الإضاءة والتوهج الحيوي */
    
    --text-main: #f4f1ea;        /* البيج العاجي الفاتح للنصوص الرئيسية والعناوين */
    --text-muted: #9bb0b6;       /* الرمادي المائل للزرقة للنصوص الثانوية */
    
    --border-color: rgba(244, 241, 234, 0.15); /* حدود ناعمة وعاجية شفافة */
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    direction: ltr;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Styles */
.main-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--accent-glow);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn-login {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--accent-glow);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.1);
}

.btn-login:hover {
    background-color: var(--accent-glow);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}