/*
Theme Name: Foodking
Author: Modina Theme
Author URI: https://themeforest.net/user/modinatheme/
Description: Fast Food Restaurant Html
Version: 2.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section
 @import 'footer';n facts */


/* =============================
   BOTONES FONDO BLANCO — HOVER AZUL
   ============================= */
.theme-btn.bg-white:hover {
  color: #fff;
}
.theme-btn.bg-white:hover::before {
  background-color: #1565C0;
}

/* =============================
   ÍCONO PALETA DE HIELO EN MENÚ
   ============================= */

/* Ocultar las barras de hamburguesa */
.sidebar__toggle .header-bar {
  width: 24px;
  height: 38px;
}
.sidebar__toggle .header-bar span {
  opacity: 0;
}

/* Cuerpo de la paleta */
.sidebar__toggle .header-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 22px;
  background-color: var(--header);
  border-radius: 7px 7px 3px 3px;
  transition: background-color 0.3s ease;
}

/* Palito */
.sidebar__toggle .header-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 14px;
  background-color: var(--header);
  border-radius: 0 0 3px 3px;
  transition: background-color 0.3s ease;
}

/* Hover: paleta en color verde/tema */
.sidebar__toggle:hover .header-bar::before,
.sidebar__toggle:hover .header-bar::after {
  background-color: var(--theme);
}
