/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-primary: #000;
    --text-secondary: #666;
    --accent: #ebb551;
    --bg: #fff;
    --link-hover: #000;
    --max-width: 600px;
}

html {
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: Sora, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Container */
.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}



.intro {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Platform Links */
.platform-link {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.5rem 0.75rem;
    margin: 0.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    min-width: 2.5rem;
    text-align: center;
}

/* Sronu - Lightbulb Yellow */
.platform-link[href*="sronu"] {
    background-image: url('https://scontent.facc1-1.fna.fbcdn.net/v/t39.30808-6/500963407_10086026474796718_4774214719450175344_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=6ee11a&_nc_ohc=k2PwaDfNRNUQ7kNvwHqwZMU&_nc_oc=AdktjSF7DHpBxFtBQRYwp7C8Jewtmg42Ce-UR-U9jRdXs5hvY-VPJdYHnSGiNTKyn5M&_nc_zt=23&_nc_ht=scontent.facc1-1.fna&_nc_gid=-zzXWIfIjxTr2Zq_BkC2bQ&oh=00_AfM1bVVTOLJmm384tcCC5_c5QZ1hUa0xfypVlYci6tOHsw&oe=68648C01');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 8px center;
    padding-left: 2rem;
}

.platform-link[href*="sronu"]:hover {
    background-color: white;
    background-image: url('https://scontent.facc1-1.fna.fbcdn.net/v/t39.30808-6/500963407_10086026474796718_4774214719450175344_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=6ee11a&_nc_ohc=k2PwaDfNRNUQ7kNvwHqwZMU&_nc_oc=AdktjSF7DHpBxFtBQRYwp7C8Jewtmg42Ce-UR-U9jRdXs5hvY-VPJdYHnSGiNTKyn5M&_nc_zt=23&_nc_ht=scontent.facc1-1.fna&_nc_gid=-zzXWIfIjxTr2Zq_BkC2bQ&oh=00_AfM1bVVTOLJmm384tcCC5_c5QZ1hUa0xfypVlYci6tOHsw&oe=68648C01');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 8px center;
    color: #333;
    transform: translateY(-2px);
}

/* myPathway - Blue */
.platform-link[href*="mypathway"] {
    background-image: url('https://mypathway.app/blog/wp-content/uploads/2025/04/cropped-favicon.png');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 8px center;
    padding-left: 2rem;
}

.platform-link[href*="mypathway"]:hover {
    background-color: #01ffcd;
    background-image: url('https://mypathway.app/blog/wp-content/uploads/2025/04/cropped-favicon.png');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 8px center;
    color: white;
    transform: translateY(-2px);
}

/* Asetena Pa - Deep Blue */
.platform-link[href*="asetenapa"] {
    background-image: url('https://asetenapa.com/wp-content/uploads/2024/04/asetena-pa-logo.png');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 8px center;
    padding-left: 2rem;
}

.platform-link[href*="asetenapa"]:hover {
    background-color: #354f6a;
    background-image: url('https://asetenapa.com/wp-content/uploads/2024/04/asetena-pa-logo.png');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 8px center;
    color: white;
    transform: translateY(-2px);
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}





/* Quote */
.quote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: normal;
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    text-align: left;
}

.quote-author {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.location {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact {
    font-size: 0.95rem;
}

.contact a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: var(--accent);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, p {
    animation: fadeIn 0.6s ease-out;
}

.description:nth-child(3) { animation-delay: 0.1s; }
.description:nth-child(4) { animation-delay: 0.2s; }
.description:nth-child(5) { animation-delay: 0.3s; }
.footer-links { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        padding: 1.5rem;
    }
    
    .platform-link {
        font-size: 0.95rem;
        margin: 0.2rem;
    }
}



/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
} 