/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}

a {
  color: #ffffff;
  text-decoration: none;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header / Hero */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;

  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}


header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  padding: 0.8rem 2rem;
  background-color: #111111;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #555555;
}

/* Sections */
section {
  padding: 5rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-item {
  flex: 1 1 250px;
  margin: 1rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.service-item img {
  width: 60px;
  margin-bottom: 1rem;
}
s
.service-item:hover {
  transform: translateY(-5px);
}

/* Portfolio */
.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.portfolio-item {
  flex: 1 1 300px;
  margin: 1rem;
  height: 200px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.item-1 {
  background-image: url("images/furniture\ portfoilo.jpg");
}

.item-2 {
  background-image: url("images/boutique.jpg");
}

.portfolio-item {
  background-size: cover;
  background-position: center;
}
.about-image {
  max-width: 300px;
  display: block;
  margin: 2rem auto;
}
/* Floating Back Button Styling */
.back-to-portfolio {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #0f172a; /* Dark professional color */
  color: rgb(27, 26, 26);
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Ensures it stays on top of everything */
  transition: all 0.3s ease;
  font-size: 14px;
}

.back-to-portfolio:hover {
  background: #f97316; /* Changes to your brand orange on hover */
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Contact */
.contact {
  text-align: center;
}

.contact a {
  display: inline-block;
  margin: 0.5rem 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #111111;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact a:hover {
  background-color: #555555;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background-color: #f5f5f5;
  color: #555555;
}

/* Responsive */
@media(max-width: 768px){
  .services, .portfolio {
    flex-direction: column;
    align-items: center;
  }
}
