/* Extracted and extended styles for MInt Projects */

:root {
    --mint-primary: #10b981; /* Emerald 500 */
    --mint-dark: #047857;    /* Emerald 700 */
    --mint-light: #a7f3d0;   /* Emerald 200 */
    --midnight: #1e293b;     /* Slate 800 */
    --bs-body-color: var(--midnight);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--midnight);
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

/* Utility Classes (Overriding Bootstrap defaults slightly) */
.bg-mint-primary { background-color: var(--mint-primary) !important; }
.text-mint-primary { color: var(--mint-primary) !important; }
.bg-mint-light { background-color: var(--mint-light) !important; }
.text-mint-dark { color: var(--mint-dark) !important; }
.bg-midnight { background-color: var(--midnight) !important; }
.btn-mint-primary {
    background-color: var(--mint-primary);
    border-color: var(--mint-primary);
    color: white;
}
.btn-mint-primary:hover {
    background-color: var(--mint-dark);
    border-color: var(--mint-dark);
    color: white;
}

/* Custom Card/Shadow Enhancement */
.card-shadow {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}
.card-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.lucide { display: inline-block; }

/* Hero Section Background */
.hero-bg {
    background: linear-gradient(180deg, var(--mint-light) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Decorative hero SVG */
.hero-decor {
    position: absolute;
    right: -40px;
    top: -30px;
    width: 260px;
    height: 260px;
    opacity: 0.18;
    pointer-events: none;
    transform: rotate(12deg);
}
@media (max-width: 767px) {
    .hero-decor { display: none; }
}

/* Roadmap Timeline Style (Desktop Only) */
.timeline-container { position: relative; }
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: var(--mint-light);
    height: 100%;
    display: none;
}
@media (min-width: 768px) {
    .timeline-line { display: block; }
}
.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.75rem;
    background-color: var(--mint-primary);
    border-radius: 50%;
    border: 4px solid white;
    z-index: 10;
}
.timeline-item-left { text-align: right; }
@media (max-width: 767px) {
    .timeline-item-left, .timeline-item-right { text-align: left; }
}

/* Responsive Typography tweaks */
@media (max-width: 575.98px) {
    .display-1 {
        font-size: 2.75rem;
        line-height: 1.02;
    }
    .h3 { font-size: 1.25rem; }
}

/* Entrance animations */
.animate-fade-up {
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(.2,.9,.3,1), opacity 0.6s ease;
    will-change: transform, opacity;
}
.animate-fade-up.in-view {
    transform: translateY(0);
    opacity: 1;
}

/* Small utility for subtle transform on hover */
.transform-hover-scale { transition: transform .18s ease; }
.transform-hover-scale:hover { transform: translateY(-3px); }

/* Minor accessibility adjustments */
.btn-outline-secondary {
    background: transparent;
}

/* End of styles */

/* Utility helpers moved from inline attributes */
.header-z { z-index: 100; }
.max-w-700 { max-width: 700px; }
.max-w-750 { max-width: 750px; }
.max-w-800 { max-width: 800px; }
.btn-outline-mint { border-color: var(--mint-primary); color: var(--mint-primary); }
.mockup-height { height: 300px; }
.icon-40 { width: 40px; height: 40px; }
.icon-20 { width: 20px; height: 20px; }
.icon-32 { width: 32px; height: 32px; }
.bg-slate-800 { background-color: #334155; }

/* Responsive hero image fallback */
.hero-fallback {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 520px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(16,185,129,0.12);
    overflow: hidden;
    display: block;
}
@media (max-width: 991.98px) {
    .hero-fallback { display: none; }
}

.hero-fallback img { width: 100%; height: auto; display: block; }

/* Mockup image styling and aspect ratio/frame */
.mockup-height {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 520px;
}
.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(16,185,129,0.12), 0 2px 6px rgba(0,0,0,0.06);
    display: block;
}

