/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background-color: #E0DDD6;
    color: #000000;
    margin: 0;
    font-family: "montserrat" system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
nav{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   text-align: left;
}

header li{
    display: inline-block;
    margin: 12px;
    font-size: 20px;
}
.title{
    margin: 1rem;
    padding-left: 2rem;
    line-height: 1.4rem;
    font-weight:200;
    font-size: 20px;
    
}
nav a {
    color: #070707;
    text-decoration: none;
}
.background{
    background-image:url(https://images.pexels.com/photos/28539583/pexels-photo-28539583/free-photo-of-picos-majestosos-das-montanhas-ao-nascer-do-sol.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-size: cover;
} 

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    height: 90vh;
    background-size: cover;
    
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    margin: 20px 0;
    font-size: 26px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #030303;
    text-decoration: none;
    border: 2px solid #000000;
    border-radius: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #ff7b54;
    color: #0d1b2a;
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    height: 68vh;
}
.about img {
    height: 15rem;
    width: 15rem;
    border-radius:200px;
    background-size: cover;
    object-fit: cover;

}
.about1 h2{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.about p{
    font-size: 23px;
}

/* Projects Section */
.projects {
    padding: 50px 20px;
    text-align: center;
}
.projects h2{
    padding-bottom: 2rem;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.projects p {
    font-size: 16px;
}

.project-card {
    background-color:#6B6259;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-align: center;
    color:#ffffff;
    overflow: hidden;
    
}
.project-card img {
    width: 100%;
    max-width: 100%;
    height: 55%;
    border-radius: 11px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.project-card img:hover{
    transform:scale(1.1);
}

.project-card:hover {
    transform: translateY(-5px);
}

/*contato call to action*/
#contato{
height: 60vh;
text-align: center;
margin: 4rem;
margin-top: 10rem;
}
#contato h2{
    font-size: 3rem;
    margin-bottom: 2.5rem;
    line-height: 2.5rem;
    white-space: pre-line;
}
#contato a{
    text-decoration: none;
    border: 2px solid #000000;
    padding: 1rem 2rem;
    margin-top: 2rem;
    border-radius: 8px;
    color: #000000;
    font-size: 1.5rem;
    background-color: #6B6259;
}
#contato a:hover{
    background-color:#ff7b54 ;
}
/* Footer */
footer{
    text-align: left;
}
