* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #ffffff;
  --text-color: #111111;
  --secondary-text: #555555;
  --accent: #c0a060;
  --divider: #e5e5e5;
  --light-bg: #f8f8f8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

p {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary:hover {
  background-color: #b08c50;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 25px 90px;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-overlay img {
  width: 350px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* About */
.about {
  background-color: var(--light-bg);
  padding: 100px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
  height: 500px;
  background-image: url("./images/img7.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.about-text {
  flex: 1;
}

.divider {
  width: 50px;
  height: 2px;
  background-color: var(--accent);
  margin: 20px 0 30px;
}

/* Services */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-color);
  border: 1px solid #e0e0e0;
  padding: 30px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.service-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover h3 {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
}

.service-image {
  height: 200px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
  border-radius: 4px;
}

.service-card:nth-child(1) .service-image {
  background-image: url("/images/img3.jpg");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(2) .service-image {
  background-image: url("images/img9.jpg");
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(3) .service-image {
  background-image: url("images/img1.jpg");
  background-size: cover;
  background-position: center;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.before-after-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 80px 0;
}

.before-after-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
}

.before-card,
.after-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.before-card img,
.after-card img {
  width: 100%;
  max-width: 600px;
  height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.before-card p,
.after-card p {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

/* Projects */
.projects {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-item {
  position: relative;
  height: 300px;
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* img8, img5, img6, 7,3,9,1,11,10,2 - used*/

.project-item:nth-child(1) {
  background-image: url("images/img8.jpg");
  background-size: cover;
  background-position: center;
}

.project-item:nth-child(2) {
  background-image: url("images/img5.jpg");
  background-size: cover;
  background-position: center;
}

.project-item:nth-child(3) {
  background-image: url("images/img6.jpg");
  background-size: cover;
  background-position: center;
}

.project-item:nth-child(4) {
  background-image: url("images/img10.jpg");
  background-size: cover;
  background-position: center;
}

.project-item:nth-child(5) {
  background-image: url("images/img11.jpg");
  background-size: cover;
  background-position: center;
}

.project-item:nth-child(6) {
  background-image: url("images/img2.jpg");
  background-size: cover;
  background-position: center;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}

.project-item:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-overlay h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}

/* Testimonials */
.testimonials {
  background-color: var(--light-bg);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.client-info h4 {
  color: var(--accent);
  margin-bottom: 5px;
}

.client-info span {
  color: var(--secondary-text);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 100px 0;
}

.contact-content {
  display: flex;
  gap: 60px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

.contact-btn {
  background-color: var(--accent);
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-btn:hover {
  background-color: #b08c50;
  transform: translateY(-3px);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-top: 7px;
}


.contact-info {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

/* Footer */
.footer {
  background-color: var(--light-bg);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 30px;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  transition: all 0.3s ease;
}


.footer-social a:hover svg {
  fill: #b08c50;
  transform: scale(1.1);
}

.contact-btn.instagram {
  background-color: #e1306c;
}

.contact-btn.instagram:hover {
  background-color: #c32aa3;
}

.footer .divider {
  margin: 0 auto 30px;
}

.footer p {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* Mobile Menu */
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--divider);
    width: 100%;
    text-align: center;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }

  .hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
  }

  .hamburger.active span:first-child {
    transform: rotate(45deg) translate(11px, 0px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:last-child {
    transform: rotate(-45deg) translate(11px, 0px);
  }
  .logo-overlay img {
    width: 200px;
  }

  h2 {
    font-size: 2rem;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }

  .logo img {
    height: 55px;
  }
}

@media (max-width: 900px) {
  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }

  .about-image {
    height: 400px;
    margin-bottom: 40px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 15px 20px;
  }

  .logo-overlay img {
    width: 200px;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .services,
  .before-after,
  .projects,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .comparison-slider {
    height: 400px;
  }
}
