/*
Theme Name: Brain O Brain
Theme URI: https://brainobrain.com
Author: Brain O Brain Team
Author URI: https://brainobrain.com
Description: A modern, engaging WordPress custom theme designed for the Brain O Brain kids' skill development program. Features interactive animations, responsive design, and custom post types for programs, FAQs, and home sliders.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brainobrain
Tags: education, kids, learning, responsive, animation, e-learning

This theme is fully compatible with Classic Editor and supports Custom Post Types with translation ready.
*/

/* CSS Reset & Base Variables */

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--dark-color);
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

:root {
  /* Logo Palette */
  --bob-orange: #F38218;
  --bob-orange-hover: #D86F0F;
  --bob-green: #006B38;
  --bob-green-dark: #004D28;
  
  /* Neutral Color Assignments */
  --primary-color: var(--bob-orange);
  --secondary-color: var(--bob-green);
  --dark-color: #1F2D24;
  --light-color: #F8FBF9;
  --border-color: #E2E8E4;

  --font-heading: 'Fredoka', 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

/* Site Identity & Branding Rules */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding img, 
.custom-logo {
  max-height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-title-text {
  text-decoration: none;
  color: var(--bob-green);
}

.site-title-text h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.gt_container['*'] {position: block !important;}