/* Custom Styles for Waymarked Proposal */


/* --- 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 --- */
/* Logo Switching based on Theme */
[data-theme="waymarkedLight"] .theme-dark-logo {
    display: none;
}

[data-theme="waymarkedDark"] .theme-light-logo {
    display: none;
}

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