/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {

  font-family: 'Quicksand', sans-serif; Arial, sans-serif;
  background-color: #f5ebeb;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f5ebeb;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}
header img {
  height: 170px;
margin-top: 10px;
}
nav {
  display: flex;
max-width: 500px;
  flex-wrap: wrap;
  margin-top: 10px;
flex-direction: row; /* Keep logo and nav in same row */
}
nav a {
  margin: 5px 10px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
white-space: nowrap; /* Prevent line breaks inside text */
}
nav a:hover, nav a.active {
  background-color: #f1c550;
  color: #fff;
}

a.active {  
  color: #f1c550;
font-weight: bold;

}


/* products discription */
.pdis {
  text-align: left;

font-size: 20px;
  padding: 10px 10px;
  max-width: 130px;
  margin: auto;
}
.pdis h2 {
  letter-spacing: 2px;
  font-size: 1.7rem;
  margin-bottom: 10px;

}
/* home page Intro */
.intro {
  text-align: justify;

font-size: 20px;
  padding: 40px 50px;
  max-width: 100%;
  margin: auto;
}
.intro h2 {
  letter-spacing: 2px;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.intro h3 {
  letter-spacing: 2px;
  font-size: 1.7rem;
  margin-bottom: 20px;
font-size: 20px;
font-style: italic;
}


/* Home page categories Grid */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px, 1fr));
  gap: 10px; /* every product same gap */
  padding: 20px;
  box-sizing: border-box;
}

.product {
  text-align: center;
  background: #f5ebeb;
  border: 1px solid #eee;
  /* padding: 5px;*/
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}


.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 0px 0px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: auto;
  display: block;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.08);
}

.product p {
  margin-top: 15px;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.product:hover p {
  color: #c1761e;
}

.product a {  
  font-weight: bold;
text-decoration: none;
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.product a:hover {
  
  font-weight: bold;
  font-size: 20px;
  color: #c1761e;
text-decoration: none;
  transition: color 0.3s ease;
}

h3 {
  letter-spacing: 2px;
  font-size: 20px;
  margin-top: 30px;
}


/* gallery page Section */

.gallery{
    margin-top: 30px;
  margin-right: 30px;
font-size: 20px;
margin-left: 50px;
}

 .gallery-section {
   
}

 .gallery-section-images img {
object-fit: cover; 
  width: 420px;
height: 550px; 

  border-radius: 10px;
margin: 30px;
margin-left: 50px;

}

.gallery-section-price {
  font-weight: bold;
  margin-bottom: 20px;
margin-top: 10px;
}

*/gallery page anchor tags/*

#section1{
padding: 20px 20px;
}
#section2{
padding: 20px 20px;
}
#section3{
padding: 20px 20px;
}
#section4{
padding: 20px 20px;
}
#section5{
padding: 20px 20px;
}
#section6{
padding: 20px 20px;
}
#section7{
padding: 20px 20px;
}
#section8{
padding: 20px 20px;
}
#section9{
padding: 20px 20px;
}
#section10{
padding: 20px 20px;
}
#section11{
padding: 20px 20px;
}

html {
  scroll-behavior: smooth;
}
.border{
border-bottom: 2px solid #a6a6a6;
}


/* ------------------ FIXED CENTERED FOOTER ------------------ */

footer {

  background: #f5ebeb;
  padding: 30px 20px;
  border-top: 2px solid #a6a6a6;
  text-align: center;

  /* core centering setup */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Headings */
.footer-section-head,
.quick-links-head {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: center;

}

/* Line below headings */
.head-line {
  border-bottom: 2px solid #a6a6a6;
  width: 200px;
  margin: 10px auto 20px auto;
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.social-links a {
  font-size: 30px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #e3b13c;
}

/* Quick links */
.quick-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 10px;
}

.quick-links a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: #c1761e;
  font-weight: bold;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
  .footer-section-head,
  .quick-links-head {
    font-size: 22px;
  }

  .social-links a {
    font-size: 26px;
  }

  .quick-links {
    flex-direction: column;
    gap: 15px;
  }

  .quick-links a {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px 10px;
  }

  .footer-section-head,
  .quick-links-head {
    font-size: 20px;
  }

  .social-links a {
    font-size: 24px;
  }

  .quick-links a {
    font-size: 16px;
  }
header img {
  height: 170px;
margin-top: 10px;
display: flex;
  justify-content: center;
  align-items: center;

}

}
