/* 
    Accord Path - Style Sheet
    Vibrant, Modern, Image-Free Design
*/

:root {
    --primary: #4361ee;
    --primary-light: #4895ef;
    --secondary: #7209b7;
    --accent: #f72585;
    --success: #4cc9f0;
    --bg-light: #f8f9fa;
    --text-dark: #2b2d42;
    --text-muted: #8d99ae;
    --white: #ffffff;
    --container-width: 1100px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-shape {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    transform: rotate(45deg);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.main-nav a.active, .main-nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 8rem 0 10rem;
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 30%;
    height: 80%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Blog Section */
.blog-section {
    padding: 0 0 5rem;
    margin-top: -6rem;
    position: relative;
    z-index: 10;
}

.full-article {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    margin: 0 10px;
}

.article-content {
    font-size: 1.1rem;
    color: #4a4e69;
    max-width: 800px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin: 2.5rem 0 1.2rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.highlight-box {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.custom-list {
    list-style: none;
    margin: 2rem 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
}

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

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--success));
}

.info-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-box {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #d91b6f;
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: #f1f3f5;
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .full-article {
        padding: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
}
