/* ========================================
   UNIVERSAL CSS FOR ALL JET SITES
   Based on JetVentureCapital.com index.php
   ======================================== */

/* ========================================
   VARIABLES & BASE STYLES
   ======================================== */
:root {
    --transition-duration: 0.3s;
}

/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    /* CSS fade-in animation */
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MAIN PAGE CONTENT
   ======================================== */
.main-content {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    height: auto;
    display: block;
    margin: 0 auto;
    transition: opacity var(--transition-duration) ease;
}

.contact-info {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Social Media Links - Universal Structure */
.main-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.main-social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.main-social-links a:hover {
    transform: scale(1.1);
}

.main-social-links img {
    width: 32px;
    height: auto;
    transition: opacity 0.3s ease;
}

.main-social-links img:hover {
    opacity: 0.7;
}

.main-social-links .crunchbase-icon {
    width: 37px;
    margin-top: -2px;
}

/* Footer */
.main-footer {
    margin-top: 2rem;
    font-size: 14px;
}

/* Links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.underline {
    border-bottom: 1px solid #808080;
}

/* ========================================
   NEWS BUTTON - UNIVERSAL STRUCTURE
   ======================================== */
.news-button {
    position: absolute;
    top: 4rem;
    right: 3rem;
    background: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    text-shadow: none;
    text-decoration: underline;
    outline: none;
}

.news-button:hover {
    transform: scale(1.05);
}

.news-button:active {
    transform: scale(0.98);
}

/* ========================================
   RESPONSIVE DESIGN - UNIVERSAL BREAKPOINTS
   ======================================== */

/* Tablet and smaller desktop */
@media (max-width: 768px) {
    .news-button {
        top: 5rem;
        right: 3rem;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .main-content {
        padding: 1rem;
        width: 95%;
    }
    
    body {
        font-size: 4.1vw;
    }
    
    .contact-info {
        font-size: 4vw;
    }
    
    .main-footer {
        font-size: 4vw;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .news-button {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .main-content {
        width: 90%;
    }
}

/* Landscape orientation fixes for mobile and tablet */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        font-size: 3.5vw;
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .main-content {
        padding: 0.5rem;
        width: 90%;
        min-height: auto;
        justify-content: center;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        font-size: 3vw;
        margin-bottom: 1rem;
    }
    
    .main-social-links {
        margin-bottom: 1rem;
    }
    
    .main-footer {
        font-size: 3vw;
        margin-top: 1rem;
    }
    
    .news-button {
        top: 2rem;
        right: 2rem;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Landscape orientation fixes for small mobile phones */
@media (max-width: 480px) and (orientation: landscape) {
    body {
        font-size: 3vw;
        padding: 0.5rem 0;
    }
    
    .main-content {
        padding: 0.25rem;
        width: 85%;
    }
    
    .logo-container {
        margin-bottom: 0.75rem;
    }
    
    .contact-info {
        font-size: 2.5vw;
        margin-bottom: 0.75rem;
    }
    
    .main-social-links {
        margin-bottom: 0.75rem;
        gap: 1rem;
    }
    
    .main-footer {
        font-size: 2.5vw;
        margin-top: 0.75rem;
    }
    
    .news-button {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Large desktop adjustments */
@media (min-width: 1200px) {
    body {
        font-size: 1.1rem;
    }
    
    .contact-info {
        font-size: 1.1rem;
    }
    
    .main-footer {
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    body {
        font-size: 1.2rem;
    }
    
    .contact-info {
        font-size: 1.2rem;
    }
    
    .main-footer {
        font-size: 1.1rem;
    }
}

/* ========================================
   BROWSER & ACCESSIBILITY FIXES
   ======================================== */

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .news-button {
        transition: none;
    }
    
    .main-social-links a {
        transition: none;
    }
    
    .main-social-links img {
        transition: none;
    }
}



main.main-content footer.main-footer p {
  font-size: 12px !important;
}
