/* General Setup */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #4169E1;
    color: #333;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Container Card */
.profile-container {
    background-color: #ffffff;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Header & Image */
.profile-header h1 {
    margin: 15px 0 5px 0;
    font-size: 1.8rem;
    color: #1a1a1a;
}

.profile-header .tagline {
    color: #777;
    font-size: 1rem;
    margin-bottom: 20px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

hr {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 25px 0;
}

/* Sections */
.profile-section h2, .profile-footer h2 {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.profile-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Skills Badges */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.skill-badge {
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Footer & Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* ==========================================
   1. Base Setup & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2d3748;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* ==========================================
   2. Main Profile Card
   ========================================== */
.profile-container {
    background-color: #ffffff;
    max-width: 480px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

/* Subtly lifts the card when hovered */
.profile-container:hover {
    transform: translateY(-5px);
}

/* ==========================================
   3. Header Section (Avatar & Name)
   ========================================== */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4f46e5; /* Modern Indigo Border */
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.profile-header h1 {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.profile-header .tagline {
    font-size: 1rem;
    color: #718096;
    margin-top: 6px;
    font-weight: 500;
}

hr {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

/* ==========================================
   4. Content Sections (About & Skills)
   ========================================== */
.profile-section {
    margin-bottom: 25px;
}

.profile-section h2,
.profile-footer h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4f46e5;
    margin-bottom: 12px;
    font-weight: 600;
}

.profile-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    text-align: justify;
}

/* Skills Badges */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.skill-badge {
    background-color: #f0fdf4; /* Light green tint */
    color: #166534;            /* Deep green text */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

/* ==========================================
   5. Footer & Social Links
   ========================================== */
.profile-footer {
    text-align: center;
    margin-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #f7fafc;
    border: 1px solid #edf2f7;
    transition: all 0.2s ease;
}

/* Smooth transition to indigo on hover */
.social-links a:hover {
    color: #ffffff;
    background-color: #4f46e5;
    border-color: #4f46e5;
}

/* ==========================================
   6. Responsiveness
   ========================================== */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .profile-container {
        padding: 25px 20px;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* ==========================================
   1. Base Setup & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Soft light brown/tan background gradient */
    background: linear-gradient(135deg, #f5f0ea 0%, #e6dacb 100%);
    color: #3e3327;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


/* Update the avatar border */
.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #7c5e43; /* Warm deep brown */
    box-shadow: 0 4px 10px rgba(124, 94, 67, 0.15);
}

/* Update heading colors */
.profile-section h2,
.profile-footer h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c5e43; /* Warm deep brown */
    margin-bottom: 12px;
    font-weight: 600;
}

/* Update the link hover color */
.social-links a:hover {
    color: #ffffff;
    background-color: #7c5e43; /* Warm deep brown */
    border-color: #7c5e43;
}

/* Floating Theme Button */
.theme-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #7c5e43;
    background-color: #ffffff;
    color: #7c5e43;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-btn:hover {
    background-color: #7c5e43;
    color: #ffffff;
}

/* Dynamic Time Styling */
.time-display {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
}

/* ==========================================
   7. Dark Theme Styles (Triggered by JS)
   ========================================== */
body.dark-theme {
    background: linear-gradient(135deg, #1f1a15 0%, #120e0b 100%);
    color: #e2e8f0;
}

body.dark-theme .profile-container {
    background-color: #2d241e;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

body.dark-theme .profile-header h1 {
    color: #f7fafc;
}

body.dark-theme .profile-header .tagline {
    color: #a0aec0;
}

body.dark-theme .profile-section p {
    color: #cbd5e0;
}

body.dark-theme hr {
    background: #4a3b32;
}

body.dark-theme .social-links a {
    background-color: #3d3027;
    border-color: #4a3b32;
    color: #cbd5e0;
}

body.dark-theme .social-links a:hover {
    background-color: #e6dacb;
    color: #120e0b;
}

body.dark-theme .theme-btn {
    background-color: #3d3027;
    color: #e6dacb;
    border-color: #e6dacb;
}


/* ==========================================
   1. Base Setup & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Soft light blue gradient */
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}


/* Update the avatar border to a deep slate blue */
.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0284c7; /* Vibrant blue */
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.15);
}

/* Update heading colors */
.profile-section h2,
.profile-footer h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0284c7; /* Vibrant blue */
    margin-bottom: 12px;
    font-weight: 600;
}

/* Update the link hover color */
.social-links a:hover {
    color: #ffffff;
    background-color: #0284c7; /* Vibrant blue */
    border-color: #0284c7;
}


body {
    background-color: lightblue; /* Using a color name */
}


body {
    /* Blends from a lighter blue at the top-left to a slightly darker blue at the bottom-right */
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); /* <-- This is the light blue */
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #e0f2fe 0%, #FFD700 100%);
    color: #1e293b;
    min-height: 100vh;

    /* Change 'display: flex;' to 'display: none;' */
    display: none;

    justify-content: center;
    align-items: center;
    padding: 20px;
}




/* ==========================================
   Tab Navigation Menu Styling
   ========================================== */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Hover state for tabs */
.tab-button:hover {
    background-color: #f0fdf4;
    color: #0284c7;
}

/* Styling for the currently active/clicked tab */
.tab-button.active {
    background-color: #0284c7;
    color: #ffffff;
}

/* ==========================================
   Tab Content Visibility Rules
   ========================================== */
/* Hide all tab contents by default */
.tab-content {
    display: none;
}

/* Only show the content that has the active-content class */
.tab-content.active-content {
    display: block;
}

/* Dark Mode Adjustments for Tabs */
body.dark-theme .tab-button {
    color: #cbd5e0;
}
body.dark-theme .tab-button:hover {
    background-color: #3d3027;
    color: #e6dacb;
}
body.dark-theme .tab-button.active {
    background-color: #e6dacb;
    color: #120e0b;
}