/* Custom Styles for Waymarked Proposal */

/* --- Theme Definitions --- */
/* Overriding DaisyUI variables to ensure correct colors without build step */
:root,
[data-theme="waymarkedLight"] {
    /* Primary: #4CAF50 -> OKLCH(0.69 0.16 148) */
    --p: 0.69 0.16 148;
    --pc: 1 0 0;
    /* White content */

    /* Secondary: #FF8C42 -> OKLCH(0.72 0.16 50) */
    --s: 0.72 0.16 50;
    --sc: 0 0 0;

    /* Neutral: #1A1A1A -> OKLCH(0.18 0 0) */
    --n: 0.18 0 0;
    --nc: 0.9 0 0;

    /* Base: #F2F4F3 -> OKLCH(0.96 0.01 150) */
    --b1: 0.96 0.01 150;
    --b2: 0.92 0.02 150;
    --bc: 0.18 0 0;
    /* Content matches Neutral #1A1A1A */

    --rounded-btn: 9999px;
    --rounded-box: 1.5rem;
}

[data-theme="waymarkedDark"] {
    /* Primary: #4CAF50 */
    --p: 0.69 0.16 148;
    --pc: 1 0 0;

    /* Neutral: #F2F4F3 (Light text on dark) */
    --n: 0.96 0.01 150;
    --nc: 0.18 0 0;

    /* Base: #0A120E -> OKLCH(0.15 0.02 150) */
    --b1: 0.15 0.02 150;
    --b2: 0.12 0.02 150;
    --bc: 0.96 0.01 150;
    /* Content matches Neutral */
}

/* --- Glass Navigation --- */
/* Using the "Glass" philosophy from design_system.md */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="waymarkedDark"] .glass-nav {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Phone Frame Mockups --- */
/* CSS-only device frame for screenshots */
.phone-frame {
    border: 8px solid #1a1a1a;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    aspect-ratio: 9/19.5;
    z-index: 10;
}

/* Image containment */
.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Notch */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1.2rem;
    background: #1a1a1a;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    z-index: 20;
}

/* --- Utilities --- */
/* Ensure full height hero on large screens if desired, but min-h-600px is set in HTML classes */