/* 
 * ELITE COMPANIONS - PREMIUM THEME
 * Theme: Valentine's Love (Black, Pink, Crimson)
 * Vibe: Glassmorphism, Sophisticated, High-Contrast
 */

:root {
    /* Colors */
    --bg-dark: #FFF0F5;
    /* Lavender Blush */
    --bg-panel: #FFFFFF;
    /* White Panel */
    --bg-glass: rgba(255, 255, 255, 0.8);
    /* Glass Effect */
    /* Global Styles */
    --primary-color: #E11D48;
    /* Pink/Red for Love/Passion */
    --secondary-color: #D4AF37;
    /* Gold */
    --bg-color: #FFF0F5;
    /* Lavender Blush */
    --text-color: #333;

    --primary-gold: #FF1493;
    /* Valentine Pink */
    --primary-gold-dim: #C71585;
    --primary-red: #E11D48;
    /* Passion Crimson */

    --text-white: #333333;
    --text-gray: #555555;

    --border-glass: rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-head: 'Playfair Display', serif;
    --font-body: 'Manrope', 'Inter', sans-serif;

    /* Spacing & Radii */
    --radius-lg: 16px;
    --radius-pill: 50px;

    /* Legacy Compatibility */
    --secondary-bg: var(--bg-panel);
    --text-muted: var(--text-gray);
    --text-main: var(--text-white);
    --border-color: #222;
    --primary-bg: var(--bg-dark);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

/* Typography Utilities */
.text-gold {
    color: var(--primary-gold);
}

.text-red {
    color: var(--primary-red);
}

.text-grad-gold {
    background: linear-gradient(135deg, #FF69B4, #FF1493, #C71585);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #C71585);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Header */
header {
    --text-gray: #EEE;
    --text-white: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #FFF;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 240, 245, 0.3), rgba(255, 240, 245, 1)), url('../images/timo-profile.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #FFF0F5 90%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* Search Bar */
.search-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 0.8rem;
    border-radius: 100px;
    display: flex;
    gap: 0.5rem;
    max-width: 700px;
}

.search-bar select {
    flex: 1;
    background: transparent;
    border: none;
    color: #333;
    padding: 0 1.5rem;
    font-size: 1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
}

.search-bar select option {
    background: #FFF;
    color: #333;
}

.search-bar button {
    background: var(--primary-gold);
    color: #000;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-bar button:hover {
    transform: scale(1.05);
}

/* Features & Steps */
.feature-card {
    background: #FFFFFF;
    border: 1px solid #FFE4E1;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Heart Animation - Blooming & Rotating */
.heart {
    position: fixed;
    top: -10vh;
    transform: translateY(0);
    width: 20px;
    height: 20px;
    background: rgba(255, 20, 147, 0.6);
    /* Deep Pink */
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 50% 80%, 18% 100%, 0% 38%);
    animation: fall linear forwards;
    z-index: -1;
    /* Behind content */
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(720deg) scale(1.2);
        /* Rolling & Blooming */
        opacity: 0;
    }
}

/* Popular Searches Tag Cloud - FIXED */
.related-searches-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    /* Explicit gap */
    margin-top: 20px;
}

.related-search-tag {
    display: inline-block;
    /* Force block behavior */
    background: #FFF;
    color: #E11D48;
    border: 2px solid #E11D48;
    padding: 10px 20px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.related-search-tag:hover {
    background: #E11D48;
    color: #FFF !important;
    /* Force color change */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(225, 29, 72, 0.3);
}

/* Content Separation */
.content-section {
    padding: 3rem 2rem;
    margin: 2rem 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-section.highlight-bg {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFF 100%);
    border: 1px solid #FFC0CB;
}

/* Requirements Section Layout */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: #FFF0F5;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #FF69B4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr 1.5fr;
        text-align: left;
    }
}

.requirements-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.requirements-circle-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #D4AF37;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.requirements-circle-img:hover {
    transform: scale(1.05) rotate(3deg);
}

.requirements-content h3 {
    color: #C71585;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.requirements-list i {
    color: #D4AF37;
    margin-top: 5px;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #FFFAFA;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #FFE4E1;
    transition: all 0.4s ease;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold-dim);
}

.profile-img-wrap {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.08);
}

.profile-details {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #FFFFFF, #FFF0F5);
    position: relative;
}

.profile-name {
    font-size: 1.5rem;
    font-family: var(--font-head);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.verified-badge {
    font-size: 0.75rem;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-body);
}

.profile-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.profile-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer */
footer {
    --text-gray: #EEE;
    --text-white: #FFF;
    color: var(--text-white);
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #FFF;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-gray);
}

.footer-col a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .search-bar {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-bar select {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
}