/**
 * GPLX PRO - Clean Blue Theme Styles
 */

/* --- Google Fonts: Montserrat --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

/* --- Blue Color Variables --- */
:root {
    --primary-blue: #2563eb;
    --primary-blue-hover: #1d4ed8;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --blue-gradient-light: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

/* --- Typography & Basics --- */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
}

a {
    text-decoration: none !important;
    transition: all 0.2s ease;
    color: var(--primary-blue);
}

a:hover {
    color: var(--primary-blue-hover);
}

.fw-black { font-weight: 900; }
.italic { font-style: italic; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }

/* --- Layout Utilities --- */
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }
.max-w-1100 { max-width: 1100px; }

/* --- Blue Text --- */
.text-primary {
    color: var(--primary-blue) !important;
}

.text-blue-gradient {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons Override --- */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-blue-hover) !important;
    color: #fff !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    font-weight: 700;
    border-radius: 10px;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Redefine btn-gold to btn-blue for backward compatibility if needed */
.btn-gold {
    background: var(--blue-gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.btn-gold:hover {
    background: var(--primary-blue-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* --- Cards --- */
.card-luxury {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-luxury:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* --- Badges --- */
.badge-gold, .badge-blue {
    background: var(--blue-100);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
}

/* --- Forms --- */
.form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* --- Selection --- */
::selection {
    background: var(--blue-200);
    color: var(--blue-900);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-300);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-400);
}
