/* Eloquy Website Styles */
/* Brand Colors: Ink Slate #1E1E24, Soft Ivory #F6F5F3 */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --ink-slate: #1E1E24;
    --soft-ivory: #F6F5F3;
    --moleskin: #D4C5A9;
    --white: #FFFFFF;
    --gray-100: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink-slate);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--ink-slate);
    letter-spacing: 0.005em;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--ink-slate);
}

/* Hero Section */
.hero {
    padding: 100px 0 50px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(246, 245, 243, 0.3) 100%);
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--ink-slate);
    letter-spacing: -0.005em;
}

.hero-subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-note {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--ink-slate);
    color: var(--white);
}

.btn-primary:hover {
    background: #2A2A30;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(30, 30, 36, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink-slate);
    border: 2px solid var(--moleskin);
}

.btn-secondary:hover {
    background: var(--moleskin);
    border-color: var(--moleskin);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 197, 169, 0.3);
}

.btn-primary-large {
    padding: 18px 48px;
    font-size: 18px;
    background: var(--ink-slate);
    color: var(--white);
    border: 2px solid var(--ink-slate);
}

.btn-primary-large:hover {
    background: transparent;
    color: var(--ink-slate);
    border-color: var(--ink-slate);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(30, 30, 36, 0.2);
}

/* Screenshot Section */
.screenshot {
    padding: 50px 0 60px;
    background: linear-gradient(180deg, rgba(246, 245, 243, 0.3) 0%, rgba(246, 245, 243, 0.6) 50%, rgba(246, 245, 243, 0.3) 100%);
}

.screenshot-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* Features Section */
.features {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgba(246, 245, 243, 0.3) 0%, var(--soft-ivory) 100%);
}

.section-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 48px;
    color: var(--ink-slate);
    letter-spacing: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    padding: 0 0 0 28px;
    border-left: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature:hover {
    border-left-color: var(--moleskin);
}

.feature-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ink-slate);
    letter-spacing: 0;
}

.feature-description {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-700);
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(30, 30, 36, 0.85), rgba(30, 30, 36, 0.85)),
        url('leather-texture.jpg');
    background-size: 50%;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.comparison .section-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 34px;
    color: var(--white);
    margin-bottom: 20px;
}

.comparison-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.comparison-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 20px;
    line-height: 1.7;
    color: var(--soft-ivory);
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(212, 197, 169, 0.95), rgba(212, 197, 169, 0.95)),
        url('leather-texture.jpg');
    background-size: 50%;
    background-position: center;
    background-attachment: fixed;
    color: var(--ink-slate);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0;
    color: var(--ink-slate);
}

.cta-description {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 32px;
    color: var(--ink-slate);
    opacity: 0.85;
}

/* Footer */
.footer {
    padding: 60px 0 32px;
    background: var(--soft-ivory);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--moleskin);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
}

.footer-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink-slate);
    letter-spacing: 0.005em;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--auric-blue);
}

.footer-bottom {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .comparison .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.screenshot-wrapper,
.feature {
    animation: fadeIn 0.6s ease-out;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }
.feature:nth-child(6) { animation-delay: 0.6s; }
