/*
Theme Name: Shamana Space Theme
Theme URI: https://www.shamana.com.ar/
Author: Shamana Dev
Description: Tema oficial para Shamana y Argentina Space. Enfoque espacial, moderno y tecnológico.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: shamana-space
*/

/* --- Variables Globales --- */
:root {
    --color-bg-dark: #050510;
    --color-bg-section: #0a0a1f;
    --color-primary: #00f2ff; /* Cyan Espacial */
    --color-secondary: #7b2cbf; /* Púrpura Galaxia */
    --color-text: #e0e0e0;
    --color-text-light: #ffffff;
    --font-main: 'Roboto', sans-serif;
    --font-title: 'Orbitron', sans-serif;
}

/* --- Reset y Básicos --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* --- Tipografías --- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

/* --- Utilidades --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.site-header {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light) !important;
}

.logo span {
    color: var(--color-primary);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

/* --- Hero Section (Inicio) --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, transparent, var(--color-bg-dark)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1744&q=80') no-repeat center center/cover;
    position: relative;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-primary:hover {
    background: #fff;
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* --- Secciones Generales --- */
.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--color-bg-section);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 15px auto 0;
}

/* --- Grid Servicios/Enfoque --- */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* --- Footer --- */
.site-footer {
    background: #000;
    padding: 60px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    color: #888;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-menu ul { flex-direction: column; text-align: center; background: var(--color-bg-dark); position: absolute; top: 80px; width: 100%; left: 0; display: none; }
    .nav-menu ul.active { display: flex; }
    .header-content { flex-direction: column; justify-content: center; }
}
