/*Hero Section*/
.hero{
    height: 90vh;
    background-image: url(bailey-alexander-RbbZn_M5fgU-unsplash.jpg);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
}
.hero::before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content{
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}
.hero h1{
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.hero-btn{
    display: inline-block;
    background-color: #A47551;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s,
    transform 0.2s;

}
.hero-btn:hover{
    background-color: #7B5537;
    transform: translateY(-3px);
}
/* Services Section*/
.services{
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}
.services h2{
    font-size: 2.2rem;
    color: #8B6B4A;
    margin-bottom: 40px;
}
.service-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card{
    background-color: transparent; 
    border-radius: 0; 
    box-shadow: none; 
    padding: 0; 
    text-align: center;
    transition: transform 0.3s;

}
.service-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.service-card h3{
    color: #7B5537;
    margin-bottom: 10px;
}
.service-card p{
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;

}
/*=====Portfolio Section=====*/
#portfolio{
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}
#portfolio h2{
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
}
.portfolio-gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit,
    minmax(250px, 1fr));
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-item p {
  padding: 15px;
  color: #555;
  font-size: 0.95rem;
}
/* ===== Header ===== */
header {
  background-color: #A47551;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
  padding: 6px 12px;
  border-radius: 8px;
}

nav a:hover {
  background-color: white;
  color: #8B6B4A;
}
/* ===== Contact Section ===== */
#contact {
  padding: 60px 0;
  background-color: #f4f1ee; 
  text-align: center;
}

#contact h2 {
  color: #8B6B4A;
  font-size: 2rem;
  margin-bottom: 15px;
}

#contact p {
  color: #444;
  margin-bottom: 30px;
  font-size: 1rem;
}

.contact-form {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8B6B4A;
}

.contact-form button {
  background-color: #8B6B4A;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #a07656; 
}
/* ===== Footer ===== */
footer {
  background-color: #8B6B4A; 
  color: white;
  padding: 25px 0;
  text-align: center;
}

.footer-content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f4f1ee; 
}

footer p {
  font-size: 0.9rem;
  opacity: 0.9;
}
/* ===== Responsive Design ===== */


@media (max-width: 768px) {

  
  h1, h2 {
    font-size: 1.6rem;
  }

  
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    display: inline-block;
    margin: 5px 10px 0 0;
    padding: 8px 10px;
  }

  
  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  
  .services {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
    margin-bottom: 20px;
  }

  
  .portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .portfolio img {
    width: 90%;
    margin-bottom: 15px;
  }

  
  .contact-form {
    width: 100%;
    padding: 0 10px;
  }

  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}


@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 60px 15px;
  }

  nav a {
    font-size: 0.9rem;
  }

  footer p {
    font-size: 0.8rem;
  }
}
.phone {
  font-size: 3.0rem;
  font-weight: 1000;
  color: #8B6B4A;
  margin-bottom: 15px;
}

.phone a {
  color: #8B6B4A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.phone a:hover {
  color: #a07656;
}
.logo-img {
  width: 60px;        
  height: 60px;
  object-fit: contain; 
  border-radius: 10px; 
  display: block;
}
.brand {
    font-size: 2rem;
    font-weight: 400;
}