@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: #C27A5B;
    --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: #ece1e4;
    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-image {
     width: 400px;
    height: 400px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    

}

.hero-wrapper {
    background-color: #e7deda;
}

.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 {
    background-color: #c78061;
    color: #ffff;
}

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

.btn-secondary:hover {
    color: #C27A5B;
    background-color: #eee8e6;
}

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

.navlink:link,
.navlink:visited {
    color: #99837a;
}

.navlink:hover {
    color: #7a7754;
    text-decoration: underline;
}

.contact-section {
    margin-top: 60px;
    background-color: #99837a;
    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(3, 2fr);
    gap: 40px;
}

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

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

.project-text {
    padding: 24px;
}

.project-title {
    font-size: 24px;
    margin-bottom: 8px;
}
.project-description {
    color: #535353;
    line-clamp: 2;
}

.project-tech span {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 80px;
    height: 30px;
    padding: 0 16px;
    margin: 4px;
    color: var(--primary-color);
}

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

textarea {
    height: 400px;
}
.footer-section {
    border-top: 1px solid #f1e2db;
    padding: 18px;
    background-color: whitesmoke;
    margin-top: 60px;
}


#testimonials {
    padding: 60px 20px;
    /* background: #f5ede9; */
    text-align: center;
}

.testimonials h2{
    /* font-size: 32px; */
    margin-bottom: 10px;
}




.testimonial-card>blockquote{
    font-style: italic;
    color: black;
    margin-bottom: 10px;
    margin-top: 10px;
}

.testimonial-card>h3 {
    margin: 10px;
    color: black;
}

.testimonial-card>p {
    color: brown;
    font-size: 16px;
}



.testimonial-card> img{
    width: 200px;
    height: 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    
    

}

.testimonial-card-wrapper{
    margin-top: 10px;
    /* display: flex; */
    gap: 10px;
    justify-content: center;
     /* margin-top: 60px; */
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    
    
}

.testimonial-card {
    border-radius: 50px;
    background-color: whitesmoke;
    padding: 10px;
    /* text-align: center; */
    margin: 15px;
}



