/* Brand colors (match Tailwind theme) */
:root {
    --brand-dark: #0d1b2a;
    --brand-blue: #1b263b;
    --brand-orange: #f97316;
    --brand-orangeDark: #ea580c;
    --brand-green: #22c55e;
    --brand-greenDark: #16a34a;
    --brand-yellow: #facc15;
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
    background-color: var(--brand-orangeDark);
    box-shadow: 0 0 15px 0 rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--brand-green);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--brand-greenDark);
}

.btn-app {
    display: flex;
    align-items: center;
    background-color: #000;
    border: 1px solid #4b5563;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
}

.btn-app:hover {
    background-color: #111827;
}

/* Navigation */
.main-nav a {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #d1d5db;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: white;
}

/* Footer */
.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.footer-col ul li a:hover {
    color: var(--brand-orange);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Content blocks */
.content-block {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.625;
}

.content-block h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1f2937;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-left: 4px solid var(--brand-orange);
    padding-left: 1rem;
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-block p {
    margin-bottom: 1rem;
}

.content-block ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.content-block ul li {
    margin-bottom: 0.5rem;
}

/* Hero background */
.hero-bg {
    background-color: #0f172a;
    background-image: url("img/banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
