@charset "utf-8";
/* CSS Document */

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --hero-color: #666;	/* propio */	
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff4a17; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #DDDDDD; /* #ffffff #DDDDDD The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color-social: #000;
  --background-color-header: rgba(245,245,245,0.85);	 /* rgba(245,245,245,0.85) Para color blanco - rgba(21, 34, 43, 0.85) Original Dewi */		
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #666;  /* #e5eaee The default color of the main navmenu links */
  --nav-hover-color: #ff4a17; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-mobile-tougle-active:#fff; /* #fff Color del botón de alternancia nav móvil cuando está activo - Propia*/	
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Php-email-form Colores del formulario de contactos */
:root {
  --php-email-form-color: #ffffff;
  --php-email-form-background: #059652;
  --php-email-form-error-color: #ffffff; 
  --php-email-form-error-background: #df1529;
}

/* Preloader Pantalla inicial de efecto apertura */
:root {
  --preloader-background-color: #fff; /* #000000 #fff Fondo;*/
  --preloader-background-color-line:#000; /* #ffffff #000 #F20307 Linea*/
}

/* Gallery Color de los iconos de la galeria */
:root {
 --gallery-links-color:#ffffff; /* #ffffff rgba(255, 255, 255, 0.5) */
 --gallery-links-color-hover:#F89E00; /* #ffffff #000 #F4070B */
 --gallery-border-radius: 2px; /* 10 */
 --gallery-background: rgba(0, 0, 0, 0.2); /* rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.6) */
 --glightbox-gslide-color:rgba(255, 255, 255, 0.8); /* Color descripción */	
 --glightbox-gslide-background: #272727; /* #272727 #F80307 Color fondo descripción */
 --glightbox-gslide-max-height: 70px; /* Camf 45px y con 0px no vemos título bajo la imagen */
}

/* Testimonials-stars Color de estrellas */
:root {
  --testimonials-stars-color: #ffc107; /* #ffc107 #07B3F3 */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}