/* ===== JUPITER STARTUPS - MAIN CSS ===== */
/* This file imports all modular CSS components */

/* Import base styles and design system */
@import url('./base.css');

/* Import component styles */
@import url('./navigation.css');
@import url('./hero.css');
@import url('./sections.css');
@import url('./footer.css');

/* ===== ADDITIONAL GLOBAL STYLES ===== */

/* Body class for startups pages */
.startups-body {
    background: var(--white);
}

.startups-main {
    min-height: 100vh;
}

/* ===== UTILITY OVERRIDES ===== */

/* Ensure proper spacing for startups layout */
.startups-nav+.startups-main {
    padding-top: 80px;
    /* Account for fixed navigation */
}

/* ===== JUMP TO TOP BUTTON ===== */
.jump-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none !important;
    color: var(--gray-700);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    box-shadow: none !important;
    transition: all var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: var(--z-fixed);
}

.jump-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jump-to-top:hover {
    background: none !important;
    color: var(--gray-900);
    box-shadow: none !important;
    transform: translateY(-3px);
}

.jump-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.jump-to-top i {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* ===== PRINT STYLES ===== */
@media print {

    .startups-nav,
    .footer-main,
    .footer-bottom,
    .jump-to-top {
        display: none;
    }

    .startups-main {
        padding-top: 0;
    }
}