/*
Theme Name: Astra Child - Who Is Near You
Theme URI: https://yourwebsite.com/
Description: Custom child theme for Who Is Near You premium medical platform.
Author: Antigravity AI
Author URI: https://yourwebsite.com/
Template: astra
Version: 1.0.0
Text Domain: winy-astra-child
*/

/* 🎨 DESIGN SYSTEM (STRICT) */
:root {
    --winy-primary: #0A66C2; /* Medical Blue */
    --winy-secondary: #00B4D8; /* Soft Blue Gradient Start */
    --winy-bg: #FFFFFF; /* Clean White */
    --winy-accent: #E6F4FF;
    --winy-glass-bg: rgba(255, 255, 255, 0.7);
    --winy-glass-border: rgba(255, 255, 255, 0.2);
    --winy-radius: 12px;
    --winy-shadow: 0 8px 32px 0 rgba(10, 102, 194, 0.1);
}

/* Glassmorphism Styles */
.winy-glass-card {
    background: var(--winy-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--winy-glass-border);
    border-radius: var(--winy-radius);
    box-shadow: var(--winy-shadow);
    padding: 2rem;
}

/* Rounded Edges (All elements) */
.winy-rounded {
    border-radius: var(--winy-radius);
}

/* Soft Shadows & Transitions */
.winy-premium-hover {
    transition: all 0.3s ease;
}

.winy-premium-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(10, 102, 194, 0.15);
}

/* 📱 MOBILE OPTIMIZATION: Sticky Bottom Nav */
.winy-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #FFFFFF;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #E6F4FF;
}

@media (max-width: 768px) {
    .winy-mobile-nav {
        display: flex;
    }
    body {
        padding-bottom: 70px; /* Allow space for bottom nav */
    }
}

.winy-mobile-nav a {
    text-decoration: none;
    color: #6c757d;
    font-size: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.winy-mobile-nav a.active {
    color: var(--winy-primary);
}

.winy-mobile-nav i {
    font-size: 20px;
}

/* 🟢 AdultFriendFinder Style: Online Indicator */
.winy-online-dot {
    height: 10px;
    width: 10px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

/* 💘 eHarmony Style: Compatibility Badge */
.winy-compat-badge {
    background: var(--winy-secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* 💎 Match.com Style: Clean Profile Cards */
.winy-profile-card {
    border: 1px solid #E6F4FF;
    overflow: hidden;
    background: #FFF;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.winy-profile-card:hover {
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.1);
}

.winy-profile-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.winy-profile-info {
    padding: 15px;
}
