/* Atria Theme - Sage/Teal/Coral */

:root {
    --atria-blue: #0061A4;
    --atria-green: #006E1C;
    --atria-sage: #14b8a6;
    --atria-coral: #ff6b6b;
    --atria-text: #333;
    --atria-text-light: #555;
    --atria-text-lighter: #666;
    --atria-gray: #999;
    --atria-bg-light: #f8f9fa;
    --atria-bg-white: #ffffff;
    --atria-border: #e9ecef;
}

body {
    background: linear-gradient(135deg, var(--atria-blue) 0%, var(--atria-green) 100%);
    color: var(--atria-text);
}

/* Header Theme */
.logo,
.logo-large {
    color: white;
}

.status-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Hero Theme */
.hero-section,
.hero-section-full {
    text-align: center;
}

h1 {
    color: white;
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
}

.description {
    color: rgba(255, 255, 255, 0.85);
}

/* Button Theme */
.btn-primary {
    background: white;
    color: var(--atria-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--atria-text);
}

.section-subtitle {
    color: var(--atria-text-lighter);
}

/* Feature Cards Theme */
.feature-card {
    background: var(--atria-bg-light);
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-title,
.card-subtitle {
    color: var(--atria-text);
}

.card-text {
    color: var(--atria-text-lighter);
}

/* Tech Section */
.tech-section {
    background: var(--atria-bg-light);
}

.tech-item h4 {
    color: var(--atria-blue);
}

.tech-item p {
    color: var(--atria-text-lighter);
}

/* Info Boxes */
.info-box {
    background: #e3f2fd;
    border-left-color: var(--atria-green);
}

.info-box h3 {
    color: var(--atria-green);
}

.info-box p {
    color: #2c3e50;
}

.info-box-highlight {
    background: var(--atria-bg-light);
    border-left-color: var(--atria-blue);
}

.info-box-highlight strong {
    color: var(--atria-text);
}

/* Tables */
table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

th {
    background: var(--atria-blue);
    color: white;
    padding: 15px;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--atria-border);
}

tr:nth-child(even) {
    background: var(--atria-bg-light);
}

tr:last-child td {
    border-bottom: none;
}

/* Footer Theme */
footer {
    background: #1a1a1a;
    color: white;
    margin-top: 0;
}

.footer-logo {
    color: white;
}

.footer-text {
    color: var(--atria-gray);
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: var(--atria-gray);
}

.footer-link:hover {
    color: white;
}

.copyright {
    color: #666;
    border-top-color: #333;
}

.copyright a {
    color: var(--atria-gray);
}

/* Typography Specific */
h2 {
    color: var(--atria-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--atria-border);
    padding-bottom: 10px;
}

h2:first-of-type {
    margin-top: 0;
}

h3 {
    color: var(--atria-text);
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--atria-text-light);
}

ul, ol {
    margin: 15px 0 15px 25px;
    color: var(--atria-text-light);
}

li {
    margin-bottom: 10px;
}

strong {
    color: var(--atria-text);
    font-weight: 600;
}

/* Phone mockup */
.phone-mockup {
    background: white;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.phone-screen {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 30px;
    color: var(--atria-blue);
    font-weight: 600;
}

/* Privacy page specific */
.intro {
    background: var(--atria-bg-light);
    border-left-color: var(--atria-blue);
}

.contact-info {
    background: var(--atria-bg-light);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.subtitle,
.last-updated {
    color: rgba(255, 255, 255, 0.9);
}

.last-updated {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
}
