/* Main Styles */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #FFF9F4;
    color: #333;
}

.bg-orange {
    background-color: #D76C4E !important;
}

.white-text {
    color: white !important;
}

.gray-text {
    color: #828282 !important;
}

.orange-underline {
    position: relative;
    display: inline-block;
}

.resume {
    width: 150px;
    height: 43px;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    border-radius: 24px;
    ;
}


.orange-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 4px;

    /* Thickness of the underline */
    background-color: orange;
    /* Color of the underline */
    padding-left: 10px;
    /* Left padding for the underline */
    padding-right: 10px;
    /* Right padding for the underline */
}

.projects {
    color: #25282B !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
}

.orange-text {
    color: #D76C4E !important;
    ;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    /* Bold for headings */
    font-size: 20px;
}

.main-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    /* Bold for headings */
    font-size: 64px;
    line-height: 120%;
}

.nav-container {

    margin-left: 100px !important;
    padding-left: 0 !important;

}

.navbar-brand {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    /* Bold for headings */
    font-size: 20px;
}

.nav-item {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    /* Bold for headings */
    font-size: 18px;
}

/* Navbar */
.navbar {
    background-color: #D76C4E !important;
}

.navbar a {
    color: white !important;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 50%;
    padding-left: 100px;
}

.hero-img {
    flex: 1;
    width: 40%;
    border-radius: 20px;
    top: 0;
    right: 0;
    padding-right: 0;
    max-height: 100%;
    object-fit: cover;
}

/* Project Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
}

.project-card {
    height: 520px;
    ;
}

.card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.card-body {
    padding: 45px;
    height: 100%;
    max-height: 100%;
}

.card-body h5 {
    color: #25282B !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    /* Bold for headings */
    font-size: 40px;
    line-height: 150%;
}

.card-body p {
    color: #828282 !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

.card-body a {

    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    border-radius: 24px;
    border: 1px solid #25282B;
}

.card-img {
    padding: 20px;
    height: 100%;
    max-height: 100%;
}

/* Footer */
footer {
    position: relative;
    background: #D76C4E;
    color: white;
    text-align: center;
    padding: 50px 0;
}

footer::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('../assets/footer_wave.png') no-repeat center;
    background-size: cover;
}

.social-icon {
    font-size: 24px;
    /* Adjust size as needed */
    margin-right: 10px;
}