/*
Theme Name: Machupicchu Great Travel V1
Theme URI: https://machupicchugreattravels.com
Author: Machupicchu Great Travels
Author URI: https://machupicchugreattravels.com
Description: Template personalizado para Machupicchu Great Travels. Diseñado para agencia de viajes con tours al Machu Picchu y destinos del Perú.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: machupicchu-great-travel
Tags: travel, tours, peru, machupicchu, custom
*/

/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    /* Colores principales */
    --color-primary:     #32AEB0;
    --color-secondary:     #248A8E;
    --color-tertiary:     #E9A129;
    --color-quaternary:     #E97B26;
    --color-quinary:     #DD6A29;
    --color-senary:     #A7C937;
    --color-septenary:     #80A931;
    --color-octonary:     #2F3847;
    --color-nonary:     #181F28;

    /* Neutros */
    --color-white:       #FFFFFF;
    --color-light:       #F5F5F0;
    --color-gray:        #888888;
    --color-dark:        #1C1C1C;

    /* Tipografía */
    --font-heading: 'skolar-latin', Georgia, serif;
    --font-body:    'Work Sans', Arial, sans-serif;

    --font-size-base: 62.5%;
    --line-height-base: 1.6;

    /* Espaciado */
    --spacing-xs:  0.5rem;
    --spacing-sm:  1rem;
    --spacing-md:  2rem;
    --spacing-lg:  4rem;
    --spacing-xl:  6rem;

    /* Contenedor */
    --container-max: 128rem;
    --container-padding: 1.5rem;

    /* Bordes */
    --border-radius-sm: .4rem;
    --border-radius-md: .8rem;
    --border-radius-lg: 1.6rem;

    /* Sombras */
    --shadow-sm: 0 .2rem .8rem rgba(0,0,0,0.08);
    --shadow-md: 0 .4rem 2rem rgba(0,0,0,0.12);
    --shadow-lg: 0 .8rem 4rem rgba(0,0,0,0.16);

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: var(--line-height-base);
    color: var(--color-dark);
    /* background-color: var(--color-white); */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   CONTENEDOR
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

li {
    list-style-position: inside;
}

.site-content {
    position: relative;
}