/* Main CSS file for Laser Spider LLC */

/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a202c;
    background-color: #f7fafc;
    line-height: 1.5;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo */
.logo {
    height: 60px;
    width: auto;
}

/* Header */
header {
    background: linear-gradient(90deg, #1a365d 0%, #2a4365 100%);
    color: white;
    padding: 2rem 0;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #90cdf4;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #3182ce;
    border-color: #3182ce;
}

.btn-primary:hover {
    background-color: #2b6cb0;
    border-color: #2b6cb0;
}

/* Footer */
footer {
    background-color: #2d3748;
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* Sections */
section {
    padding: 3rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Quote section */
.quote-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.box {
    width: 80%;
    border: 1px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: auto;
    background-color: white;
}

.refresh-btn {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.refresh-btn:hover {
    background-color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .box {
        width: 90%;
        padding: 1.5rem;
    }
}

