/*!
Theme Name: Linked-Up Dating Theme
Description: A comprehensive WordPress dating theme with matching, messaging, and premium features. Mobile-first responsive design optimized for modern dating applications.
Author: Creative Ground
Version: 1.14.1
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linked-up-dating
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.1
Tags: dating, social, responsive, mobile-first, accessibility-ready
*/

/**
 * Linked-Up Dating Theme - Main Stylesheet
 * =========================================
 * 
 * This file only contains the required WordPress theme header.
 * All actual styles have been organized into modular CSS files for better maintainability.
 * 
 * CSS Architecture:
 * ----------------
 * 
 * Core CSS Files (always loaded):
 * 1. /assets/css/normalize.css - CSS reset and normalization
 * 2. /assets/css/theme-global.css - Global theme styles, CSS variables, design tokens
 * 3. /assets/css/components.css - Reusable component styles (buttons, cards, modals, etc.)
 * 4. /assets/css/dating.css - Dating-specific functionality styles
 * 5. /assets/css/header.css - Header and navigation styles with 4 style variations:
 *    - Standard (default)
 *    - Centered (logo centered with menu below)
 *    - Transparent (transparent background)
 *    - Minimal (simplified design)
 * 6. /assets/css/responsive.css - Responsive design breakpoints and mobile styles
 * 
 * Page-Specific CSS Files (conditionally loaded):
 * - browse-modern.css - Browse profiles page styles
 * - search-discovery.css - Search and discovery features
 * - matching.css - Matching system and match cards
 * - messaging.css - Messaging interface and chat styles
 * - my-profile.css - User profile management page
 * - profile-management.css - Profile editing interface
 * - user-dashboard.css - User dashboard styles
 * - user-profile-view.css - Public profile view page
 * - authentication.css - Login/register page styles
 * - subscription-frontend.css - Subscription and upgrade pages
 * - credits.css - Credits system UI
 * 
 * Customizer Styles:
 * -----------------
 * Dynamic styles from the WordPress Customizer are added inline via wp_add_inline_style()
 * This includes user-selected colors, fonts, and layout options.
 * 
 * Performance Notes:
 * -----------------
 * - CSS files are minified in production
 * - Page-specific styles only load on relevant pages
 * - Critical CSS is loaded first for optimal rendering
 * - All styles are properly enqueued through WordPress with version control
 * 
 * For developers:
 * --------------
 * To modify styles, edit the appropriate CSS file in /assets/css/
 * Do not add styles directly to this file as they will be overwritten.
 * 
 * @package LinkedUpDating
 * @since 1.5.0
 */

/* WordPress Required Styles */

/* Accessibility - Skip Link */
.screen-reader-text,
.lud-skip-link {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus,
.lud-skip-link:focus {
    background-color: #e91e63;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #ffffff;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.alignwide {
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignfull {
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* WordPress Caption */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* WordPress Galleries */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/* Sticky Post */
.sticky {
    display: block;
}

/* WordPress Post Formats */
.format-aside,
.format-status {
    border-left: 4px solid #e91e63;
    padding-left: 1em;
}

/* WordPress Comments */
.bypostauthor {
    display: block;
}

/* End of style.css - All other styles are in /assets/css/ */
