:root {
    --primary-color: #00a8ff;
    --primary-light: #e1f5fe;
    --primary-dark: #008be5;
    --secondary-color: #ff9f43;
    --secondary-dark: #e88b32;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-light: #f5f6fa;
    --bg-white: #ffffff;
    --border-color: #dcdde1;
    --accent-color: #1dd1a1;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Cairo', sans-serif;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Enhancements */
.fw-black { font-weight: 900; }
.ls-1 { letter-spacing: 1px; }

/* Custom Colors */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.btn-primary { 
    background-color: var(--primary-color); 
    border-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }

/* Dynamic Shadows & Hover */
.transition-hover {
    transition: var(--transition);
}
.transition-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover) !important;
}

/* Navbar */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: var(--shadow);
}
.navbar-brand img {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}
.nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.9) 0%, rgba(29, 209, 161, 0.8) 100%),
        url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* Playful Shapes */
.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
}
.shape-1 {
    top: 10%; right: 5%; width: 100px; height: 100px; background: var(--secondary-color); border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.shape-2 {
    bottom: 15%; left: 10%; width: 80px; height: 80px; background: #ff4757; clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Cards */
.toy-card {
    background: var(--bg-white);
    border-radius: 25px;
    border: none;
    overflow: hidden;
}
.icon-box {
    width: 80px; height: 80px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    transition: var(--transition);
}
.toy-card:hover .icon-box {
    transform: rotate(0deg) scale(1.1);
    background: var(--secondary-color);
    color: white;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--bg-light);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
footer a { color: var(--border-color); text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--secondary-color); padding-right: 5px; }

/* Utilities */
.rounded-4 { border-radius: 20px !important; }
.rounded-5 { border-radius: 30px !important; }
