/* style.css */

/* --- NEW STYLE ADDED FOR JUSTIFIED ALIGNMENT --- */
.justified-text p {
    text-align: justify;
}
/* ----------------------------------------------- */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    /* background-color: #f4f4f4; */
    /* white */
    /* background-color: #fffdd0; */ 
    /* cream */
    background-color: #f5f5dc; 
    /* beige */
    /* background-color: #fffff0; */
    /* ivory */
    color: #333;
}
.container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 0px;
}
.profile-img {
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #0056b3;
}
.section {
    margin-bottom: 15px;
}
.section h2 {
    color: #0056b3;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.links {
    text-align: center;
    margin-top: 30px;
}
.links a {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.links a:hover {
    background-color: #0056b3;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin-bottom: 5px;
}

/* Navigation Bar Style */
.main-nav {
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.main-nav a {
    text-decoration: none;
    color: #0056b3;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.main-nav a:hover {
    background-color: #e6e6e6;
}

.main-nav .active {
    background-color: #0056b3;
    color: white;
}

.main-nav .active:hover {
    background-color: #004080;
}

.project-card {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.project-card h3 {
    color: #007bff;
    margin-top: 0;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #333; /* Darker link for contrast */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.project-link:hover {
    background-color: #555;
}

/* Projects Call to Action Button Style */
.project-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #28a745; /* A standard green for a prominent action button */
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-cta-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.project-cta-button i {
    margin-right: 8px;
}

.project-list {
    /* Override the global 'list-style: none;' setting */
    list-style: disc; 
    /* Add some padding back so the bullets are visible and indented */
    padding-left: 20px; 
    margin-top: 10px;
}

.project-list li {
    /* Optional: Slightly reduce margin for a denser list */
    margin-bottom: 8px; 
}

.project-card p,
.project-card ul li {
    text-align: justify;
}