/*

Theme Name: TS Fling

Theme URI: https://tsfling.com

Author: Your Name

Author URI: https://tsfling.com

Description: Custom theme for trans hookup dating site

Version: 1.1

Text Domain: tsfling

*/

/* =========================================================
   Design tokens — midnight / seduction palette
   ========================================================= */
:root {
    --noir: #08050B;
    --noir-2: #0E0912;
    --noir-3: #16101C;
    --rouge: #FF2D6F;
    --rouge-deep: #D8004E;
    --orchid: #B026FF;
    --blush: #FFD9E6;
    --champagne: #E9C69C;

    --text-light: #F7EFF3;
    --text-gray: #B6A4B2;

    --grad-hot: linear-gradient(120deg, #FF2D6F 0%, #FF4FA0 45%, #B026FF 100%);
    --grad-veil: linear-gradient(180deg, rgba(8,5,11,0) 0%, rgba(8,5,11,0.85) 70%, var(--noir) 100%);
    --glow-rouge: 0 10px 40px rgba(255, 45, 111, 0.35);
    --glow-orchid: 0 10px 40px rgba(176, 38, 255, 0.28);

    --glass: rgba(255, 255, 255, 0.045);
    --glass-line: rgba(255, 217, 230, 0.14);

    --font-display: 'Playfair Display', 'Didot', Georgia, serif;
    --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;

    --ease-silk: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================================================
   Reset & base
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--noir);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Warm glow bleeding in from the edges of every page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(60% 45% at 8% 0%, rgba(255, 45, 111, 0.10) 0%, transparent 60%),
        radial-gradient(50% 40% at 100% 85%, rgba(176, 38, 255, 0.10) 0%, transparent 60%);
}

img {
    max-width: 100%;
}

::selection {
    background: var(--rouge);
    color: #fff;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Small caps label used above section titles */
.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 18px;
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--noir);
    overflow: hidden;
}

.hero-image-desktop {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72) saturate(1.15) contrast(1.05);
}

.hero-image-mobile {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: none;
    filter: brightness(0.72) saturate(1.15) contrast(1.05);
}

/* =========================================================
   Logo
   ========================================================= */
.logo {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.85);
    z-index: 10;
}

.logo span {
    background: var(--grad-hot);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 22px rgba(255, 45, 111, 0.55));
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    padding: 16px 24px;
    border-radius: 999px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.45s var(--ease-silk), box-shadow 0.45s var(--ease-silk), background-color 0.45s var(--ease-silk);
}

.btn-primary {
    position: relative;
    background: var(--grad-hot);
    background-size: 180% 100%;
    color: #fff;
    box-shadow: var(--glow-rouge);
    overflow: hidden;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(255, 45, 111, 0.5);
}

/* Slow satin sheen sweeping across the primary call to action */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: satin-sweep 5s var(--ease-silk) infinite;
}

@keyframes satin-sweep {
    0%, 65% { left: -60%; }
    100% { left: 130%; }
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--blush);
    border: 1px solid var(--glass-line);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 217, 230, 0.12);
    border-color: rgba(255, 45, 111, 0.55);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.15rem;
    border-radius: 999px;
}

.btn-white {
    background-color: var(--blush);
    color: #2A0716;
}

.btn-white:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Action panel over the hero */
.actions {
    position: absolute;
    bottom: 60px;
    left: 10%;
    width: 32%;
    min-width: 320px;
    max-width: 440px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(12, 8, 16, 0.72);
    border: 1px solid var(--glass-line);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* =========================================================
   Info / intro band
   ========================================================= */
.info {
    position: relative;
    padding: 110px 15%;
    text-align: center;
    background: var(--noir-2);
}

.info h2 {
    margin-bottom: 26px;
    font-size: 3rem;
    font-style: italic;
    color: var(--text-light);
}

.info p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 820px;
    margin: 0 auto;
}

/* =========================================================
   Alternating content sections
   ========================================================= */
.content-section {
    display: flex;
    align-items: center;
    padding: 100px 10%;
    background-color: var(--noir);
}

.content-section:nth-child(odd) {
    background-color: var(--noir-2);
}

.content-image {
    flex: 1;
    max-width: 45%;
}

.content-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-line);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.content-text {
    flex: 1;
    padding: 0 5%;
}

.content-text h2 {
    font-size: 2.4rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.content-list {
    margin: 20px 0;
    list-style: none;
}

.content-list li {
    position: relative;
    padding-left: 26px;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.content-list li::before {
    content: '♥';
    position: absolute;
    left: 0;
    color: var(--rouge);
}

.reverse-layout {
    flex-direction: row-reverse;
}

/* =========================================================
   Review cards
   ========================================================= */
.review-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: var(--glass);
    border: 1px solid var(--glass-line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.review-text {
    font-family: var(--font-display);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--blush);
}

.reviewer {
    font-weight: 600;
    color: var(--text-light);
}

.review-stars {
    color: var(--rouge);
    margin-top: 5px;
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-section {
    position: relative;
    padding: 110px 10%;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(70% 120% at 50% 0%, rgba(255, 45, 111, 0.45) 0%, transparent 70%),
        linear-gradient(135deg, #2A0418 0%, #12071C 50%, #1B0428 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(40% 60% at 85% 100%, rgba(176, 38, 255, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    position: relative;
    font-size: 3.1rem;
    font-style: italic;
    margin-bottom: 22px;
}

.cta-section p {
    position: relative;
    font-size: 1.25rem;
    color: rgba(255, 233, 242, 0.82);
    margin: 0 auto 45px;
    max-width: 760px;
}

.cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================================
   Footer base (footer.php carries its own layout styles)
   ========================================================= */
footer {
    position: relative;
    z-index: 1;
    background-color: var(--noir-3);
    color: var(--text-gray);
    padding: 60px 10% 30px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 15px;
}

.footer-section h3 {
    color: var(--blush);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.35s var(--ease-silk);
}

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

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-line);
    border-radius: 50%;
    color: var(--blush);
    text-decoration: none;
    transition: all 0.35s var(--ease-silk);
}

.social-icon:hover {
    background: var(--grad-hot);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--glow-rouge);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 217, 230, 0.1);
}

/* =========================================================
   Media queries
   ========================================================= */
@media (max-width: 1200px) {
    .actions {
        width: 38%;
    }

    .logo {
        font-size: 3rem;
    }

    .info {
        padding: 80px 10%;
    }

    .info h2 {
        font-size: 2.4rem;
    }

    .content-section {
        padding: 70px 5%;
    }

    .content-text h2 {
        font-size: 2.1rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .actions {
        width: 44%;
    }

    .logo {
        font-size: 2.7rem;
    }

    .review-container {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-section {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
    }

    .actions {
        width: 86%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 44px;
        min-width: auto;
    }

    .logo {
        font-size: 2.4rem;
    }

    .info {
        padding: 70px 6%;
    }

    .info h2 {
        font-size: 2rem;
    }

    .info p {
        font-size: 1.05rem;
    }

    .content-section,
    .reverse-layout {
        flex-direction: column;
        padding: 60px 5%;
    }

    .content-image {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .content-text {
        padding: 0;
    }

    .content-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .cta-section {
        padding: 70px 6%;
    }

    .cta-section h2 {
        font-size: 2.1rem;
    }

    .cta-section p {
        font-size: 1.05rem;
    }

    .footer-section {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .actions {
        width: 90%;
        min-width: auto;
        padding: 22px;
        bottom: 26px;
    }

    .logo {
        font-size: 2rem;
        top: 20px;
    }

    .btn {
        padding: 14px 18px;
        font-size: 0.98rem;
    }

    .info h2 {
        font-size: 1.7rem;
    }

    .info p {
        font-size: 1rem;
    }

    .content-text h2 {
        font-size: 1.6rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.02rem;
    }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .btn-primary::after {
        animation: none;
    }
}
