@font-face {
    font-family: 'Knewave-Regular';
    src: url('/assets/fonts/knewave-v15-latin-regular.woff2') format('woff2'),
        url('/assets/fonts/Knewave-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Orbitron-Black';
    src: url('/assets/fonts/orbitron-v35-latin-900.woff2') format('woff2'),
        url('/assets/fonts/Orbitron-Variable.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Titillium-Italic';
    src: url('/assets/fonts/titillium-web-v19-latin-italic.woff2') format('woff2'),
        url('/assets/fonts/TitilliumWeb-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium-SemiBoldItalic';
    src: url('/assets/fonts/titillium-web-v19-latin-600italic.woff2') format('woff2'),
        url('/assets/fonts/TitilliumWeb-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium-BoldItalic';
    src: url('/assets/fonts/titillium-web-v19-latin-700italic.woff2') format('woff2'),
        url('/assets/fonts/TitilliumWeb-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

:root {
    /* Color Palette */
    --color-place: #B2C39F;
    --color-activity: #B04D4B;
    --color-tv: #516F77;
    --color-pioneer: #D4AF37;
    --color-noteyellow: #FFFFB5;

    /* Theme Variables (Light Mode Default) */
    --bg-body: #DDDDDD;
    --bg-card: #FFFFFF;
    --text-primary: #171717;
    --text-secondary: #857C78;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Component Specific */
    --bg-table-header: #c2c2c2;
    --bg-theme-toggle: #171717;
}

[data-theme="dark"] {
    --bg-body: #171717;
    --bg-card: #2C2C2C;
    --text-primary: #DDDDDD;
    --text-secondary: #AFAFAF;
    --color-noteyellow: #8c8c57;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --bg-table-header: rgb(60, 60, 60);
    --bg-theme-toggle: #FFFFFF;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Titillium-Italic', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.handwritten-font {
    font-family: 'Pacifico', cursive;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    width: 100%;
    transition: all 0.3s ease;
    /* Removed flex properties, now handled by .header-inner */
    padding: var(--spacing-lg) 0;
    position: relative;
    /* For absolute positioning of mobile menu */
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: var(--spacing-lg);
    /* Add gap between logo, nav, and actions */
    /* When static, it inherits width from parent .container */
}

.logo {
    font-family: 'Knewave-Regular';
    font-size: 2rem;
    color: var(--color-place);
    animation: logoColorCycle 8s infinite ease-in-out;
    margin-right: auto;
    /* Push nav and actions to the right */
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-card);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
    /* Reduced vertical padding */
    animation: slideDown 0.3s ease-out;
}

.sticky-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    /* Add side padding to match container */
}

/* Ensure the inner content of sticky header stays centered */
/* .sticky-header>* rule removed as it is no longer needed */

/* When header is sticky, we need to make sure the mobile menu is positioned correctly */
.sticky-header .nav-links {
    top: 100%;
    /* Position below the sticky header */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    font-size: 1.5rem;
    background-color: transparent;
    color: var(--text-primary);
    padding: 0.5rem;
    z-index: 1001;
}

.logo {
    font-family: 'Knewave-Regular';
    font-size: 2rem;
    color: var(--color-place);
    animation: logoColorCycle 8s infinite ease-in-out;
}

@keyframes logoColorCycle {

    0%,
    100% {
        color: var(--color-place);
    }

    33% {
        color: var(--color-activity);
    }

    66% {
        color: var(--color-tv);
    }
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-download {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    background-color: var(--text-primary);
    color: var(--bg-body);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-download:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.theme-toggle {
    background-color: var(--bg-theme-toggle);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--text-primary);
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
}

/* Theme Icon Visibility */
.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xxl) 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-headline {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
}

.hero-subheadline {
    font-family: "Titillium-Italic", sans-serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.mockup-section {
    padding-bottom: var(--spacing-xxl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-mockup {
    margin-top: var(--spacing-xl);
    background-color: var(--bg-card);
    border-radius: 40px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--text-primary);
    max-width: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    /* Prevent layout shift */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Features Section */
.features {
    padding: var(--spacing-xxl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background-color: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-container {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.feature-img {
    height: 60px;
    /* Increased size */
    width: auto;
    display: none;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
    text-align: center;
}

.feature-title {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.feature-desc {
    font-family: "Titillium-Italic", sans-serif;
    font-style: italic;
    text-align: center;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
    text-align: center;
    color: var(--text-secondary);
}

.feature-list li {
    margin-bottom: 4px;
    font-weight: 500;
}

/* Tiers Section */
.tiers-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-body);
    /* Or slight contrast if needed */
}

.section-title-center {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle-center {
    font-family: "Titillium-Italic", sans-serif;
    font-style: italic;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

/* Pricing Table */
.pricing-table-container {
    overflow-x: auto;
    margin-top: var(--spacing-xl);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow-md); */
}

.pricing-table th,
.pricing-table td {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* Tier column hover effect */
.pricing-table th.column-hover,
.pricing-table td.column-hover {
    transform: scale(1.05);
    background-color: var(--color-noteyellow);
    font-size: 1.05em;
    z-index: 10;
    position: relative;
}

.pricing-table th.column-hover {
    padding-top: calc(var(--spacing-lg) + 4px);
    padding-bottom: calc(var(--spacing-lg) + 4px);
}

.pricing-table th {
    background-color: var(--bg-table-header);
    vertical-align: bottom;
    padding-bottom: var(--spacing-lg);
    position: relative;
    /* For badge positioning context if needed */
}

.pricing-table th.feature-header {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    text-align: left;
    width: 25%;
    padding-left: var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Tier Images */
.tier-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.tier-img {
    height: 120px;
    /* Increased size */
    width: auto;
    display: none;
    /* Hidden by default */
    border-radius: 15px;
}

.whim-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.whim-img {
    height: 40px;
    width: auto;
    display: block;
    /* Ensure it's visible */
}

/* Theme-based Image Visibility */
/* Default (Light Mode) */
body:not([data-theme="dark"]) .light-mode-img {
    display: block;
}

/* Dark Mode */
[data-theme="dark"] .dark-mode-img {
    display: block;
}

.pricing-table .tier-price {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-table .tier-price span {
    font-family: "Titillium-Italic", sans-serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.tier-yearly-price {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 4px;
}


.recommended-badge-table {
    background-color: var(--color-activity);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    /* left: 30%; */
    margin: 0 auto;
    width: fit-content;
}

.pricing-table td.feature-name {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    text-align: left;
    font-weight: 700;
    color: gray;
}

.check {
    color: var(--color-place);
    font-size: 1.2rem;
}

.cross {
    color: var(--color-activity);
    font-size: 1.2rem;
}

.feature-check-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.feature-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Table */
@media (max-width: 768px) {

    .pricing-table th,
    .pricing-table td {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }

    .pricing-table .tier-price {
        font-size: 1.2rem;
    }
}

/* About Section */
.about-section {
    padding: var(--spacing-xxl) 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: var(--spacing-md);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    text-align: center;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xxl);
    border: 1px solid var(--border-color);
}

.cta-title {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-body);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 120px;
    margin-bottom: var(--spacing-xl);
}

.footer-logo-section {
    flex: 0 0 auto;
    margin-bottom: var(--spacing-lg);
}

.footer-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    display: none;
    /* Controlled by theme */
}

/* Theme-based Footer Icon Visibility */
body:not([data-theme="dark"]) .footer-app-icon.light-mode-img {
    display: block;
}

[data-theme="dark"] .footer-app-icon.dark-mode-img {
    display: block;
}

.footer-links-container {
    display: flex;
    gap: 80px;
    /* Wider gap as seen in image */
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-link {
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--text-secondary);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-links-container {
        gap: var(--spacing-xl);
        justify-content: space-between;
    }

    /* Mobile Header Styles */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
        display: none;
        /* Hidden by default on mobile */
        z-index: 1000;
        align-items: stretch;
        /* Full width items */
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .nav-link {
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Center the theme toggle in mobile menu */
    .nav-links .theme-toggle {
        margin: var(--spacing-md) auto 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities from App (Reused for Mockup) */
.whim-group {
    margin-bottom: var(--spacing-md);
    /* Closer together initially */
    transition: margin-bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
    /* Ensure full width */
}

.app-mockup.animate .whim-group {
    margin-bottom: var(--spacing-lg);
    /* Expand spacing when animated */
}

.whim-label-top {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
    font-size: 0.9rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.app-mockup.animate .whim-label-top {
    max-height: 30px;
    opacity: 1;
    transform: scale(1);
    margin-bottom: 4px;
}

.whim-label-bottom {
    text-align: center;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.app-mockup.animate .whim-label-bottom {
    max-height: 30px;
    opacity: 1;
    transform: scale(1);
    margin-top: 4px;
}

/* Footnotes */
.footnotes {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footnotes p {
    margin-bottom: var(--spacing-xs);
}

.whim-type-card {
    height: 100px;
    width: 100%;
    /* Ensure it fills the container */
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: var(--shadow-sm);
}

/* Mini Whim Cards for Features */
.mini-whim-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.whim-type-card.mini {
    height: 60px;
    width: 80px;
    border-radius: var(--radius-sm);
}

/* Feature Sliders Visual */
.feature-sliders-container {
    width: 100px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.slider-track {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    position: relative;
}

.slider-fill {
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
}

.slider-thumb {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

/* Specific Slider Styles */
.fill-1 {
    width: 70%;
    background-color: var(--color-place);
}

.thumb-1 {
    left: 70%;
    border-color: var(--color-place);
}

.fill-2 {
    width: 40%;
    background-color: var(--color-activity);
}

.thumb-2 {
    left: 40%;
    border-color: var(--color-activity);
}

.fill-3 {
    width: 85%;
    background-color: var(--color-tv);
}

.thumb-3 {
    left: 85%;
    border-color: var(--color-tv);
}

/* Hover Animation for Sliders */
/* Slider Animations */
@keyframes slideOne {

    0%,
    100% {
        width: 70%;
    }

    50% {
        width: 85%;
    }
}

@keyframes thumbOne {

    0%,
    100% {
        left: 70%;
    }

    50% {
        left: 85%;
    }
}

@keyframes slideTwo {

    0%,
    100% {
        width: 40%;
    }

    50% {
        width: 60%;
    }
}

@keyframes thumbTwo {

    0%,
    100% {
        left: 40%;
    }

    50% {
        left: 60%;
    }
}

@keyframes slideThree {

    0%,
    100% {
        width: 85%;
    }

    50% {
        width: 50%;
    }
}

@keyframes thumbThree {

    0%,
    100% {
        left: 85%;
    }

    50% {
        left: 50%;
    }
}

/* Hover Animation for Sliders */
.feature-card:hover .fill-1 {
    animation: slideOne 1s ease-in-out;
}

.feature-card:hover .thumb-1 {
    animation: thumbOne 1s ease-in-out;
}

.feature-card:hover .fill-2 {
    animation: slideTwo 1.2s ease-in-out;
}

.feature-card:hover .thumb-2 {
    animation: thumbTwo 1.2s ease-in-out;
}

.feature-card:hover .fill-3 {
    animation: slideThree 1.4s ease-in-out;
}

.feature-card:hover .thumb-3 {
    animation: thumbThree 1.4s ease-in-out;
}

.whim-img.mini-img {
    height: 24px;
}

.mockup-icon {
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Whim-Light Glow Animation */
@keyframes whimLightGlow {
    0% {
        filter: drop-shadow(0 0 0 transparent);
    }

    5% {
        filter: drop-shadow(0 0 15px #00FFFF);
        /* Bright cyan glow */
    }

    10% {
        filter: drop-shadow(0 0 0 transparent);
    }

    100% {
        filter: drop-shadow(0 0 0 transparent);
    }
}

.feature-card:hover .whim-ai-logo {
    animation: whimLightGlow 7.8s infinite ease-in-out;
}

/* Wave Bounce Animation */
@keyframes waveBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.feature-card:hover .whim-type-card.mini {
    animation: waveBounce 0.5s ease-in-out;
}

.feature-card:hover .whim-type-card.mini.go {
    animation-delay: 0s;
}

.feature-card:hover .whim-type-card.mini.do {
    animation-delay: 0.1s;
}

.feature-card:hover .whim-type-card.mini.watch {
    animation-delay: 0.2s;
}

.whim-type-card.go {
    background-color: #A8C599;
}

.whim-type-card.do {
    background-color: #B85C55;
}

.whim-type-card.watch {
    background-color: #5A7D8B;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simple hide for now, or hamburger */
    }
}

/* Whim Card Specific Styles */
.whim-detail-card {
    width: 100%;
    max-width: 600px;
    /* Constrain width for readability */
    margin: 0 auto;
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.whim-detail-card:hover {
    transform: translateY(-5px);
}

.whim-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.whim-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whim-icon {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make icon white */
}

.whim-title {
    font-family: "Titillium-BoldItalic", sans-serif;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    flex: 1;
}

.whim-description {
    font-family: "Titillium-Italic", sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 10px;
}

/* Type Specific Colors */
.bg-activity {
    background-color: #B85C55;
    /* Red */
}

.bg-place {
    background-color: #A8C599;
    /* Green */
}

.bg-tv {
    background-color: #5A7D8B;
    /* Blue */
}

/* Badge/Tag Style (Optional for future) */
.whim-tag {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
}