/* base.css - Design System and Common Styles for Ayra App Pages */

:root {
    --bg-color: #FAF7F2; /* Warm ivory/cream */
    --card-bg: #ffffff;
    --card-border: #EBE6DD;
    --text-primary: #0A241C; /* Dark forest green/charcoal */
    --text-secondary: #4A5C54; /* Muted forest green/slate */
    --text-muted: #7E8F85;
    --accent-primary: #073B2E; /* Dark pine green */
    --accent-secondary: #C59B4F; /* Muted gold/ochre */
    --accent-light: rgba(197, 155, 79, 0.08);
    --glow-color: rgba(7, 59, 46, 0.03);
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient glow blobs styled inside hidden-overflow wrapper to avoid layout stretching */
.ambient-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    filter: blur(80px);
}

.glow-top-left {
    top: -20%;
    left: -10%;
}

.glow-bottom-right {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(197, 155, 79, 0.05) 0%, transparent 70%);
}

/* Header & Navigation Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--bg-color);
    border: 1px solid var(--card-border);
    padding: 5px;
    box-shadow: 0 4px 12px rgba(10, 36, 28, 0.04);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--accent-primary);
}

/* Common Typography & Content Styling */
h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2 span {
    color: var(--accent-secondary);
}

h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
}

ul {
    list-style: none;
    margin-bottom: 1.25rem;
    padding-left: 0.25rem;
}

li {
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.98rem;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}

a.external-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-secondary);
    transition: all 0.2s ease;
}

a.external-link:hover {
    color: var(--accent-secondary);
    background-color: var(--accent-light);
}

/* Contact Details Card Styling */
.contact-card {
    background: linear-gradient(135deg, rgba(7, 59, 46, 0.02) 0%, rgba(197, 155, 79, 0.04) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: inset 0 2px 4px rgba(10, 36, 28, 0.01);
}

.contact-card h3 {
    margin-top: 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-primary);
}

.contact-email {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
    border-bottom: 2px solid var(--accent-secondary);
}

.contact-email:hover {
    color: var(--accent-secondary);
}
