/*
Theme Name: Divi Child - On Yer Bike
Description: Simple child theme for On Yer Bike Winery Tours - fixes viewport and preserves customizations
Author: Philip Wilcock
Template: Divi
Version: 1.0.0
Text Domain: divi-child
*/

/* ==========================================================================
   VIEWPORT FIX - This is why you needed a child theme in Divi 4
   In Divi 5, this is mostly handled, but we'll ensure it's bulletproof
   ========================================================================== */

html {
    /* Prevent text scaling issues on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    
    /* Base font size for rem calculations */
    font-size: 16px;
}

/* Ensure proper viewport scaling on all devices */
body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

