/*
Theme Name: EduBlink
Theme URI: https://edublink.co/
Author: DevsBlink
Author URI: https://themeforest.net/user/devsblink/portfolio
Description: EduBlink Theme For LMS and Education Purpose.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: edublink
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

EduBlink is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* ═══════════════════════════════════════════════════════
   MIHIKA SANSARE — Global Stylesheet for Elementor
   Add this to: Appearance → Customize → Additional CSS
   OR Elementor → Site Settings → Custom CSS
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ─── CSS Custom Properties (Color Palette) ─── */
:root {
  --ms-steel: #80A1BA;
  --ms-steel-dark: #5E8099;
  --ms-steel-deep: #4A6E85;
  --ms-teal: #91C4C3;
  --ms-teal-light: #A8D4D3;
  --ms-sage: #B4DEBD;
  --ms-sage-light: #CCEBD3;
  --ms-cream: #FFF7DD;
  --ms-cream-warm: #FFF7DD;
  --ms-cream-pure: #FFFDF5;
  --ms-white: #FFFFFF;
  --ms-text-dark: #2C3E4A;
  --ms-text-body: #4A5E6A;
  --ms-text-muted: #7A9AAB;
  --ms-border: rgba(128,161,186,0.2);
  --ms-shadow-sm: 0 2px 12px rgba(128,161,186,0.08);
  --ms-shadow-md: 0 8px 30px rgba(128,161,186,0.12);
  --ms-shadow-lg: 0 20px 60px rgba(128,161,186,0.15);
}

/* ─── Base Typography ─── */
body {
  font-family: 'Outfit', sans-serif;
  color: var(--ms-text-dark);
  background-color: var(--ms-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ms-text-dark);
}

p {
  font-family: 'Outfit', sans-serif;
  color: var(--ms-text-body);
  font-weight: 300;
  line-height: 1.7;
}

a {
  color: var(--ms-steel);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ms-steel-deep);
}

/* ─── Elementor Overrides ─── */
.elementor-heading-title {
  font-family: 'Cormorant Garamond', serif !important;
}

.elementor-widget-text-editor {
  font-family: 'Outfit', sans-serif;
}

.elementor-button {
  font-family: 'Outfit', sans-serif !important;
  transition: all 0.3s ease !important;
}

.elementor-button:hover {
  transform: translateY(-2px);
}

/* ─── Smooth Scroll ─── */
html {
  scroll-behavior: smooth;
}

/* ─── Selection Color ─── */
::selection {
  background: var(--ms-teal);
  color: #fff;
}

/* ─── Scrollbar Styling ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ms-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--ms-steel);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ms-steel-deep);
}

/* ─── FAQ Accordion ─── */
.mihika-faq-item {
  transition: border-color 0.3s ease;
}

.mihika-faq-item:hover {
  border-color: var(--ms-teal) !important;
}

.mihika-faq-item.open {
  border-color: var(--ms-teal) !important;
  box-shadow: var(--ms-shadow-sm);
}

.mihika-faq-item.open > div:first-child > span {
  background: var(--ms-teal) !important;
  color: #fff !important;
  transform: rotate(45deg);
}

/* ─── Marquee Animation ─── */
@keyframes mihika-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .elementor-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}