/*
Theme Name: Intellimator AI
Theme URI: https://intellimator.ai
Author: Intellimator Team
Author URI: https://intellimator.ai
Description: A modern, professional one-page WordPress theme for Intellimator.ai featuring AI-powered education technology solutions. Fully responsive and optimized for performance.
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: intellimator
Tags: one-page, custom-menu, featured-images, full-width-template, sticky-post, translation-ready, blog, education, technology

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - HSL Format */
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  
  --accent: 0 0% 14.9%;
  --accent-foreground: 0 0% 98%;
  
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
  
  /* Hero Section Colors */
  --hero-bg: 0 0% 7%;
  --hero-text: 0 0% 95%;
  --hero-muted: 0 0% 70%;
  
  /* Shadows */
  --shadow-elegant: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius: 0.5rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

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

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .md-hidden {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

/* Animation Classes */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slide-in-left 0.5s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Transition Utilities */
.transition-all {
  transition: var(--transition-smooth);
}

.transition-colors {
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-opacity {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WordPress Core */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Navigation Styles */
.primary-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.primary-menu li {
  margin: 0;
}

.primary-menu a {
  color: hsl(var(--hero-text));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: opacity 0.3s;
}

.primary-menu a:hover {
  opacity: 0.8;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list a {
  color: hsl(var(--hero-text));
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: block;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-1px);
}

.logo-link:hover {
  opacity: 0.8;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .desktop-menu {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .desktop-menu {
    display: flex !important;
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}
