/* Sun icon color in dark theme */
body.dark-theme .sun-icon {
    color: #fde047; /* light yellow */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "JetBrains Mono", monospace;  
}

body.dark-theme {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Social link styles */
.social-link {
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #a1a1aa;
    color: #111827;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 0;
}

.social-link:hover {
    color: #4fc3f7;
}

.social-icon {
    margin-right: 6px;
    height: 19px;
    width: 19px;
    color: #52525b;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    color: #4fc3f7;
}

/* Header & Navigation */
header {
    background-color: #e0e0e0;
    padding: 1rem;
    border-bottom: 1px solid #d0d0d0;
    transition: all 0.3s ease;
}

body.dark-theme header {
    background-color: #2d2d2d;
    border-bottom-color: #404040;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

body.dark-theme .logo a {
    color: #ffffff;
}

body.dark-theme .social-link {
    color: #e5e7eb;
    border-bottom-color: #52525b;
}

body.dark-theme .social-link:hover {
    color: #4fc3f7;
}

body.dark-theme .social-icon {
    color: #9ca3af;
}

.logo a:hover {
    text-decoration: underline;
}

.theme-toggle {
    margin-right: 2rem;
}

.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

body.dark-theme .theme-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sun-icon, .moon-icon {
    transition: all 0.3s ease;
}

/* Main content styles */
main {
    padding: 2rem;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.introduction h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #4fc3f7;
}

.introduction p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

body.dark-theme .introduction p {
    color: #cccccc;
}

.social-links {
    margin-top: 2rem;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.social-link {
    flex-shrink: 0;
}

/* Custom icon styles for platforms without SVG */
.dev-icon, .daily-icon, .contra-icon, .reddit-icon, .hackernoon-icon, 
.hashnode-icon, .dribbble-icon, .sponsors-icon, .devfolio-icon, .coursera-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    background: #4fc3f7;
    color: white;
    border-radius: 4px;
    padding: 2px;
}

  