/*
Theme Name: WheelObsession Lite
Theme URI: https://wheelobsession.pro/
Author: Tu Nombre
Description: Tema a medida ultraligero y fiel al diseño original.
Version: 2.1
Text Domain: wheelobsession
*/

:root {
    --primary-color: #3182CE;
    --text-dark: #1a202c;
    --text-light: #4a5568;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   CABECERA Y MENÚ
======================================== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container { display: flex; justify-content: flex-end; align-items: center; }
.main-navigation ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 30px; }
.main-navigation li a { text-decoration: none; color: var(--text-dark); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.main-navigation li a:hover { color: var(--primary-color); }

/* ========================================
   SECCIÓN 1: PORTADA (HERO) - A LA IZQUIERDA
======================================== */
.hero-section {
    background-image: url('hand-gespaakte-wielen.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    max-width: 650px; 
    padding: 100px 0 150px 0;
    margin-left: 0 !important; /* CLAVE: La clava a la izquierda */
    margin-right: auto !important; /* CLAVE: Evita que se vaya a la derecha */
}

.hero-text-left, .hero-button-left { text-align: left; }
.subtitle { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--primary-color); margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; }
.main-title { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 4.5rem; color: #fff; line-height: 1.1; margin-top: 0; margin-bottom: 40px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.features-box-left { background-color: rgba(0, 0, 0, 0.75); padding: 40px 50px; border-radius: 8px; margin-bottom: 40px; }
.features-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }
.features-grid li { font-size: 1.2rem; color: #fff; padding-left: 35px; position: relative; text-align: left; }
.features-grid li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }
.btn-primary { display: inline-block; background-color: var(--primary-color); color: #fff; font-weight: 700; font-size: 1.1rem; padding: 18px 40px; border-radius: 4px; text-decoration: none; transition: 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary:hover { background-color: #2b6cb0; }

/* ========================================
   SECCIÓN 2: QUÉ HACEMOS
======================================== */
.what-we-do-section {
    background-color: #252c39;
    padding: 100px 0;
    color: #fff;
    position: relative; 
    z-index: 10;
}

/* ========================================
   LA RUEDA NARANJA (EL EFECTO PREMIUM)
======================================== */
.floating-wheel-left {
    position: absolute;
    top: -200px; 
    left: 4%; 
    width: 550px; 
    max-width: 45vw; 
    z-index: 999; 
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6)); 
}

/* EL TEXTO Y LA BICICLETA NEGRA */
.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
    position: relative;
    margin-left: 45%; 
}

.what-we-do-text { text-align: left; }
.section-title { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 3.5rem; color: #fff; line-height: 1.1; margin-top: 0; margin-bottom: 25px; }
.section-description { font-size: 1.1rem; color: #cbd2d9; line-height: 1.8; margin-bottom: 30px; }
.clean-check-list { list-style: none; padding: 0; margin: 0; }
.clean-check-list li { font-size: 1.2rem; color: #fff; margin-bottom: 15px; padding-left: 35px; position: relative; font-weight: bold; }
.clean-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; font-size: 1.2rem; }

.what-we-do-bike img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* RESPONSIVE (PANTALLAS PEQUEÑAS) */
@media (max-width: 1200px) {
    .floating-wheel-left { width: 450px; left: 2%; top: -150px; }
    .what-we-do-grid { margin-left: 40%; }
}

@media (max-width: 992px) {
    .what-we-do-grid { grid-template-columns: 1fr; margin-left: 350px; }
    .floating-wheel-left { width: 350px; left: -20px; top: -100px; }
}

@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    
    /* En móviles, centramos la sección 1 para que se lea mejor en pantallas estrechas */
    .hero-content-wrapper { padding: 60px 0; margin: 0 auto !important; text-align: center; }
    .hero-text-left, .hero-button-left { text-align: center; }
    
    .what-we-do-grid { margin-left: 0; text-align: center; }
    .what-we-do-text { text-align: center; }
    .clean-check-list li { text-align: left; display: inline-block; width: 100%; }
    
    .floating-wheel-left {
        position: relative;
        top: 0;
        left: 0;
        width: 250px;
        margin: -100px auto 40px auto;
        display: block;
    }
}