:root {
    --bg-color: #fafafb; /* Very light, clean background */
    --text-dark: #111827;
    --text-muted: #4b5563;
    --purple-main: #a64eff; /* The primary purple accent */
    --purple-light: #f3e8ff;
    --card-bg: #ffffff;
    --card-border: #f3f4f6;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo {
    height: 48px; /* Increased from 32px */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
}
.dot.online {
    background-color: #10b981;
}

.btn-primary {
    background-color: var(--purple-main);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 99px; /* Pill shape */
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(166, 78, 255, 0.3);
}

/* Dashboard Layout */
.dashboard {
    width: 100%;
    max-width: 1100px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Circle */
.temp-hero {
    margin-top: 0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.circle-bg {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #f9fafb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.01);
}

.main-temp {
    font-size: 7rem;
    font-weight: 800;
    color: var(--purple-main);
    letter-spacing: -3px;
    line-height: 1;
    margin-top: -1rem; /* Shift number up slightly */
    margin-bottom: 1rem;
}

.badge {
    background-color: var(--purple-light);
    color: var(--purple-main);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Quotes Section */
.quote-section {
    text-align: center;
    max-width: 700px;
    margin-bottom: 3rem;
    min-height: 160px; /* Prevents layout jumping when quote length changes */
}

.quote-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.quote-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 15px rgba(0,0,0,0.01);
    min-height: 320px;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-main);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-icon {
    margin-top: 2rem;
    color: var(--purple-main);
    display: flex;
    justify-content: flex-start;
}

/* Middle featured card styling */
.card-featured {
    position: relative;
    overflow: hidden;
}

.card-graphic {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.circle-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), #e0e7ff);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .circle-bg {
        width: 280px;
        height: 280px;
    }
    .main-temp { font-size: 5rem; }
    .quote-section h2 { font-size: 1.75rem; }
    .navbar { padding: 1.5rem 1rem; }
    
    .dashboard {
        padding: 1rem;
    }
    
    .card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .card-value {
        font-size: 2rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

/* Footer Section */
.site-footer {
    width: 100%;
    margin-top: 4rem;
    font-size: 0.875rem;
    background-color: var(--bg-color);
}

.footer-cta {
    background-color: var(--purple-main);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    width: 100%;
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr 1fr;
    gap: 3rem;
}

.brand-text {
    margin: 1rem 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.footer-logo {
    height: 35px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0077b5; /* linkedin */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-icon.fb {
    background-color: #1877f2;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--purple-main);
}

.mb-2 {
    margin-bottom: 2.5rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.partner-logos a {
    display: block;
}

.partner-logos img {
    max-width: 140px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--card-border);
    width: 100%;
}

.footer-bottom hr {
    margin: 1.5rem auto;
    border: none;
    border-top: 1px solid var(--card-border);
    max-width: 600px;
}

.created-by {
    font-size: 11px;
}

@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-col {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .brand-col {
        grid-column: span 1;
    }
    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
