/* 
   CasinoLevant Brand Protection Resource
   Official Resource for casinolevant-protection.space
*/

:root {
    --bg-primary: #fdfdfb; /* Ivory/Bright Neutral */
    --text-primary: #2d2d2d; /* Charcoal */
    --text-secondary: #5a5a5a; /* Cool Gray */
    --accent-navy: #1a2a44; /* Muted Navy */
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #3a4a64;
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    background: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-navy);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--accent-navy);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #f9f9f7, var(--bg-primary));
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--accent-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.section-title {
    font-size: 1.75rem;
    color: var(--accent-navy);
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--accent-navy);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

button {
    background-color: var(--accent-navy);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

button:hover {
    background-color: #2a3a54;
}

/* Footer */
footer {
    background: #f4f4f2;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for now, would usually use a hamburger */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
