/* ============================================
   Dahree Base Styles - Shared across all pages
   ============================================ */

:root {
    --dahree-black: #0a0a0a;
    --dahree-dark: #1a1a1a;
    --dahree-gray: #6b7280;
    --dahree-light: #f9fafb;
    --dahree-accent: #e11d48;
    --dahree-accent-soft: rgba(225, 29, 72, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dahree-black);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Page wrapper to push footer down */
.page-wrapper {
    min-height: calc(100vh - 200px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dahree-black);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--dahree-gray);
    line-height: 1.7;
}

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

a:hover {
    color: #be123c;
}

/* Page Header - Shared style for all pages */
.page-header {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--dahree-light) 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dahree-black);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--dahree-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Section styling */
.section {
    padding: 4rem 0;
}

.section-light {
    background: var(--dahree-light);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dahree-black);
}

/* Cards */
.dahree-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.dahree-card:hover {
    border-color: var(--dahree-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn-dahree {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: var(--dahree-black);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-dahree:hover {
    background: var(--dahree-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-dahree-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: #ffffff;
    color: var(--dahree-black);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-dahree-outline:hover {
    border-color: var(--dahree-black);
    color: var(--dahree-black);
}

.btn-dahree-accent {
    background: var(--dahree-accent);
    color: #ffffff;
}

.btn-dahree-accent:hover {
    background: #be123c;
    color: #ffffff;
}

/* Badge */
.dahree-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--dahree-accent-soft);
    color: var(--dahree-accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
}

/* Content container with good max-width */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

