/* Import Proxima Nova font */
@import url('https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.4;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 40px;
}

/* Date and time styles */
.datetime {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    color: #cccccc;
    text-align: right;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

#current-date {
    margin-bottom: 2px;
}

#current-time {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header styles */
header {
    margin-bottom: 40px;
}

.name {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
}

.title {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Section styles */
.content-section {
    margin-bottom: 15px;
}

.section-header {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    padding: 6px 0;
    padding-left: 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.section-header:hover {
    color: #cccccc;
}

.section-content {
    padding-left: 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.section-content.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.section-content.visible {
    max-height: 500px;
    opacity: 1;
}

/* Paragraph styles */
p {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 0.85rem;
}

/* Link styles */
.link, a {
    color: #ffffff !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link:hover, a:hover {
    color: #cccccc !important;
    text-decoration: none;
}

/* Footer styles */
footer {
    margin-top: 25px;
    padding-top: 15px;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 10px;
    }
    
    .name {
        font-size: 0.9rem;
    }
    
    .section-content {
        padding-left: 10px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    /* Improve mobile date/time positioning */
    .datetime {
        top: 10px;
        right: 10px;
        font-size: 0.6rem;
        padding: 6px 8px;
    }
    
    #current-date, #current-time {
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .datetime {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 0.5rem;
        padding: 4px 6px;
    }
    
    .container {
        padding-top: 40px;
    }
}
