/*
Theme Name: S2S Core - Multipurpose Business Theme
Theme URI: https://skill2sky.com
Author: Skill2Sky
Author URI: https://skill2sky.com
Description: A modern, multipurpose WordPress theme designed for office environments, consulting firms, corporate offices, agencies, and professional service businesses. Features a clean, minimalist design with Bootstrap 5 framework, fully responsive layout, and comprehensive customization options.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: s2score
Tags: business, corporate, portfolio, one-page, custom-colors, custom-menu, featured-images, flexible-header, custom-logo, translation-ready, theme-options, responsive-layout

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ===================================
   Google Fonts Import
   Note: Fonts are loaded dynamically via the customizer based on user selection.
   No need to import specific fonts here.

   Recommended Pairings:
   1. Inter (Headings) + Open Sans (Body) - Modern, Professional
   2. Montserrat (Headings) + Lato (Body) - Clean, Corporate
   3. Poppins (Headings) + Roboto (Body) - Contemporary, Tech-forward
   4. Fascinate (Headings) + Poppins (Body) - Bold, Modern
   =================================== */

/* ===================================
   CSS Variables - Color Palette
   Professional Business Colors
   =================================== */

:root {
    /* Primary Colors */
    --primary-color: #11A2D7;        /* Cyan Blue */
    --primary-dark: #0d7ba8;         /* Darker Cyan Blue */
    --primary-light: #3fb5e0;        /* Lighter Cyan Blue */

    /* Primary Colors RGB (for dynamic opacity) */
    --primary-rgb: 17, 162, 215;      /* RGB of #11A2D7 */
    --primary-dark-rgb: 13, 123, 168; /* RGB of #0d7ba8 */
    --primary-light-rgb: 63, 181, 224; /* RGB of #3fb5e0 */

    /* Secondary Colors */
    --secondary-color: #E775A6;      /* Pink */
    --secondary-dark: #d44d85;       /* Darker Pink */
    --secondary-light: #ee9dc0;      /* Lighter Pink */

    /* Secondary Colors RGB (for dynamic opacity) */
    --secondary-rgb: 231, 117, 166;   /* RGB of #E775A6 */
    --secondary-dark-rgb: 212, 77, 133; /* RGB of #d44d85 */
    --secondary-light-rgb: 238, 157, 192; /* RGB of #ee9dc0 */

    /* Accent Colors */
    --accent-color: #F7DC6F;         /* Yellow */
    --accent-dark: #f3cc3d;          /* Darker Yellow */
    --accent-light: #fae69b;         /* Lighter Yellow */

    /* Accent Colors RGB (for dynamic opacity) */
    --accent-rgb: 247, 220, 111;      /* RGB of #F7DC6F */
    --accent-dark-rgb: 243, 204, 61;  /* RGB of #f3cc3d */
    --accent-light-rgb: 250, 230, 155; /* RGB of #fae69b */

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #e2e8f0;
    --medium-gray: #94a3b8;
    --dark-gray: #475569;
    --text-dark: #1e293b;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography - Default fallback fonts (will be overridden by customizer) */
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-speed: 0.3s;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Global Styles
   =================================== */

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-dark);
}

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

/* ===================================
   Utility Classes
   =================================== */

.section-padding {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.section-title .subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: var(--secondary-color);
}

/* ===================================
   WordPress Core Styles
   =================================== */

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

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

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ===================================
   Responsive Helpers
   =================================== */

@media (max-width: 991px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-desktop {
        display: none !important;
    }
}
