/*
Theme Name: IEBA Premium
Theme URI: https://iebagroup.com
Author: Antigravity
Author URI: https://iebagroup.com
Description: High-end, professional WordPress theme with Elementor integration and premium animations.
Version: 1.0.0
Text Domain: ieba-premium
*/

/* ===== CSS Variables ===== */
:root {
    --c-primary: #F5A623;
    --c-secondary: #1A1A2E;
    --c-dark: #0A0A1E;
    --c-white: #FFFFFF;
    --c-light: #F7F8FC;
    --c-text: #555555;
    --c-heading: #1A1A2E;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --radius-lg: 30px;
    --radius-md: 15px;
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-main);
    color: var(--c-text);
    background: var(--c-light);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--c-heading);
    font-weight: 800;
    line-height: 1.2;
}

/* ===== Professional Section Style ===== */
.section-premium {
    padding: 120px 0;
    position: relative;
}

.section-title-wrap {
    margin-bottom: 70px;
}

.sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-primary);
    margin-bottom: 15px;
}

.main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--c-secondary);
}

/* ===== Stylish Hover Effects for Images ===== */
.img-hover-reveal {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.img-hover-reveal img {
    width: 100%;
    transition: var(--transition-smooth);
}

.img-hover-reveal:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(0.7);
}

.img-reveal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    color: var(--c-white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.img-hover-reveal:hover .img-reveal-content {
    opacity: 1;
    transform: translateY(0);
}

/* ===== New Style Buttons ===== */
.btn-new-style {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--c-secondary);
    color: var(--c-white);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-new-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--c-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-new-style:hover::before {
    left: 0;
}

.btn-new-style:hover {
    color: var(--c-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

/* Glassmorphism Sections */
.glass-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-premium);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
