/* Mentofy Frontend Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Reset and Base Variables */
:root {
    /* Colors */
    --primary: #2161fb;
    --primary-dark: #1a4ad2;
    --primary-light: #e6efff;
    --secondary: #ff7d00;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Z-index */
    --z-header: 1000;
    --z-mobile-menu: 1100;
    --z-modal: 1200;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Layout */
.main-content {
    min-height: calc(100vh - 80px);
    padding-top: 80px; /* Account for fixed header */
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.img-fluid { max-width: 100%; height: auto; }