/* General Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfbf8; /* soft white */
  color: #4a3b2f; /* deep brown */
  line-height: 1.6;
}

/* Header */
header {
  background-color: #e6d3c2; /* nude tone */
  padding: 2rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  color: #4a3b2f;
}

.tagline {
  font-style: italic;
  margin-top: 0.5rem;
}

/* Sections */
section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center; /* center content */
}

h2 {
  margin-bottom: 1rem;
  color: #b38a6d;
}

/* About section */
.about {
  background-color: #fff9f5;
  padding: 3rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.about h2 {
  color: #4a3b2f;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-text {
  color: #6d5c4f;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.about-text strong {
  color: #d49e8b;
  font-weight: 600;
}

/* Services */
.services ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

.services ul li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4a3b2f;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background-color: #fdfbf8;
  border: 1px solid #e6d3c2;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.note {
  font-size: 0.85rem;
  color: #7a6655;
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonials {
  background-color: #f1e8df;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.testimonials blockquote {
  font-style: italic;
  color: #4a3b2f;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials span {
  display: block;
  margin-top: 0.5rem;
  color: #7a6655;
  font-weight: bold;
}

.testimonials-contact a {
  color: #b38a6d;
  text-decoration: none;
}

.testimonials-contact a:hover {
  text-decoration: underline;
}

/* Portfolio */
.portfolio-intro {
  color: #7a6655;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

/* Contact */
.contact a {
  color: #b38a6d;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #f1e8df;
  color: #4a3b2f;
}

/* Back to top button */
#topBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d49e8b;
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

#topBtn:hover {
  background-color: #b87d6c;
}
/* Portfolio galley */
.galley {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1 fr));
  gap:  1rem;
  margin-top: 2rem;
  padding: 0 1 rem;
}

.galley img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease; box-shadow: 0.3s ease;
}
.galley img:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}