/*
Theme Name: Sophie Copy Co - Authority
Theme URI: https://sophiecopy.co
Author: Sophie
Author URI: https://sophiecopy.co
Description: A bold, confident WordPress theme for Sophie Copy Company. Features strong typography, clean layouts, and integrated blog functionality.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sophie-authority
Tags: business, portfolio, blog, custom-menu, featured-images, threaded-comments

This theme is designed for copywriters and marketing consultants who want a bold, authoritative online presence.
*/

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

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --offwhite: #f5f5f5;
    --accent: #ff4500;
    --gray: #6b6b6b;
}

body {
    font-family: 'Archivo', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem;
    background: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo a {
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 8rem 4rem 10rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 69, 0, 0.1) 100%);
    pointer-events: none;
}

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

.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    display: inline-block;
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    max-width: 1100px;
    opacity: 0;
    animation: slideIn 0.6s ease forwards 0.2s;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    line-height: 1.5;
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideIn 0.6s ease forwards 0.4s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
    opacity: 0;
    animation: slideIn 0.6s ease forwards 0.6s;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.intro-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 6rem;
    align-items: start;
}

.intro-sidebar {
    position: sticky;
    top: 120px;
}

.intro-sidebar h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 1.5rem;
}

.intro-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.intro-content {
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    line-height: 1.7;
}

.intro-content p {
    margin-bottom: 2rem;
}

.intro-content strong {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--black);
}

/* Facts Section */
.facts-section {
    padding: 6rem 4rem;
    background: var(--offwhite);
}

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

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

.fact-card {
    text-align: center;
}

.fact-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 1rem;
}

.fact-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
}

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

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

.services-header {
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-header p {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.8;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item {
    padding: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.service-item:nth-child(even) {
    border-right: none;
}

.service-item:hover {
    background: rgba(255, 69, 0, 0.1);
}

.service-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-item p {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Blog Styles */
.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--offwhite);
    transition: all 0.3s;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    background: var(--offwhite);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--accent);
}

.blog-excerpt {
    font-family: 'Instrument Serif', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

/* Single Post Styles */
.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--offwhite);
}

.post-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.post-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-content {
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
    line-height: 1.8;
}

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

.post-content h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.01em;
}

.post-content h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.post-content a:hover {
    opacity: 0.7;
}

.post-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gray);
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

/* Contact Form Styles */
.contact-section {
    padding: 8rem 4rem;
    background: var(--offwhite);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    border: 2px solid var(--offwhite);
    background: var(--offwhite);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: var(--accent);
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
    background: var(--accent);
    color: var(--white);
    padding: 5rem 4rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-banner p {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 5rem 2rem 6rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-sidebar {
        position: static;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}
