/*
Theme Name: Creative Possibilities Premium Portal
Theme URI: https://cpossibilities.com
Description: Premium IT services portal theme for Creative Possibilities Inc. Features professional design, service showcases, pricing displays, and client contact forms. Specialized for Mid-Hudson Valley IT consulting.
Author: Creative Possibilities Inc.
Author URI: https://cpossibilities.com
Version: 2.3.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cpi-portal
Tags: business, it-services, consulting, premium, professional, responsive, services
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Basic WordPress Theme Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4a4a68;
    margin: 0;
    padding: 0;
    background: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.premium-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fefefe;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fefefe;
}

.brand-badge {
    font-size: 0.7rem;
    color: rgba(254, 254, 254, 0.8);
    display: block;
}

.brand-location {
    font-size: 0.6rem;
    color: rgba(254, 254, 254, 0.7);
}

.nav-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #fefefe;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: rgba(254, 254, 254, 0.8);
}

/* Main Content */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #000000 100%);
    color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(248, 248, 248, 0.9);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: #f8f8f8;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #666666 0%, #4a4a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #f8f8f8;
    border: 2px solid #666666;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: #f8f8f8;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.bento-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f9f9fb 0%, #fefefe 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #4a4a68;
}

.section-subtitle {
    text-align: center;
    color: #6b7189;
    margin-bottom: 3rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: #fefefe;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(44, 44, 44, 0.15);
    transition: all 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(44, 44, 44, 0.3);
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.bento-header h3 {
    margin: 0;
    color: #4a4a68;
}

.bento-icon {
    font-size: 2rem;
}

.service-description {
    color: #6b7189;
    margin-bottom: 16px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.pricing-card {
    background: #fefefe;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(44, 44, 44, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(44, 44, 44, 0.3);
}

.pricing-header h3 {
    margin: 16px 0;
    color: #4a4a68;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.rate-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rate-period {
    color: #6b7189;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    color: #2c2c2c;
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Footer */
.premium-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #f8f8f8;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: #fefefe;
    margin-bottom: 16px;
}

.footer-column h4 {
    color: #fefefe;
    margin-bottom: 16px;
}

.footer-column a {
    color: rgba(254, 254, 254, 0.8);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fefefe;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(254, 254, 254, 0.2);
    color: rgba(254, 254, 254, 0.8);
    font-size: 0.9rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-animation {
    text-align: center;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(248, 248, 248, 0.3);
    border-top: 3px solid #f8f8f8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 16px;
}

.loading-letter {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8f8f8;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bento-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Hide elements that might cause issues */
.cookie-consent,
.modal {
    display: none;
}