/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #0071e3;
    /* Apple Blue */
    --text-color: #1d1d1f;
    --background-color: #fbfbfd;
    --card-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Glassmorphism Cards */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 980px;
    /* Pill shape */
    padding: 10px 24px;
    font-weight: 500;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #0077ed;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.hero-section {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 40px;
    color: #1d1d1f;
    position: relative;
    overflow: hidden;
}

/* Smooth inputs */
.form-control {
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    padding: 12px;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
    border-color: var(--primary-color);
}