@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    /* Brand Colors */
    --brand-primary: #169179;
    --brand-primary-hover: #11705e;
    --brand-secondary: #1e293b; 
    --brand-muted: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
}

/* Base Typo Override */
html, body, .uk-scope {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6, .uk-heading-small, .uk-heading-medium, .uk-heading-large {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    color: var(--text-dark) !important;
}

/* Fix for uk-light contexts - Override the global !important above */
html .uk-light h1, 
html .uk-light h2, 
html .uk-light h3, 
html .uk-light h4, 
html .uk-light h5, 
html .uk-light h6,
html .uk-light .uk-heading-small,
html .uk-light .uk-heading-medium,
html .uk-light .uk-heading-large {
    color: #ffffff !important;
}

/* UIKIT COLOR OVERRIDES - HIGH SPECIFICITY */

/* Section: Primary (Teal) */
html .uk-section-primary {
    background-color: var(--brand-primary) !important;
}

/* Section: Secondary (Dark) */
html .uk-section-secondary {
    background-color: var(--brand-secondary) !important;
}

/* Section: Muted (Light Gray) */
html .uk-section-muted {
    background-color: var(--brand-muted) !important;
}

/* Buttons */
html .uk-button-primary {
    background-color: var(--brand-primary) !important;
    color: #ffffff !important;
    border-radius: 500px !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: none !important;
}

html .uk-button-primary:hover,
html .uk-button-primary:focus,
html .uk-button-primary:active {
    background-color: var(--brand-primary-hover) !important;
    color: #ffffff !important;
}

/* Cards */
.uk-card-default {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.05);
}

html .uk-card-interactive:hover {
    border-color: var(--brand-primary) !important;
}

/* Custom Components & Utilities */

/* Hero */
.desi-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
}
.desi-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
} 
.desi-hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
}

/* Hero Typography (Overrides Global Dark Text) */
.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
/* Force white color for hero title specifically */
html .desi-hero .hero-title {
    color: #ffffff !important;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
}

/* Glass Label */
.label-glass {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
}

/* Images */
.img-lifestyle {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}
.img-lifestyle:hover { transform: translateY(-5px); }

/* Utilities */
.text-brand { color: var(--brand-primary) !important; }
.text-max-width { max-width: 600px; margin: 0 auto; }
