/* style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #0d0d0d; /* Pure black background */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.nav {
    margin-top: 20px;
}

.nav .home-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #fff;
    padding: 8px 15px;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav .home-link:hover {
    background: #fff;
    color: #764ba2;
}

/* ------------------- Responsive Design ------------------- */

/* For tablets and small devices */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    p {
        font-size: 1rem;
    }

    .social-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* For very small phones */
@media (max-width: 480px) {
    .profile-img {
        width: 100px;
        height: 100px;
    }

    p {
        font-size: 0.9rem;
    }

    .social-links {
        flex-direction: column;
        gap: 8px;
    }

    .social-links a {
        width: 100%;
        display: block;
    }

    .nav .home-link {
        display: block;
        margin-top: 10px;
    }
}

.back-home {
    margin: 20px;
    text-align: left;
}

.home-link {
    text-decoration: none;
    color: #ffffff; /* white text */
    background-color: #1e1e1e; /* dark background */
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

/* Hover effect */
.home-link:hover {
    background-color: #ff9800; /* orange highlight */
    color: #000;
    transform: translateY(-2px);
}

/* Make responsive for mobile */
@media (max-width: 600px) {
    .back-home {
        text-align: center;
        margin: 15px 0;
    }
    
    .home-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}
