:root {
    /* Color Palette - Spec 2.2 */
    --petals-primary: #5ECDB6;
    --petals-primary-dark: #3DAA93;
    --petals-secondary: #FF8A65;
    --petals-text-dark: #333333;
    --petals-background-light: #F5F9FA;
    --petals-background-dark: #2C3E50;
    --petals-white: #ffffff;
    --petals-border-gray: #e5e5e5; /* Assuming a light gray for borders */
}

html {
    background: #edf2f7 !important; 
}

body {
    /* Body Text Font - Spec 2.3 */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px; /* Base size - Spec 2.3 */
    color: var(--petals-text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.petals-heading {
    /* Headings Font - Spec 2.3 */
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Button Styles - Spec 2.4 */
.petals-button-primary,
.uk-button-primary {
    background-color: var(--petals-primary);
    color: var(--petals-white);
    border-radius: 6px; /* Spec 2.4 */
    border: 1px solid transparent;
    transition: background-color 0.2s ease-in-out;
}

.petals-button-primary:hover,
.uk-button-primary:hover {
    background-color: var(--petals-primary-dark);
    color: var(--petals-white);
}

.petals-button-secondary,
.uk-button-default {
    background-color: transparent;
    color: var(--petals-text-dark);
    border: 1px solid var(--petals-border-gray);
    border-radius: 6px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.petals-button-secondary:hover,
.uk-button-default:hover {
    background-color: var(--petals-background-light);
    color: var(--petals-text-dark);
    border-color: var(--petals-text-dark);
}


/* Hero Section Styles */
.petals-hero-section {
    background: #edf2f7 !important; /* First section background */
    color: var(--petals-text-dark);
    position: relative;
    overflow: hidden;
}

.petals-hero-section::before {
    display: none !important;
}

.petals-hero-section .uk-container {
    position: relative;
    z-index: 2;
}

.petals-hero-section h1,
.petals-hero-section .petals-heading {
    color: var(--petals-text-dark) !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: none !important;
}

.petals-hero-section .uk-text-lead {
    color: var(--petals-text-dark) !important;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 3rem;
}

.petals-hero-section .petals-button-primary {
    font-family: 'Lilita One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(94, 205, 182, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.petals-hero-section .petals-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.petals-hero-section .petals-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 205, 182, 0.4);
}

.petals-hero-section .petals-button-primary:hover::before {
    left: 100%;
}

/* Trust Badge */
.petals-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(94, 205, 182, 0.1);
    border: 1px solid rgba(94, 205, 182, 0.3);
    border-radius: 20px;
    color: var(--petals-primary);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Secondary Button in Hero */
.petals-hero-section .petals-button-secondary:hover {
    background: rgba(245, 249, 250, 0.1) !important;
    border-color: rgba(245, 249, 250, 0.6) !important;
    color: var(--petals-white) !important;
    transform: translateY(-1px);
}

/* Feature Highlights */
.petals-feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 249, 250, 0.05);
    border: 1px solid rgba(245, 249, 250, 0.1);
    border-radius: 6px;
    color: rgba(245, 249, 250, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.petals-feature-highlight:hover {
    background: rgba(94, 205, 182, 0.1);
    border-color: rgba(94, 205, 182, 0.3);
    transform: translateY(-2px);
}

.petals-feature-highlight .uk-icon {
    color: var(--petals-primary);
}

/* Screenshot Container */
.petals-screenshot-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.petals-screenshot-placeholder {
    background: rgba(245, 249, 250, 0.05);
    border: 2px dashed rgba(94, 205, 182, 0.3);
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.petals-screenshot-placeholder:hover {
    border-color: rgba(94, 205, 182, 0.5);
    background: rgba(245, 249, 250, 0.08);
}

.petals-screenshot-content {
    text-align: center;
    padding: 2rem;
}

.petals-screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    height: 12px;
    background: linear-gradient(90deg, 
        rgba(94, 205, 182, 0.2) 0%, 
        rgba(94, 205, 182, 0.1) 50%, 
        rgba(94, 205, 182, 0.05) 100%);
    border-radius: 6px;
}

.petals-screenshot-placeholder::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 1rem;
    width: 60%;
    height: 8px;
    background: rgba(245, 249, 250, 0.1);
    border-radius: 4px;
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
    .petals-hero-section .uk-button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .petals-feature-highlight {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .petals-trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .petals-hero-section .uk-grid {
        text-align: center;
    }
    
    .petals-hero-section .uk-flex-left {
        justify-content: center !important;
    }
    
    .petals-screenshot-container {
        margin-top: 3rem;
    }
}


/* Gradient text for hero headline */
.petals-gradient-text {
    background: linear-gradient(90deg, #4B1D8B 0%, #A12B8B 50%, #B71C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

/* Highlighted text for key phrases */
.petals-highlight-text {
    color: var(--petals-primary);
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 20px rgba(94, 205, 182, 0.3);
}

.petals-highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--petals-primary), rgba(94, 205, 182, 0.3));
    border-radius: 1px;
}

.full-vh-height-section {
    min-height: 92vh;
}

/* -------------------------------------------------- */
/* Petals Update: Nav & Hero Background Color Override */
/* -------------------------------------------------- */
header .uk-navbar-container {
    background-color: #edf2f7 !important; /* Light blue-gray background for header nav */
}