/*
Theme Name:   Jain Shikanji
Theme URI:    https://jainshikanji.com
Description:  Official Jain Shikanji custom theme. Child of Hello Elementor.
Author:       Jain Shikanji
Author URI:   https://jainshikanji.com
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
Tags:         custom, elementor, full-width, beverage
Text Domain:  jain-shikanji
*/

/* ============================================================
   BRAND COLOURS
   Primary Blue   : #264391
   Dark BG        : #120F29
   White          : #ffffff
   Text Dark      : #111111
   Text Mid       : #555555
============================================================ */

:root {
    --js-blue:       #264391;
    --js-blue-light: #5b86ff;
    --js-dark:       #120F29;
    --js-white:      #ffffff;
    --js-text:       #111111;
    --js-muted:      #555555;
}

/* ============================================================
   1. GLOBAL RESET — Remove Hello Elementor leftovers
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--js-text);
    background: #ffffff;
}

/* ============================================================
   2. FULL-WIDTH ELEMENTOR SECTIONS — No more narrow containers
============================================================ */
.elementor-section-boxed > .elementor-container,
.elementor-section .elementor-container,
.e-con-inner,
.e-con {
    max-width: 100% !important;
    width: 100% !important;
}

.elementor-widget-wrap,
.elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-widget-html {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

.elementor-section.elementor-section-stretched {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

/* ============================================================
   3. ALLOW 100VW BREAKOUT TRICK EVERYWHERE
============================================================ */
#page,
#wrapper,
.site,
.site-content,
#content,
main,
.main-content {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* ============================================================
   4. KILL CONTENT COLUMN CONSTRAINTS
============================================================ */
.entry-content,
.entry,
.post,
.page,
#primary,
.content-area,
.site-inner,
article {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.entry-content > * {
    max-width: 100% !important;
}

/* ============================================================
   5. TYPOGRAPHY — Brand fonts & sizes
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Georgia, serif;
    font-weight: 900;
    color: var(--js-text);
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--js-muted);
    margin: 0 0 1rem;
    padding: 0;
}

a {
    color: var(--js-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--js-blue-light);
}

/* ============================================================
   6. LEMON SKATER SECTION — Sizes that always work
============================================================ */
#lsk-section {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

.lsk-heading {
    font-size: clamp(2.8rem, 4.5vw, 5rem) !important;
    font-weight: 900 !important;
}

.lsk-subheading { font-size: clamp(1.1rem, 1.8vw, 1.5rem) !important; }
.lsk-body       { font-size: clamp(1rem,   1.3vw, 1.2rem) !important; }
.lsk-tag        { font-size: 0.85rem !important; }
.lsk-btn        { font-size: 1.05rem !important; }
.lsk-image-wrap { width: 550px !important; }

/* ============================================================
   7. MARQUEE STRIP — Always full width
============================================================ */
.js-strip {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

.js-label {
    font-size: 1.55rem !important;
    font-weight: 800 !important;
    letter-spacing: 4px !important;
    color: #fff !important;
}

/* ============================================================
   8. GLOBAL BUTTON STYLE
============================================================ */
.js-btn,
.lsk-btn,
button,
input[type="submit"],
input[type="button"] {
    font-family: 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ============================================================
   9. HEADER / NAVIGATION — Clean minimal bar
============================================================ */
.site-header,
header.header-main {
    background: #ffffff;
    border-bottom: 1px solid rgba(38, 67, 145, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* ============================================================
   10. FOOTER
============================================================ */
.site-footer,
footer {
    background: var(--js-dark);
    color: rgba(255,255,255,0.7);
    padding: 40px 6vw;
    font-size: 0.9rem;
}

.site-footer a { color: var(--js-blue-light); }

/* ============================================================
   11. BUBBLE BACKGROUND CANVAS — Always fills container
============================================================ */
.js-bubble-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.js-bubble-wrap canvas {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   12. UTILITY CLASSES
============================================================ */
.js-text-blue   { color: var(--js-blue)  !important; }
.js-text-white  { color: #ffffff         !important; }
.js-bg-blue     { background: var(--js-blue) !important; }
.js-bg-dark     { background: var(--js-dark) !important; }
.js-full-width  {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}
.js-center      { text-align: center !important; }
.js-no-padding  { padding: 0 !important; }
.js-no-margin   { margin: 0 !important; }

/* ============================================================
   13. ELEMENTOR OVERRIDES — Prevent theme killing widget styles
============================================================ */
.elementor-widget-heading .elementor-heading-title {
    line-height: inherit;
}

.elementor-widget-text-editor p {
    color: inherit;
    font-size: inherit;
}
