/* SEO Landing Page Styles for ESG (EliteSingles) */
/* Based on the new homepage design: warm tones, serif headings, clean layout */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #FAF8F5;
    color: #2A2826;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ol, ul {
    list-style: none;
}

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

/* Header */
.slp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 40, 38, 0.05);
}

.slp-header-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slp-header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slp-heart-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #7A1D34;
    fill: #7A1D34;
}

.slp-logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #2A2826;
}

.slp-header-btn {
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    color: #2A2826;
    background: transparent;
    padding: 0.5rem 1.25rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.slp-header-btn:hover {
    color: #7A1D34;
}

/* Main Content */
.slp-main {
    padding: 6rem 0 3rem;
}

.slp-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.slp-container-narrow {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Article Content Styles */
.seoLandingPage .slp-main h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #2A2826;
    margin: 0 0 2rem;
    padding-top: 1rem;
}

.seoLandingPage .slp-main h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #2A2826;
    margin: 2.5rem 0 1.25rem;
}

.seoLandingPage .slp-main h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: #2A2826;
    margin: 2rem 0 1rem;
}

.seoLandingPage .slp-main h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: #2A2826;
    margin: 1.5rem 0 0.75rem;
}

.seoLandingPage .slp-main p {
    font-size: 1rem;
    line-height: 1.75;
    color: #5A5856;
    margin: 1rem 0;
}

.seoLandingPage .slp-main p strong,
.seoLandingPage .slp-main p b {
    color: #2A2826;
    font-weight: 600;
}

.seoLandingPage .slp-main a {
    color: #7A1D34;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.seoLandingPage .slp-main a:hover {
    color: #5A1627;
}

.seoLandingPage .slp-main ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.seoLandingPage .slp-main ul li {
    font-size: 1rem;
    line-height: 1.75;
    color: #5A5856;
    list-style: disc;
    margin-bottom: 0.5rem;
}

.seoLandingPage .slp-main ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.seoLandingPage .slp-main ol li {
    font-size: 1rem;
    line-height: 1.75;
    color: #5A5856;
    list-style: decimal;
    margin-bottom: 0.5rem;
}

.seoLandingPage .slp-main img {
    margin: 1.5rem 0;
    border-radius: 2px;
}

/* CTA Band */
.slp-cta-band {
    padding: 4rem 1.25rem;
    background-color: #7A1D34;
    text-align: center;
}

.slp-cta-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #FAF8F5;
    margin-bottom: 1.5rem;
}

.slp-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.025em;
    color: #7A1D34;
    background-color: #FAF8F5;
    transition: all 0.2s;
}

.slp-cta-btn:hover {
    background-color: #fff;
    color: #5A1627;
}

/* Footer */
.slp-footer {
    padding: 2.5rem 1.25rem;
    border-top: 1px solid rgba(42, 40, 38, 0.1);
}

.slp-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.slp-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slp-heart-icon-sm {
    width: 1.25rem;
    height: 1.25rem;
    color: #7A1D34;
    fill: #7A1D34;
}

.slp-footer-logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.slp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.slp-footer-link {
    font-size: 0.875rem;
    color: #5A5856;
    transition: color 0.2s;
}

.slp-footer-link:hover {
    color: #7A1D34;
}

.slp-footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #5A5856;
}

/* Back to Top */
.slp-back-top {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 999;
    cursor: pointer;
}

.slp-top-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2A2826;
    border-radius: 50%;
    transition: background 0.2s;
}

.slp-top-box::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom: 8px solid #fff;
    margin-top: -4px;
}

.slp-top-box:hover {
    background: #7A1D34;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .slp-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .slp-container {
        padding: 0 3rem;
    }

    .slp-container-narrow {
        padding: 0 3rem;
    }

    .slp-header-container {
        padding: 1.25rem 3rem;
    }

    .slp-heart-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .slp-logo-text {
        font-size: 1.25rem;
    }

    .slp-main {
        padding: 8rem 0 4rem;
    }

    .seoLandingPage .slp-main h1 {
        font-size: 3.5rem;
    }

    .seoLandingPage .slp-main h2 {
        font-size: 2.25rem;
    }

    .seoLandingPage .slp-main h3 {
        font-size: 1.75rem;
    }

    .seoLandingPage .slp-main p {
        font-size: 1.125rem;
    }

    .seoLandingPage .slp-main ul li,
    .seoLandingPage .slp-main ol li {
        font-size: 1.125rem;
    }

    .slp-cta-band {
        padding: 5rem 3rem;
    }

    .slp-cta-text {
        font-size: 2.5rem;
    }

    .slp-footer {
        padding: 3rem 3rem;
    }

    .slp-footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .slp-footer-nav {
        gap: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .slp-main {
        padding: 4.5rem 0 2rem;
    }

    .seoLandingPage .slp-main h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .seoLandingPage .slp-main h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .seoLandingPage .slp-main h3 {
        font-size: 1.25rem;
    }

    .seoLandingPage .slp-main p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .seoLandingPage .slp-main ul li,
    .seoLandingPage .slp-main ol li {
        font-size: 0.9375rem;
    }

    .slp-cta-band {
        padding: 3rem 1.25rem;
    }

    .slp-cta-text {
        font-size: 1.5rem;
    }

    .slp-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .slp-footer {
        padding: 1.5rem 1.25rem;
    }
}
