/* Reset some default styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color */
body {
    background-color: #fff;
    font-family: Arial, sans-serif;
}

/* Style the Navbar */
.navbar {
    background-color: #333;
    color: #f5f5f5 !important; /* Add !important to ensure the text color takes precedence */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.navbar li {
    padding: 10px;
    color: #f5f5f5
}

.navbar a {
    text-decoration: none;
    color: #f5f5f5 !important;
}


body {
    padding-top: 50px;
}

/* Home Section */
.home-section {
    background-color: #e2d1a463;
    padding: 40px;
    text-align: center;
}

.home-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.home-image {
    flex: 1;
}

.home-image img {
    width: 75%;
    max-width: 100%;
    display: block;
}

.home-content {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.home-content h2 {
    font-size: 45px;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Let's Talk button */
.lets-talk-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lets-talk-button {
    background-color: #333 !important;
}

.lets-talk-button:hover {
    background-color: #636262 !important;
    color: #fff !important; /* Set the text color on hover */
}


/* About Me Section */
.about-section {
    background-color: #e2d1a463;
    padding: 40px;
    text-align: center;
}

.about-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.about-content {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.about-content h2 {
    font-size: 45px;
    color: #333;
    font-family: Arial, sans-serif;
}

.about-content p {
    font-size: 16px;
    line-height: 1.5;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 75%;
    max-width: 100%;
    display: block;
}


/* Portfolio Section */
.portfolio-section {
    background-color: #e2d1a463;
    padding: 40px;
    text-align: center;
}

.portfolio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-image {
    flex: 1;
}

.portfolio-image img {
    width: 75%;
    max-width: 100%;
    display: block;
}

.portfolio-content {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.portfolio-content h2 {
    font-size: 45px;
    color: #333;
    font-family: 'Copperplate';
}


.content-list {
    list-style: none;
    padding: 0;
}


.content-list li {
    margin-bottom: 10px;
}



.portfolio-content {
    min-height: 300px; 
}


.section h3 {
    margin-bottom: 10px; 
    font-size: 30px; 
}


.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0; 
}




/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Contact Me Section */
.contact-section {
    background-color: #e2d1a463;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin: 20px 0;
}

.form-group label {
    font-weight: bold;
    display: block; 
    margin-bottom: 5px; 
    color: #333; 
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #636262;
}





/* Add some margin between form elements */
input[type="text"],
input[type="email"],
textarea,
button {
    margin-bottom: 15px;
}


.copyright {
    margin-top: 20px; 
}













