/*
Theme Name: Rui Holistic
Author: Tu Nombre
Description: Tema personalizado para Rui Holistic - Masaje Holístico
Version: 1.0
Text Domain: rui-holistic
*/

/* ========================================
   VARIABLES DE COLOR (Del Logo)
   ======================================== */
:root {
	--off-white: #FAF9F6;
	--beige: #F5F0E8;
	--lilac: #946DA4;
	--lilac-light: #C9B8D4;
	--blue-pastel: #8EBBCE;
	--blue-dark: #20343B;
	--blue-dark-light: #3A4F57;
}

/* ========================================
   RESET Y BASE
   ======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: var(--off-white);
	color: var(--blue-dark);
	line-height: 1.8;
	font-weight: 300;
}

h1, h2, h3, h4 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	letter-spacing: 0.5px;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

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

/* ========================================
   NAVEGACIÓN
   ======================================== */
nav {
	background-color: var(--off-white);
	padding: 1.5rem 5%;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(32, 52, 59, 0.05);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-svg {
	width: 60px;
	height: 60px;
}

.logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	color: var(--lilac);
	font-weight: 400;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}

.nav-links a {
	color: var(--blue-dark);
	font-size: 0.95rem;
	font-weight: 400;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--lilac);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	color: var(--lilac);
}

.lang-toggle {
	display: flex;
	gap: 0.5rem;
	border: 1px solid var(--lilac-light);
	border-radius: 20px;
	padding: 0.3rem;
}

.lang-toggle button {
	background: none;
	border: none;
	padding: 0.3rem 0.8rem;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	color: var(--blue-dark);
}

.lang-toggle button.active {
	background-color: var(--lilac);
	color: white;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu span {
	width: 25px;
	height: 2px;
	background-color: var(--blue-dark);
	transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
	margin-top: 90px;
	padding: 6rem 5%;
	background: linear-gradient(135deg, var(--beige) 0%, var(--off-white) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--lilac-light) 0%, transparent 70%);
	opacity: 0.3;
	border-radius: 50%;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--blue-pastel) 0%, transparent 70%);
	opacity: 0.2;
	border-radius: 50%;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	color: var(--blue-dark);
	margin-bottom: 1rem;
	font-weight: 300;
	line-height: 1.2;
}

.hero .tagline {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: var(--lilac);
	font-style: italic;
	margin-bottom: 2rem;
	font-weight: 300;
}

.hero-intro {
	font-size: 1.1rem;
	line-height: 2;
	color: var(--blue-dark-light);
	max-width: 700px;
	margin: 0 auto 2.5rem;
}

/* ========================================
   BOTONES
   ======================================== */
.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: var(--lilac);
	color: white;
	border-radius: 30px;
	font-size: 0.95rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid var(--lilac);
}

.cta-button:hover {
	background-color: transparent;
	color: var(--lilac);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(148, 109, 164, 0.3);
}

.cta-button.secondary {
	background-color: transparent;
	color: var(--lilac);
	margin-left: 1rem;
}

.cta-button.secondary:hover {
	background-color: var(--lilac);
	color: white;
}

/* ========================================
   SECCIONES GENERALES
   ======================================== */
section {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--blue-dark);
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, var(--lilac), var(--blue-pastel));
}

.content-section {
	background-color: white;
	margin: 3rem auto;
	padding: 4rem;
	border-radius: 5px;
	box-shadow: 0 5px 30px rgba(32, 52, 59, 0.05);
}

.content-section h2 {
	font-size: 2rem;
	color: var(--lilac);
	margin-bottom: 1.5rem;
	font-weight: 400;
}

.content-section p {
	margin-bottom: 1.5rem;
	text-align: justify;
}

.content-section ul {
	list-style: none;
	padding-left: 0;
	margin: 2rem 0;
}

.content-section ul li {
	padding: 0.8rem 0;
	padding-left: 2rem;
	position: relative;
	border-bottom: 1px solid var(--beige);
}

.content-section ul li::before {
	content: '✦';
	position: absolute;
	left: 0;
	color: var(--blue-pastel);
	font-size: 1.2rem;
}

/* ========================================
   HEADER DE PÁGINA
   ======================================== */
.page-header {
	margin-top: 90px;
	padding: 4rem 5%;
	background: linear-gradient(135deg, var(--beige) 0%, var(--off-white) 100%);
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	color: var(--blue-dark);
	margin-bottom: 1rem;
}

.page-header .subtitle {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--lilac);
	font-style: italic;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
	max-width: 900px;
	margin: 4rem auto;
	padding: 0 5%;
}

.about-section {
	background: white;
	padding: 3rem;
	margin-bottom: 3rem;
	border-radius: 5px;
	box-shadow: 0 5px 30px rgba(32, 52, 59, 0.05);
}

.about-section h2 {
	font-size: 2rem;
	color: var(--lilac);
	margin-bottom: 1.5rem;
}

.about-section p {
	margin-bottom: 1.5rem;
	text-align: justify;
}

.signature {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: var(--lilac);
	margin-top: 2rem;
	font-style: italic;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-container {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 5%;
}

.service-card {
	background: white;
	padding: 3rem;
	margin-bottom: 3rem;
	border-radius: 5px;
	box-shadow: 0 5px 30px rgba(32, 52, 59, 0.05);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: start;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-3px);
}

.service-info h3 {
	font-size: 1.8rem;
	color: var(--lilac);
	margin-bottom: 1rem;
}

.service-duration {
	display: inline-block;
	background: var(--beige);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	color: var(--blue-dark);
}

.service-price {
	font-size: 1.5rem;
	color: var(--blue-pastel);
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.service-card p {
	margin-bottom: 1rem;
	text-align: justify;
}

.service-card ul {
	list-style: none;
	margin: 1.5rem 0;
}

.service-card ul li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.service-card ul li::before {
	content: '✦';
	position: absolute;
	left: 0;
	color: var(--blue-pastel);
}

.book-btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	background-color: var(--lilac);
	color: white;
	border-radius: 25px;
	margin-top: 1rem;
	transition: all 0.3s ease;
}

.book-btn:hover {
	background-color: var(--blue-pastel);
	transform: translateY(-2px);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-container {
	max-width: 1000px;
	margin: 4rem auto;
	padding: 0 5%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h2 {
	font-size: 2rem;
	color: var(--lilac);
	margin-bottom: 2rem;
}

.contact-item {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: white;
	border-radius: 5px;
	box-shadow: 0 3px 15px rgba(32, 52, 59, 0.05);
}

.contact-item h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--blue-dark);
}

.contact-item p {
	color: var(--blue-dark-light);
}

.contact-item a {
	color: var(--lilac);
}

.contact-form {
	background: white;
	padding: 3rem;
	border-radius: 5px;
	box-shadow: 0 5px 30px rgba(32, 52, 59, 0.08);
}

.contact-form h2 {
	font-size: 2rem;
	color: var(--lilac);
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--blue-dark);
	font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid var(--lilac-light);
	border-radius: 5px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--lilac);
}

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

.submit-btn {
	width: 100%;
	padding: 1rem;
	background-color: var(--lilac);
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color: var(--blue-pastel);
	transform: translateY(-2px);
}

/* ========================================
   OILS SECTION
   ======================================== */
.oils-section {
	background: linear-gradient(135deg, var(--lilac-light) 0%, var(--blue-pastel) 100%);
	padding: 4rem;
	border-radius: 5px;
	margin: 3rem 0;
	color: white;
}

.oils-section h3 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	text-align: center;
}

.oils-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.oil-item {
	background: rgba(255, 255, 255, 0.2);
	padding: 2rem;
	border-radius: 5px;
	backdrop-filter: blur(10px);
}

.oil-item h4 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
	background-color: var(--blue-dark);
	color: white;
	padding: 3rem 5%;
	text-align: center;
	margin-top: 5rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	list-style: none;
}

.footer-links a {
	color: white;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--blue-pastel);
}

/* ========================================
   FIX IDIOMAS
   ======================================== */
[data-lang="es"] {
	display: none !important;
}

body.es [data-lang="en"] {
	display: none !important;
}

body.es [data-lang="es"] {
	display: block !important;
}

body.es .oil-item [data-lang="es"],
body.es p[data-lang="es"],
body.es li[data-lang="es"] {
	display: block !important;
}