/*
Theme Name: Expo Diseñarte Child
Theme URI: https://expodisenarte.com
Description: Child theme para Expo Diseñarte 2026
Author: Kevin Ramos
Author URI: https://expodisenarte.com
Template: lc-blank
Version: 1.0
*/

@import url("../lc-blank/style.css");

/* ============================================
   RESET Y BASE
   ============================================ */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }

body {
	font-family: 'Athletics', sans-serif;
	background: #262626;
	color: #ffffff;
	overflow-x: hidden;
}

/* ============================================
   TIPOGRAFÍAS
   ============================================ */
@font-face {
	font-family: 'Athletics';
	src: url('fonts/Athletics-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Snell Roundhand';
	src: url('fonts/SnellRoundhand-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* ============================================
   PALETA DE COLORES
   ============================================ */
:root {
	--gray-warm: #a1968c;
	--brown-dark: #4a3f3c;
	--black: #262626;
	--beige-light: #dfdace;
	--cream: #faf8f5;
	--brown-deep: #37160f;
	--blue-pale: #cddee8;
	--beige-sand: #ede1bd;
	--mustard: #9a7726;
	--white: #ffffff;
}

/* ============================================
   GRAIN TEXTURE
   ============================================ */
body:before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".9" numOctaves="2"/></filter><rect width="200" height="200" filter="url(%23n)" opacity=".4"/></svg>');
	opacity: 0.03;
	pointer-events: none;
	z-index: 9998;
}

/* ============================================
   HEADINGS & TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}

h1 { font-size: 3em; line-height: 1.1; }
h2 { font-size: 2.5em; line-height: 1.2; }
h3 { font-size: 2em; line-height: 1.3; }
h4 { font-size: 1.5em; line-height: 1.4; }
h5 { font-size: 1.25em; line-height: 1.5; }
h6 { font-size: 1em; line-height: 1.6; }

p {
	line-height: 1.6;
	margin-bottom: 1em;
}

/* ============================================
   LINKS
   ============================================ */
a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--mustard);
}

a:focus {
	outline: 2px solid var(--mustard);
	outline-offset: 2px;
}

/* ============================================
   IMAGES
   ============================================ */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: 0;
	padding: 0;
}

/* ============================================
   CONTAINERS
   ============================================ */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
}

.site {
	max-width: 100%;
	margin: 0 auto;
}

.site-content {
	margin-top: 100px;
}

/* ============================================
   SCREEN READER TEXT
   ============================================ */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.skip-link {
	background-color: var(--black);
	box-shadow: 0 0 0 2px var(--white);
	color: var(--white);
	display: inline-block;
	font-family: 'Athletics', sans-serif;
	font-size: 14px;
	font-weight: 600;
	left: -9999px;
	outline: none;
	padding: 15px 23px;
	text-decoration: none;
	top: -9999px;
	z-index: 100000;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	z-index: 100001;
}

/* ============================================
   WORDPRESS DEFAULT OVERRIDES
   ============================================ */
.wp-caption {
	background: transparent;
	border: none;
}

.wp-caption-text {
	margin: 0.8075em 0;
}

.entry-content {
	margin: 1.5em 0 0;
}

.entry-content > * + * {
	margin-top: 1.5em;
}

/* ============================================
   BUTTONS
   ============================================ */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: var(--mustard);
	border: none;
	color: var(--black);
	cursor: pointer;
	font-family: 'Athletics', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 6px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	letter-spacing: 0.08em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: var(--beige-sand);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	transform: translateY(0);
}

button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--beige-light);
	border-radius: 8px;
	color: var(--white);
	font-family: inherit;
	font-size: 14px;
	padding: 12px 16px;
	transition: all 0.3s ease;
	width: 100%;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--mustard);
	outline: none;
	box-shadow: 0 0 0 3px rgba(154, 119, 38, 0.1);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

select {
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="white" d="M6 9L1 4h10z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

/* ============================================
   LISTS
   ============================================ */
ul, ol {
	margin: 0;
	padding-left: 1.5em;
}

li {
	margin-bottom: 0.5em;
}

/* ============================================
   TABLES
   ============================================ */
table {
	border-collapse: collapse;
	width: 100%;
	margin: 1em 0;
}

th, td {
	border: 1px solid var(--beige-light);
	padding: 12px;
	text-align: left;
}

th {
	background: rgba(255, 255, 255, 0.05);
	font-weight: 700;
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 981px) {
	.container {
		padding: 0 32px;
	}

	.site-content {
		margin-top: 100px;
	}

	h1 { font-size: 3.5em; }
	h2 { font-size: 2.8em; }
	h3 { font-size: 2.2em; }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 980px) {
	.container {
		padding: 0 24px;
	}

	.site-content {
		margin-top: 80px;
	}

	h1 { font-size: 2.5em; }
	h2 { font-size: 2em; }
	h3 { font-size: 1.5em; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.site-content {
		margin-top: 70px;
	}

	h1 { font-size: 1.8em; }
	h2 { font-size: 1.5em; }
	h3 { font-size: 1.2em; }

	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 13px;
		padding: 10px 20px;
	}

	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	textarea,
	select {
		font-size: 16px;
		padding: 10px 12px;
	}
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (prefers-color-scheme: dark) {
	body {
		background: var(--black);
		color: var(--white);
	}
}