/*
Theme Name: The Art of Trust
Theme URI: https://theartoftrust.net
Author: Trust Design Collective  
Description: A minimalist, elegant WordPress template for trust-building and relationship-focused content
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aot-theme
*/

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

:root {
    --aot-black: #000000;
    --aot-white: #FFFFFF;
    --aot-gray-light: #F5F5F5;
    --aot-gray: #999999;
    --aot-gray-dark: #333333;
    --aot-accent: #FF4D4D;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--aot-white);
    color: var(--aot-black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--aot-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.aot-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--aot-white);
    border-bottom: 1px solid #E5E5E5;
    z-index: 1000;
    padding: 1.5rem 0;
}

.aot-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aot-logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.aot-nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.aot-nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
}

.aot-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.aot-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--aot-black);
    transition: all 0.3s ease;
    display: block;
}

/* Hero */
.aot-hero {
    padding: 12rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aot-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aot-gray);
    margin-bottom: 2rem;
}

.aot-hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.aot-hero-subtitle {
    font-size: 1.3rem;
    color: var(--aot-gray);
    max-width: 700px;
    line-height: 1.7;
}

/* Featured Grid */
.aot-featured {
    padding: 5rem 2rem;
    background: var(--aot-gray-light);
}

.aot-featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aot-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--aot-white);
}

.aot-feature-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--aot-gray-light);
}

.aot-feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aot-feature-item:hover img {
    transform: scale(1.05);
}

/* About */
.aot-about {
    padding: 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aot-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.aot-about-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aot-gray);
    margin-bottom: 2rem;
}

.aot-about-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.aot-about-content p {
    font-size: 1.1rem;
    color: var(--aot-gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services */
.aot-services {
    padding: 8rem 2rem;
    background: var(--aot-black);
    color: var(--aot-white);
}

.aot-services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aot-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

.aot-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.aot-service-card {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.aot-service-number {
    font-size: 0.9rem;
    color: var(--aot-gray);
    margin-bottom: 1.5rem;
}

.aot-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.aot-service-card p {
    color: var(--aot-gray);
    line-height: 1.7;
}

/* Blog */
.aot-blog {
    padding: 10rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.aot-blog-header {
    margin-bottom: 5rem;
}

.aot-blog-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.aot-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.aot-blog-card {
    transition: opacity 0.3s ease;
}

.aot-blog-card:hover {
    opacity: 0.7;
}

.aot-blog-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--aot-gray-light);
}

.aot-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aot-blog-meta {
    font-size: 0.85rem;
    color: var(--aot-gray);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.aot-blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.aot-blog-excerpt {
    color: var(--aot-gray-dark);
    line-height: 1.6;
}

/* Footer */
.aot-footer {
    padding: 8rem 2rem 3rem;
    background: var(--aot-black);
    color: var(--aot-white);
}

.aot-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aot-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.aot-footer-about h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.aot-footer-about p {
    color: var(--aot-gray);
    line-height: 1.7;
}

.aot-footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.aot-footer-links ul {
    list-style: none;
}

.aot-footer-links li {
    margin-bottom: 0.8rem;
}

.aot-footer-links a {
    color: var(--aot-gray);
    font-size: 0.95rem;
}

.aot-footer-links a:hover {
    color: var(--aot-white);
}

.aot-footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--aot-gray);
    font-size: 0.9rem;
}

/* Single Post */
.aot-single-post {
    padding: 12rem 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.aot-post-header {
    margin-bottom: 4rem;
}

.aot-post-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--aot-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.aot-post-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.aot-post-featured-image {
    margin-bottom: 4rem;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.aot-post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--aot-gray-dark);
}

.aot-post-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    letter-spacing: -1px;
}

.aot-post-content p {
    margin-bottom: 1.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .aot-hero-title {
        font-size: 4rem;
    }
    
    .aot-about-grid,
    .aot-services-grid,
    .aot-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aot-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .aot-mobile-toggle {
        display: flex;
    }
    
    .aot-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--aot-white);
        padding: 5rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        border-right: 1px solid #E5E5E5;
    }
    
    .aot-nav.active {
        left: 0;
    }
    
    .aot-nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .aot-nav-menu li {
        border-bottom: 1px solid #E5E5E5;
    }
    
    .aot-nav-menu a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
    }
    
    .aot-hero {
        padding: 10rem 1.5rem 5rem;
    }
    
    .aot-hero-title {
        font-size: 2.5rem;
    }
    
    .aot-featured-grid,
    .aot-about-grid,
    .aot-services-grid,
    .aot-blog-grid,
    .aot-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .aot-post-title {
        font-size: 2.5rem;
    }
}

.aot-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.aot-nav-overlay.active {
    display: block;
}
