@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/fregan-serif');

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

:root {
    --primary-color: #B34769;
    --secondary-color: #ece1e4;
}

body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fregan Serif', sans-serif;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}



a {
    text-decoration: none;

}

li {
    list-style: none;

}

footer p {
    text-align: center;
    font-size: 12px;
}

.header{
    border-bottom: solid 1px #e9dee1;
    padding: 16px 0;
   
}
.container {
    max-width: 1080px;
    margin: 0 auto;

}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.header-links{
    display: flex;
    gap: 16px;
}

.hero {
    color: #000;
    /* text-align: center; */
   
    padding: 40px;
    min-height: 80vh;
    display: flex;
        justify-content: center;
        align-items: center;
}
.hero-wrapper{
    background-color: #ede2e5;
}

.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-btn{
    display: flex;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid;
    margin: 10px;

}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    color: #ece1e4;
    background-color: #c6708b;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color)
}

.btn-secondary:hover {
    background-color: #efdcdf;
    ;
    color: #bf778e;
}



.profile {
    color: var(--primary-color);
    text-decoration: underline;
}

.navlink:link,
.navlink:visited {
    color: #B34769;

}

.navlink:hover {
    color: #31101b;
    text-decoration: underline;
}

.contact-section {
    margin-top: 60px;
    background-color: #B34769;
    padding: 60px;
    color: #fff;
    border-radius: 16px;
}

.contact-section>h3 {
    text-align: center;
    font-size: 32px;

}

.project-card-wrapper{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
}

.project-card{
    border-radius: 12px;
    background-color: whitesmoke;
}

.project-card> img{
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.Testimonial-section{
    margin-top: 60px;
    /* display: flex; */
    gap: 20px;
    text-align: center;
    border-radius: 5px;
}
.testimonial-card{
    background-color: #c91d50b8;
    padding: 24px;
    border-radius: 12px;

}
.testimonial-card-wrapper{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.project-text{
    padding: 24px;
}

.project-title{
    font-size: 24px;
    margin-bottom: 8px;
}

.project-description{
    color: lightcoral;
    line-clamp: 2;
}

.project-tech span{
    background-color: var(--secondary-color);
    border-radius: 80px;
    display: inline-block;
    height: 40px;
    padding: 16px;
}

input,
textarea {
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    width: 100%;
    background-color: #f29cb7;
}

textarea {
    height: 400px;
}

.footer-section {
    border-top: 1px solid #e7d6dc;
    padding: 18px;
    background-color: #b347692e;
    margin-top: 60px;
}