@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: rgb(203, 139, 56);
  --secondary-color: chocolate;
  --background-color: rgb(252, 236, 215);
  --section-padding: 60px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Work Sans", sans-serif;
}
.container {
  margin: 0 auto;
  padding: 0 15px;
}
/* Responsive Design */

/* For small screens */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .landing .intro-text h1 {
    font-size: 10px;
  }
}
/* Responsive Design for medium screens */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Responsive Design for larger screens */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/*start components*/
.special-heading {
  color: var(--secondary-color);
  font-size: 100px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -3px;
  margin: 0;
}
.special-heading + p {
  text-align: center;
  font-size: 20px;
  margin: -30px 0 0;
  color: #cb8b38;
}
@media (max-width: 767px) {
  .special-heading {
    font-size: 60px;
  }
  .special-heading + p {
    font-size: 15px;
    margin: -20px;
  }
}
/*End components*/

/*start header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 10px;
  background-color: #fff;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
}
.header .links {
  position: relative;
}
.header .links:hover .icon span:nth-child(2) {
  width: 100%;
}
.header .links .icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 30px;
}
.header .links .icon span {
  background-color: var(--secondary-color);
  height: 3px;
  margin-bottom: 4px;
}
.header .links .icon span:first-child {
  width: 100%;
}
.header .links .icon span:nth-child(2) {
  width: 60%;
}
.header .links .icon span:last-child {
  width: 100%;
}
.header .links ul {
  display: none;
  list-style: none;
  position: absolute;
  right: 0;
  top: calc(100% + 15px);
  min-width: 200px;
  background-color: var(--background-color);
  z-index: 1;
}
.header .links ul::before {
  content: "";
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent black transparent;
  position: absolute;
  right: 5px;
  top: -20px;
}
.header .links:hover ul {
  display: block;
}
.header .links ul li a {
  display: block;
  color: chocolate;
  font-weight: 500;
  text-decoration: none;
  padding: 15px;
  transition: 0.3s;
}
.header .links ul li a:hover {
  padding-left: 25px;
}

.header .links ul li:not(:last-child) a {
  border-bottom: 1px solid #444;
}
/* End Header */
/*start landing section*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.landing {
  background-image: url(images/bg.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.landing .intro-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}
.landing .intro-text h1 {
  font-size: 50px;
  color: bisque;
}
.landing .intro-text p {
  font-size: 20px;
  color: #fff;
  line-height: 1.8;
  width: 320px;
  max-width: 100%;
  margin: 20px auto;
}
/*end landing section*/
/*Start About section*/
.about {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.about .content h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.about .content p {
  width: 100%;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

/*End About Section*/
/*Start feature Section*/
.features {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: #f6f6f6;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(281px, 1fr));
  grid-gap: 20px;
}
.features .feat {
  text-align: center;
  padding: 20px;
  background-color: var(--background-color);
}
.features .feat span {
  font-size: 50px;
}
.features .feat h3 {
  font-weight: 800;
  color: var(--secondary-color);
  margin: 30px 0;
}
.features .feat p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
/*End feature Section*/
/*Start Services Section*/
.services {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.services .services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 100px;
}

.services .services-content .srv {
  background: #fdf6ec;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}
.services .srv:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .services .services-content .srv {
    flex-direction: column;
    text-align: center;
  }
  .services .services-content {
    grid-template-areas:
      "image"
      "col1"
      "col2";
  }
  .services .col:nth-child(1) {
    grid-area: col1;
  }
  .services .col:nth-child(2) {
    grid-area: col2;
  }
  .services .col:nth-child(3) {
    grid-area: image;
  }
}
.services .srv span {
  font-size: 40px;
  flex-shrink: 0;
}

.services .srv h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.services .srv p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.services .image img {
  width: 100%;
  height: 50vh;

  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/*End Services Section*/
/*Start products Section*/
.products {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #f6f6f6;
}
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  justify-content: center;
  margin-top: 80px;
}
.products .product {
  border-radius: 10px;
  overflow: hidden;
}
.products .product img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.products .product h3 {
  text-align: center;
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.products .product h3:hover {
  color: var(--primary-color);
}
.products .product p {
  text-align: center;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.products .product .price {
  margin-bottom: 10px;
  color:black;
  font-weight: 700;
}
.products .product .btn {
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: #f6f6f6;
  border: none;
  outline: none;
  font-weight: 600;
  border-radius: 4px;
  display: block;
  margin: 0 auto;        
  text-align: center;
  transition: 0.3s;
}
.products .product .btn:hover {
  background-color: var(--secondary-color);
}
/*End products Section*/
/*Start Gallery Section*/
.gallery {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  justify-content: center;
  margin-top: 80px;
}
.gallery .gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
/* End  Gallery Section */
/*Start footer section*/
.footer {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: #222;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer .footer-content .contact h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}
.footer .footer-content .contact p {
  margin-bottom: 10px;
  color: var(--background-color);
}
.footer .footer-content .contact p strong {
  color: var(--primary-color);
}

.footer .footer-content .links h2 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.footer .footer-content .links ul {
  list-style: none;
}
.footer .footer-content .links ul li {
  margin-bottom: 8px;
}
.footer .footer-content .links a {
  text-decoration: none;
  color: var(--background-color);
  transition: 0.3s;
}
.footer .footer-content .links a:hover {
  color: var(--primary-color);
}

.footer .newsletter h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.footer .newsletter p {
  margin-bottom: 15px;
  color: var(--background-color);
}
.footer .newsletter form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer .newsletter form input {
  flex: 1;
  padding: 15px 10px;
  border: none;
  outline: none;
  border-radius: 4px;
}
.footer .newsletter form input::placeholder {
  color: var(--secondary-color);
  font-style: italic;
}
.footer .newsletter form button {
  padding: 12px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap;
}

.footer .newsletter form button:hover {
  background: var(--secondary-color);
}

.footer .newsletter .social-icons a {
  margin-right: 12px;
  font-size: 20px;
  color: #f6f6f6;
  transition: 0.3s;
}
.footer .newsletter .social-icons a:hover {
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .newsletter form {
    flex-direction: column;
  }
  .footer .newsletter form input,
  .footer .newsletter form button {
    width: 100%;
  }
}
/*End Footer Section*/
