* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --dark:#3e2723;
    --cream:#f5e9da;
    --coffee:#c69c6d;
}

section {
    padding: 40px 60px;
}

body {
    padding: 0;
    margin: 0;
}

.hero {
    text-align: center;
     background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0)), url(images/112321711.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    min-height: 80vh;
}

.hero h1{
    font-size: 54px;
    letter-spacing: 1.5px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white
}

.hero p {
    font-size: 20px;
    color: white;
}

#btn {
    background-color: var(--coffee);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

#btn:hover {
    background-color: #4b2e2e;
    transition-duration: 0.3s;
    color: white;
    transform: scale(1.05);
}

h2 {
    font-size: 36px;
}
.project-card{
width:300px;
background:#000000;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
margin:20px;
color: var(--coffee);
}

.project-card:hover {
    transform: translateY(-16px);
}

.project-card img{
width:100%;
border-radius:8px;
}



.prop {
    background-color: var(--coffee);
    padding-top: 10px; 
    padding-bottom:10px;
    
}

.proj{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

#l {
    color: var(--cream);
}

.about{
padding:80px 20px;
text-align:center;
background:var(--cream);
}

.about h2{
font-size:36px;
color:var(--dark);
margin-bottom:20px;
}

.about p{
max-width:700px;
margin:auto;
font-size:18px;
line-height:1.6;
color:#333;
}

.gallery {
    padding: 80px 20px;
    text-align: center;
    background: var(--coffee);
}

.gallery h2{
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 40px;
}

.image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.image img:hover{
    transform: scale(1.05);
    transition: 0.5s;
}


.contact{
padding:60px 20px;
text-align:center;
background:white;
}

.contact h2{
font-size:36px;
color:var(--dark);
margin-bottom:40px;
}

.contact-info{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.contact-card{
background:var(--cream);
padding:25px;
border-radius:10px;
width:200px;
height: 35vh;
}

.contact-card h3{
color:var(--dark);
margin-bottom:10px;
}

.map iframe{
    width: 100%;
    max-width: 600px;
    height: 250px;
    border-radius: 10px;
    margin-top: 20px;
}


.footer{
background:var(--dark);
color:white;
text-align:center;
padding:30px 20px;
}

.footer h3{
margin-bottom:10px;
}

.footer p{
margin:5px 0;
}


.features{
padding:80px 20px;
background:var(--cream);
text-align:center;
}

.features h2{
font-size:36px;
margin-bottom:40px;
color:var(--dark);
}

.feature-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.feature{
max-width:250px;
padding:20px;
background:white;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.feature h3{
margin-bottom:10px;
color:var(--dark);
}