/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://clickuniv.com/
Author: ClickUniv Team
Author URI: https://clickuniv.com/
Description: A professional child theme for ClickUniv - Empowering Academics and Transforming Higher Education. Built on Twenty Twenty-Five.
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, accessibility-ready
*/

/* -------------------------------------------------------------------------
   ClickUniv Custom Styles
   ------------------------------------------------------------------------- */

:root {
    /* Primary Colors */
    --cu-primary: #1E3A5F;
    --cu-primary-dark: #152A45;
    --cu-primary-light: #2D5A8F;
    
    /* Secondary Colors */
    --cu-secondary: #2A9D8F;
    --cu-secondary-dark: #1F7A6F;
    --cu-secondary-light: #3DBAA8;
    
    /* Accent Colors */
    --cu-accent: #E9C46A;
    --cu-accent-dark: #D4A84A;
    --cu-accent-light: #F5D88A;
    
    /* Neutral Colors */
    --cu-dark: #1A1A2E;
    --cu-gray-dark: #333333;
    --cu-gray: #686868;
    --cu-gray-light: #E8E8E8;
    --cu-light: #F8F9FA;
    --cu-white: #FFFFFF;
    
    /* Functional Colors */
    --cu-success: #28A745;
    --cu-info: #17A2B8;
    --cu-warning: #FFC107;
    --cu-error: #DC3545;
}

/* Base Styles */
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--cu-gray-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--cu-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Hero Section Enhancements */
.cu-hero {
    position: relative;
    background: linear-gradient(135deg, var(--cu-primary) 0%, var(--cu-primary-dark) 100%);
}

.cu-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.7);
}

.cu-hero-content {
    position: relative;
    z-index: 2;
}

/* Button Styles */
.wp-block-button__link {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Primary Button */
.cu-btn-primary .wp-block-button__link {
    background: var(--cu-secondary);
    color: var(--cu-white);
}

.cu-btn-primary .wp-block-button__link:hover {
    background: var(--cu-secondary-dark);
}

/* Secondary Button (Outline) */
.cu-btn-secondary .wp-block-button__link {
    background: transparent;
    border: 2px solid var(--cu-white);
    color: var(--cu-white);
}

.cu-btn-secondary .wp-block-button__link:hover {
    background: var(--cu-white);
    color: var(--cu-primary);
}

/* Accent Button */
.cu-btn-accent .wp-block-button__link {
    background: var(--cu-accent);
    color: var(--cu-dark);
}

.cu-btn-accent .wp-block-button__link:hover {
    background: var(--cu-accent-dark);
}

/* Value Highlights Section */
.cu-value-highlights {
    background: var(--cu-light);
}

.cu-value-item {
    padding: 2rem;
    border-radius: 12px;
    background: var(--cu-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cu-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cu-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cu-secondary-light), var(--cu-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--cu-white);
    font-size: 1.5rem;
}

/* Trust Logos Section */
.cu-trust-logos {
    background: var(--cu-white);
    padding: 4rem 0;
}

.cu-logo-item {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.cu-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cu-hero {
        min-height: 60vh;
    }
    
    .cu-value-item {
        padding: 1.5rem;
    }
}

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

.cu-animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Section Spacing */
.cu-section {
    padding: 5rem 0;
}

.cu-section-large {
    padding: 7rem 0;
}