
html{
scroll-behavior:smooth;
}
body {
  font-family: Arial, sans-serif;
  margin: 0; padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
background-image: url("/images/headerimage.jpg"); 
background-size: cover; 
background-position: center;
font-weight:bold;

color: #000000;
text-align: center; padding: 60px 20px; 
}


.portfolio .card{
overflow:hidden;
}

.portfolio img{
transition:0.4s;
}

.portfolio img:hover{
transform:scale(1.1);
}


h2{
  font-size:32px;
  margin-bottom:25px;
  position:relative;
}

h2::after{
  content:"";
  width:60px;
  height:3px;
  background:#C65D3B;
  display:block;
  margin:10px auto;

}

.header-contact {
  text-align: right;
  font-size: 0.95em;
  color: #000000;
font-weight:bold;
}

.header-contact p {
  margin: 2px 0;
}

.portfolio img{
  width:100%;
  border-radius:8px;
}

.portfolio-item{
position:relative;
overflow:hidden;
}

.overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:rgba(0,0,0,0.6);
color:white;
padding:15px;
opacity:0;
transition:0.4s;
}

.portfolio-item:hover .overlay{
opacity:1;
}


.portfolio .card{
  padding:10px;
}

nav a{
  color:white;
  margin:0 15px;
  text-decoration:none;
  font-weight:bold;
  padding:6px 10px;
  transition:0.3s;
}

nav a:hover{
  background:#C65D3B;
  border-radius:4px;
}
nav {
  background: #222;
  padding: 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.card{
  background: white;
  padding: 20px;
  margin: 10px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-weight:bold;
  border:2px solid #C65D3B;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.process{
    padding:60px 20px;
    font-size:10px;
    font-weight:bold;

}

.process h2{
    font-weight:bold;
    font-size:25px;

    margin-bottom:40px;
}



.process-container{
    display:flex;
flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:10px;


}

.step{

    background:white;
    padding:15px 25px;
    border-radius:8px;
    border:2px solid #C65D3B;
box-shadow:0 6px 15px rgba(0,0,0,0.12);
}

.arrow{
    font-size:28px;
    color:#C65D3B;
font-weight:bold;
}

│
.contact-link {
  color: #000;              
  text-decoration: none;
  padding: 5px 10px;        
  border-radius: 4px;      
  transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
  background-color: #e63946; 


  color: #fff;               
}
nav {
  background: #222;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url("/images/interiorbackground.jpg") no-repeat center center;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  font-weight: bold;
  position: relative;

}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index:1;

}

.hero-text{
position:relative;
z-index:2;
text-align:center;
animation:fadeUp 1.5s ease;
}
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.hero-text h2{
font-size:40px;
margin-bottom:10px;
}

.hero-text p{
font-size:18px;
}


#about {
  padding: 50px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* makes it responsive */
}

.about-text {
  max-width: 500px;
  text-align: left;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


section {
  padding: 40px;
  text-align: center;
background:#FFF8F0;
}

.services, .portfolio {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;

}

.card {
  background: white;
  padding: 20px;
  margin: 10px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
font-weight:bold;
    border:2px solid #C65D3B;


}

.hero{
position:relative;
z-index:1;
}

.hero *{
position:relative;
z-index:2;
}


footer {
  background: #444;
  color: white;
  text-align: center;
  padding: 20px;
}

form input, form textarea {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
}

form button{
background:#C65D3B;
padding:12px 25px;
border:none;
color:white;
font-weight:bold;
transition:0.3s;
}

form button:hover{
background:#000;
transform:translateY(-2px);
}




