:root {
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --accent: #fa8659;
    --text: #e0e0e0;
    --text-secondary: #a0a0a0;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 1rem;
    
}

header {
    text-align: center;
    margin-bottom: 0;
}




.banner-container {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    border-radius: 16px;
    margin-bottom: 4rem;

}



.banner-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    /* opacity: 0.85; */
    filter: brightness(0.7);
    box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
}

.profile {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 100%;
    text-align: center;
    padding: 1rem;
    /* margin-top: -120px; */
    margin-bottom: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;
    

}

.profile-center {
    text-align: center;
}

/* Style the navbar */
.navbar {
    position: absolute;
    width: 100%;
    top: 75%; /* Align with the middle of the profile section */
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

/*underline effect*/

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}



.nav-link:hover::after {
    width: 100%;
}

/* Adjust profile image size and positioning */
.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0.5rem 0;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}




.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
    z-index: 1000;
}

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

h1 {
    font-size: 2rem;
    
    font-weight: 700;
}

.tagline {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.bio {
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 1rem;
    padding: 0 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.bio p {
    margin: 0;
    padding: 0;
}


.content-container {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: flex-start;

}


.links, .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    gap: 1rem;
    margin: 0 auto;
}

.art-left, .art-right {
    flex: 0 0 20%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    
}

.art-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.art-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* transition: opacity 0.5 ease; */


}



.link-card {
    display: flex;
    align-items: center;
    padding: 0.2rem 1rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #333;
}


.link-card i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent);

}

.link-card span {
    font-size: 1.1rem;
    font-weight: 500;
}

.link-card:hover {
    transform: scale(1.05);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    font-size: 1.1rem;
    color: var(--text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #333;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 150px;
}

.contact-form button[type="submit"] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background-color: var(--accent);
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #a15439; /* Darker accent color */
}


footer{
    text-align: center;
    margin-top: 4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.profile h1,
.profile .tagline {
    text-shadow: 0 2px 2px  rgba(0, 0, 0, 0.9);
}

button  {
    padding: 5px 20px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    .nav-container {
        padding: 0 1rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .profile {
        flex-direction: column;
    }

    /* .navbar {
        position: relative;
        transform: none;
        margin-top: 1rem;
    } */
/* 
    .navbar {
        position: relative;
        transform: none;
        margin-top: 1rem;
    } */
}