/* FrontRunner App Global Styles */

/* Reset and base styles */
html, body, #main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
    line-height: 1.6;
    color: #333;
    background: rgb(255, 255, 255);
}

/* Typography */
h1 {
    color: #006BFF;
    border-bottom: 2px solid #006BFF;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #006BFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    color: #006BFF;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Links */
a {
    color: #006BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

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

/* Footer */
footer {
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: rgb(102, 102, 102);
    font-weight: 600;
}

.footer-nav a:hover {
    color: rgba(153, 153, 153, 0.6);
}

.footer-copyright {
    color: rgb(102, 102, 102);
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

/* Button styles */
.btn {
    background-color: rgb(0, 107, 255);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: rgb(0, 96, 230);
    text-decoration: none;
}

/* Logo */
.logo {
    max-width: 200px;
    height: auto;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
} 