/* White Cactus Landing Page Styles */
/* Works WITH Ghost CSS, not against it */

:root {
    --cream: #faf8f3;
    --warm-beige: #e8e3d8;
    --sage: #9ca892;
    --charcoal: #2d2d2a;
    --deep-brown: #3e3832;
    --burgundy: #8b6f62;
    --accent-gold: #c9a875;
}

/* ================================
   Base Landing Page Container
   ================================ */

.home-landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    color: var(--charcoal);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.home-landing-page h1,
.home-landing-page h2,
.home-landing-page h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* ================================
   Hero Section
   ================================ */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 6rem 2rem 12rem 2rem;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.01) 2px,
        rgba(0,0,0,0.01) 4px
    );
}

.hero-container {
    max-width: 112rem;
    width: 100%;
    text-align: center;
}

.hero-built-for {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6rem;
}

.built-for-label {
    font-size: 1.5rem;
    font-weight: 1000;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 2rem;
}

.platform-logos {
    display: flex;
    align-items: center;
    gap: 0;
}

.platform-logo-circle {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.platform-logo-circle:last-child {
    margin-left: -1.5rem;
    z-index: 1;
}

.platform-logo-circle:first-child {
    z-index: 2;
}

.platform-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-headline {
    font-size: 7rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.hero-headline-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ai-name-container {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}

.ai-name {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Cormorant Garamond', serif;
    transition: opacity 0.5s ease;
}

.ai-name.fade-out {
    opacity: 0;
}

.gradient-text {
    background: var(--charcoal) 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-logos {
    position: relative;
    width: 7rem;
    height: 7rem;
    flex-shrink: 0;
}

.ai-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ai-logo.active {
    opacity: 1;
}

.hero-subheadline {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: #111827;
    margin-bottom: 5rem;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-primary {
    display: inline-block;
    padding: 2rem 4rem;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: white;
    background-color: var(--deep-brown);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-primary:hover {
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 2rem 4rem;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--deep-brown);
    background-color: white;
    border: 2px solid var(--warm-beige);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-secondary:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.hero-disclaimer {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: var(--sage);
}

/* ================================
   Partners Bar with Animated Carousel
   ================================ */

   .partners-bar {
    position: relative;
    background: white;
    border-top: 1px solid var(--warm-beige);
    border-bottom: 1px solid var(--warm-beige);
    overflow: visible; /* Changed from hidden to show cactus */
    padding: 5rem 0;
}

.cactus-image {
    position: absolute;
    right: 0rem;
    bottom: .5rem;
    width: 66rem;
    z-index: 10;
    pointer-events: none;
    transform: translateX(20%);
}

.cactus-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.16));
}

@media (max-width: 1299px) {
    .cactus-image {
        display: ƒnone;
    }
}

.partners-container {
    width: 100%;
    max-width: 100%;
    padding: 0; /* Removed padding */
    margin: 0 auto;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.partners-track {
    display: flex;
    gap: 8rem;
    animation: scroll-partners 30s linear infinite;
    will-change: transform;
    padding: 0 4rem; /* Add some breathing room */
}

/* Pause animation on hover */
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    flex-shrink: 0;
    min-width: 15rem;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-item img {
    width: 5.5rem;
    height: 5.5rem;
    object-fit: contain;
    border-radius: 1.5rem;
}

.partner-item div {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .partners-track {
        gap: 10rem;
    }
}


@media (max-width: 767px) {
    .partners-bar {
        padding: 5rem 0 8rem 0; /* Extra bottom padding for mobile */
    }
    
    
    .partners-track {
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .partner-item {
        min-width: 12rem;
    }
    
    .partner-item img {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .partner-item div {
        font-size: 1.5rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
    }
}


/* ================================
   Stats Section
   ================================ */

.stats-section {
    padding: 10rem 2rem;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.01) 2px,
        rgba(0,0,0,0.01) 4px
    );
}

.stats-container {
    max-width: 56rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.stat-description {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--sage);
}

/* ================================
   Problem Section
   ================================ */

.problem-section {
    padding: 10rem 2rem;
}

.problem-container {
    max-width: 96rem;
    margin: 0 auto;
    text-align: center;
}

.section-headline {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.section-description {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--sage);
    margin-bottom: 4rem;
}

/* ================================
   Features Section
   ================================ */

.features-section {
    padding: 12rem 2rem;
    background: white;
}

.features-container {
    max-width: 144rem;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    align-items: center;
    margin-bottom: 16rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-row-reverse .feature-visual {
        order: -1;
    }
}

.feature-badge {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--cream);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.feature-headline {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--deep-brown);
    margin-bottom: 3rem;
}

.feature-description {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--sage);
    margin-bottom: 3rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--burgundy);
    stroke-width: 2.5;
}

.feature-list span {
    font-size: 2rem;
    font-weight: 300;
    color: var(--charcoal);
}

.feature-card {
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border: 2px solid var(--warm-beige);
    border-radius: 2rem;
    padding: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-item:last-child {
    margin-bottom: 0;
}

.card-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-brown);
    font-variant-numeric: tabular-nums;
}

.card-accent {
    color: var(--burgundy);
}

.card-emoji {
    font-size: 3rem;
}

/* Optimization Cards */

.optimization-before,
.optimization-after {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.optimization-after {
    border: 2px solid var(--burgundy);
}

.optimization-badge {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.optimization-before p,
.optimization-after p {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.4;
}

.optimization-score {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--sage);
}

.optimization-score-good {
    font-weight: 600;
    color: var(--burgundy);
}

.optimization-arrow {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.optimization-arrow svg {
    width: 4rem;
    height: 4rem;
    color: var(--burgundy);
}

/* Questions Card */

.questions-header {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--charcoal);
}

/* ================================
   Final CTA Section
   ================================ */

.cta-section {
    position: relative;
    padding: 16rem 2rem;
    overflow: hidden;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.01) 2px,
        rgba(0,0,0,0.01) 4px
    );
}

.cta-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: radial-gradient(circle at 50% 50%, var(--burgundy) 0%, transparent 70%);
}

.cta-container {
    position: relative;
    z-index: 10;
    max-width: 96rem;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-size: 8rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 4rem;
}

.cta-description {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--sage);
    margin-bottom: 6rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-disclaimer {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--sage);
}

.pulse-cta {
    animation: pulse-shadow 2s ease-in-out infinite;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 56, 50, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(61, 56, 50, 0);
    }
}

/* ================================
   Booking Section
   ================================ */

.booking-section {
    padding: 12rem 2rem;
    background: white;
}

.booking-container {
    max-width: 160rem;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 6rem;
}

.booking-header .section-headline {
    margin-bottom: 3rem;
}

.booking-header .section-description {
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.booking-embed {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--warm-beige);
    overflow: hidden;
}

/* ================================
   Scroll Animations
   ================================ */

.fade-in-up,
.fade-in-left,
.fade-in-right,
.scale-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.scale-in {
    transform: scale(0.9);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ================================
   Responsive Adjustments
   ================================ */

@media (max-width: 767px) {
    .hero-section {
        padding: 8rem 1rem;
        min-height: 80vh;
    }
    
    .hero-headline,
    .ai-name {
        font-size: 4.5rem;
    }
    
    .ai-logos {
        width: 5rem;
        height: 5rem;
    }
    
    .hero-subheadline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 4rem;
    }
    
    .section-description {
        font-size: 1.8rem;
    }
    
    .feature-headline {
        font-size: 4rem;
    }
    
    .feature-description {
        font-size: 1.8rem;
    }
    
    .cta-headline {
        font-size: 5rem;
    }
    
    .cta-description {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 5rem;
    }
    
    .partners-container {
        padding-right: 2rem;
    }
    
    
    .feature-card {
        padding: 2rem;
    }
}

/* ================================
   Print Styles
   ================================ */

@media print {
    .home-landing-page {
        background: white;
    }
}

/* ================================
   Blog Carousel Section
   ================================ */

   .blog-carousel-section {
    padding: 12rem 2rem;
    background: white;
    width: 100%;
}

.blog-carousel-container {
    max-width: 180rem;
    margin: 0 auto;
}

.blog-carousel-header {
    text-align: center;
    margin-bottom: 6rem;
}

.blog-carousel-header .section-headline {
    margin-bottom: 2rem;
}

.blog-carousel-header .section-description {
    max-width: 48rem;
    margin: 0 auto;
}

.blog-carousel-wrapper {
    position: relative;
    padding: 0 6rem;
}

.blog-carousel {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-card {
    flex: 0 0 calc(33.333% - 2rem);
    scroll-snap-align: start;
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border: 2px solid var(--warm-beige);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-link:hover {
    opacity: 1;
}

.blog-card-image {
    width: 100%;
    height: 20rem;
    overflow: hidden;
    background: var(--warm-beige);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 3rem;
}

.blog-card-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--cream);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.blog-card-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.blog-card-excerpt {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--sage);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    color: var(--sage);
    font-weight: 500;
}

.blog-card-reading-time::before {
    content: "•";
    margin-right: 1.5rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.carousel-nav svg {
    width: 2.4rem;
    height: 2.4rem;
    color: var(--deep-brown);
    transition: color 0.3s;
}

.carousel-nav:hover svg {
    color: white;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.blog-carousel-footer {
    text-align: center;
    margin-top: 6rem;
}

/* Responsive adjustments for carousel */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .blog-carousel-wrapper {
        padding: 0 5rem;
    }
}

@media (max-width: 767px) {
    .blog-carousel-section {
        padding: 8rem 1rem;
    }
    
    .blog-carousel-wrapper {
        padding: 0 4rem;
    }
    
    .blog-card {
        flex: 0 0 85%;
    }
    
    .carousel-nav {
        width: 4rem;
        height: 4rem;
    }
    
    .carousel-nav svg {
        width: 2rem;
        height: 2rem;
    }
    
    .blog-card-content {
        padding: 2rem;
    }
    
    .blog-card-title {
        font-size: 2rem;
    }
    
    .blog-card-excerpt {
        font-size: 1.4rem;
    }
}

/* ================================
   Japandi Navigation Styles
   ================================ */

   .japandi-nav {
    background-color: white !important;
    border-bottom: 1px solid var(--warm-beige) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.japandi-nav.is-stuck {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Logo Styling */
.japandi-nav .gh-navigation-logo {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: var(--deep-brown) !important;
    letter-spacing: -0.01em;
}

.japandi-nav .gh-navigation-logo img {
    max-height: 4rem;
}

/* Navigation Menu Links */
.japandi-nav .gh-navigation-menu a {
    color: var(--charcoal) !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.japandi-nav .gh-navigation-menu a:hover {
    color: var(--burgundy) !important;
    opacity: 1 !important;
}

.japandi-nav .gh-navigation-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-brown) 100%);
    transition: width 0.3s ease;
}

.japandi-nav .gh-navigation-menu a:hover::after {
    width: 100%;
}

/* Search Toggle */
.japandi-nav .gh-search-toggle svg {
    color: var(--charcoal) !important;
    transition: color 0.3s ease;
}

.japandi-nav .gh-search-toggle:hover svg {
    color: var(--burgundy) !important;
}

/* Burger Menu */
.japandi-nav .gh-burger {
    color: var(--charcoal) !important;
}

.japandi-nav .gh-burger:hover {
    color: var(--burgundy) !important;
}

/* Sign In Link */
.japandi-signin {
    color: var(--deep-brown) !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.japandi-signin:hover {
    color: var(--burgundy) !important;
    opacity: 1 !important;
}

/* Subscribe/CTA Button */
.japandi-cta {
    background-color: var(--deep-brown) !important;
    color: white !important;
    border-radius: 0.5rem !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.025em !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.japandi-cta:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px);
    opacity: 1 !important;
}

/* Mobile Menu Adjustments */
@media (max-width: 767px) {
    .japandi-nav .gh-navigation-menu {
        background-color: var(--cream);
        border-top: 1px solid var(--warm-beige);
    }
    
    .japandi-nav .gh-navigation-menu a {
        padding: 1.5rem 0;
        font-size: 1.8rem !important;
    }
    
    .japandi-nav .gh-navigation-logo {
        font-size: 2rem !important;
    }
}

/* Stacked Layout Adjustments */
.japandi-nav.is-stacked .gh-navigation-brand {
    border-bottom: 1px solid var(--warm-beige);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

/* Accent Color Override */
.japandi-nav.has-accent-color {
    background-color: var(--cream) !important;
}

.gh-navigation-actions {
    background-color: rgba(0,0,0,0)!important;
}


.gh-navigation-menu-container{
    display: flex;
    justify-content: center;
    width:100
}