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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #121416; /* Background color for the entire website, including individual sections */
  --default-color: #dddddd; /* Default color used for the majority of the text content across the entire website */
  --hero-color: #fafafa;	/* propio */	
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c59d5f; /* 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: #222426; /* 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;	/* Añadido*/
  --background-color-header: rgba(34, 34, 34, 0.85); /* Para color negro - Añadido*/		
}

/* 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: #dddddd;  /* The default color of the main navmenu links */
  --nav-hover-color: #c59d5f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #292e32; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #292e32; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #dddddd; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #c59d5f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

/* Gallery Color de los iconos de la galeria - Añadido Camf*/
: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 */
}

/* 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: #191b1e;
  --surface-color: #40484e;
}

.dark-background {
  --background-color: #0c0d0f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #222427;
  --contrast-color: #ffffff;
}