* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Open Sans', sans-serif;
  background-color:#fff
}


header {
  background-color: #fff;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #c7a17a;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

nav a:hover {
  color: #c7a17a;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container img {
  width: 40px;
  height: auto;
}

.logo-container span {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #c7a17a;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 5px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('../assets/new-hero.webp') no-repeat center center/cover;
  height: 90vh;
  color: #fff;
}

.hero-text {
  max-width: 600px;
  z-index: 1;
}

.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #f3f3f3;
  margin-bottom: 30px;
}

.btn {
  background-color: #c7a17a;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #b8936e;
}

/* About Section */
.about {
  padding: 80px 60px;
  background-color: #fcfcfa;
  color: #333;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #c7a17a;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.projects {
  padding: 80px 60px;
  background-color: #f5f3f1;
  text-align: center;
}

.projects-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.projects h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #c7a17a;
  margin-bottom: 10px;
}

.projects p {
  font-size: 18px;
  color: #555;
}

.project-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 40px 0;
  overflow: hidden;
}

.project-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  scrollbar-width: none; /* Firefox */
}

.project-carousel::-webkit-scrollbar {
  display: none; /* Chrome */
}

.project-card {
  flex: 0 0 auto;
  width: 260px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.project-card h3 {
  padding: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #333;
}

.scroll-btn {
  background: #c7a17a;
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  top: 50%; 
  transform: translateY(-50%); 
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.contact {
  padding: 80px 60px;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
              url('../assets/contact-new2.webp') no-repeat center center/cover;
  text-align: center;
  backdrop-filter: blur(2px);
}

.contact-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #c7a17a;
}

.contact-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
}

.contact-form button {
  background-color: #c7a17a;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  align-self: center;
}

.contact-form button:hover {
  background-color: #b8936e;
}

.services {
  padding: 80px 60px;
  background-color: #f8f6f3;
  text-align: center;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #c7a17a;
  margin-bottom: 10px;
}

.services p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 40px;
  color: #c7a17a;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

.service-card p {
  color: #555;
  font-size: 16px;
}

.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .left, footer .right {
  margin: 10px 0;
  font-size: 16px;
}

footer a {
  color: #c7a17a;
  text-decoration: none;
  margin-left: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  overflow-y: auto;
  max-height: 80vh;
}

.modal-content img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.modal-content img:hover {
  transform: scale(1.05);
}

.modal .close {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@media(max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 60px 20px;
    background-position: center top;
  }
  .hero-text h2 {
    font-size: 36px;
  }
  header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; 
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
  }

  nav {
    position: absolute;
    top: 80px; 
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center; 
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
  }
  .about {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-image {
    margin-top: 30px;
  }

  .contact {
    padding: 60px 20px;
    background-position: top center;
  }

  .contact-form .btn {
    width: 100%;
  }

  .map-container iframe {
    height: 250px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .left, footer .right {
    width: 100%;
    margin: 5px 0;
  }

  footer .right {
    justify-content: center;
  }
}
