/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.container {
    border-right: 1px solid #2f3336;
    border-left: 1px solid #2f3336;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #2f3336;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.developer-icon {
    margin-right: 15px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.profile-header h1 {
    font-size: 20px;
    font-weight: 700;
}

.profile-header p {
    font-size: 13px;
    color: #71767b;
    margin-top: 2px;
}

/* Cover Photo */
.cover-photo {
    width: 100%;
    height: 200px;
    position: relative;
    margin-bottom: 45px;
    overflow: visible;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-pic {
    position: absolute;
    bottom: -60px;
    left: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #15202b;
    overflow: hidden;
    background-color: #1e2732;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 15px 15px;
    margin-top: -30px;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 10px;
}

.social-icon {
    color: #fff;
    font-size: 24px; /* Increased from 20px to 24px (20% larger) */
    opacity: 0.7;
    transition: all 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.follow-btn {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.more-options {
    background: none;
    border: 1px solid #2f3336;
    color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Profile Info */
.profile-info {
    padding: 0 15px;
    margin-top: 10px;
}

.profile-info h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.username {
    color: #71767b;
    margin-bottom: 15px;
    display: block;
}

.bio {
    margin-bottom: 15px;
    line-height: 1.4;
}

.profile-details {
    margin: 15px 0;
    color: #71767b;
    font-size: 15px;
}

.profile-details span {
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 5px;
}

.profile-details i {
    margin-right: 5px;
}

.follow-info {
    display: flex;
    margin: 15px 0;
}

.follow-info span {
    margin-right: 20px;
    color: #71767b;
}

.follow-info strong {
    color: #fff;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid #2f3336;
    margin-top: 15px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #71767b;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.tab.active {
    color: #1d9bf0;
    border-bottom: 2px solid #1d9bf0;
}

.tab:hover {
    background-color: #181818;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

/* About Me Section */
.about-content {
    color: #e7e9ea;
    padding: 0 15px;
}

.about-content h3 {
    margin-bottom: 15px;
    color: #e7e9ea;
}

.about-content h4 {
    margin: 20px 0 10px;
    color: #e7e9ea;
}

.skills {
    margin-top: 20px;
}

.skill {
    margin-bottom: 15px;
}

.skill span {
    display: block;
    margin-bottom: 5px;
    color: #e7e9ea;
}

.skill-bar {
    background-color: #2f3336;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background-color: #1d9bf0;
    border-radius: 4px;
}

/* Portfolio Section */
.portfolio-title {
    color: #e7e9ea;
    padding: 0 15px 20px;
    font-size: 1.5em;
    margin: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 15px 30px;
}

.portfolio-item {
    background: #1e2732;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.project-status {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.status-badge.launched {
    background: rgba(255, 255, 255, 0.9);
    color: #4CAF50;
}

.status-badge.in-progress {
    background: rgba(255, 255, 255, 0.9);
    color: #FF9800;
}

.status-badge.design {
    background: rgba(255, 255, 255, 0.9);
    color: #9C27B0;
}

.project-icon,
.project-logo {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
}

.project-logo-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.portfolio-image h4 {
    margin: 5px 0;
    font-size: 1.3em;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.portfolio-image p {
    margin: 5px 0 0;
    font-size: 0.9em;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.portfolio-desc {
    padding: 20px;
    color: #e7e9ea;
    font-size: 0.95em;
    line-height: 1.5;
}

.portfolio-desc p {
    margin: 0 0 15px;
}

.project-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #2f3336;
}

.project-link {
    color: #1d9bf0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.project-link i {
    margin-left: 5px;
    font-size: 0.8em;
}

.project-link:hover {
    color: #1a8cd8;
    text-decoration: underline;
}

.coming-soon {
    color: #8b98a5;
    font-size: 0.9em;
    font-style: italic;
}

/* Hire Me Section */
.hire-content {
    padding: 0 15px;
    color: #e7e9ea;
}

.hire-content h3 {
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #1e2732;
    border-radius: 12px;
    text-decoration: none;
    color: #e7e9ea;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #2f3336;
}

.contact-method:hover {
    background-color: #2c3641;
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.5em;
    color: white;
}

.contact-icon.whatsapp { background-color: #25D366; }
.contact-icon.discord { background-color: #5865F2; }
.contact-icon.telegram { background-color: #26A5E4; }
.contact-icon.twitter { background-color: #000000; }

.contact-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #e7e9ea;
}

.contact-details p {
    margin: 0;
    font-size: 0.9em;
    color: #8b98a5;
}

.contact-note {
    margin-top: 25px;
    padding: 12px 15px;
    background-color: rgba(29, 155, 240, 0.1);
    border-radius: 8px;
    border-left: 3px solid #1d9bf0;
    color: #8b98a5;
    font-size: 0.9em;
}

.contact-note i {
    margin-right: 8px;
    color: #1d9bf0;
}

.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    margin-right: 10px;
    color: #1d9bf0;
    width: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    background: #1e2732;
    border: 1px solid #2f3336;
    border-radius: 5px;
    color: #e7e9ea;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #1d9bf0;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #1a8cd8;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .contact-method {
        padding: 12px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3em;
    }
    
    .contact-details h4 {
        font-size: 1em;
    }
    
    .contact-details p {
        font-size: 0.85em;
    }
}

/* Tweets */
.tweets {
    padding-bottom: 70px;
}

.tweet {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #2f3336;
}

.tweet-avatar {
    margin-right: 15px;
}

.tweet-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.tweet-content {
    flex: 1;
}

.tweet-header {
    margin-bottom: 5px;
}

.tweet-name {
    font-weight: 700;
    margin-right: 5px;
}

.tweet-username {
    color: #71767b;
    font-size: 15px;
}

.tweet-text {
    margin-bottom: 10px;
    line-height: 1.4;
}

.tweet-actions {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    color: #71767b;
}

.tweet-actions i {
    margin-right: 5px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #15202b;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    z-index: 100;
    border-top: 1px solid #2f3336;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-nav a,
.bottom-nav span {
    color: #71767b;
    font-size: 24px;
    text-decoration: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav a.active {
    color: #1d9bf0;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: rgba(29, 155, 240, 0.2);
}



/* Tech icon specific colors */
.html-icon i { color: #e34c26; }
.css-icon i { color: #264de4; }
.js-icon i { color: #f0db4f; }

/* Modal Fullscreen */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #1d9bf0;
}

/* Profile picture clickable */
.profile-pic {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 600px) {
    .profile-pic {
        width: 100px;
        height: 100px;
        bottom: -50px;
    }
}

@media (max-width: 500px) {
    .profile-pic {
        width: 100px;
        height: 100px;
        bottom: -50px;
    }
    
    .profile-actions {
        margin-top: 30px;
    }
}
