/* ====== General Styles ====== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f5f5f5;
}

/* ====== Header ====== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #6b4c3b;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 250px;
  height: auto;
  display: block;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff6600;
}

/* Active page link highlight */
nav ul li a.active {
  color: #ff6600;
  font-weight: bold;
  border-bottom: 2px solid #ff6600;
}

/* ====== Hero Section ====== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 50px;
  background-color: #eaeaea;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-text .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}


/* ====== Gallery ====== */
.gallery {
  padding: 60px 50px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 40%;
  height: auto;
  border-radius: 5px;
}

/* ====== Shop ====== */
.shop {
  padding: 80px 50px;
  text-align: center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.shop-grid .product {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.shop-grid .product img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.shop-grid .product h3 {
  margin: 10px 0;
}

.shop-grid .product p {
  font-weight: bold;
}

.shop-grid .product button {
  padding: 8px 15px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* ====== About ====== */
.about {
  padding: 80px 50px;
  text-align: center;
}

/* ====== Contact ====== */
.contact {
  padding: 80px 50px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

.contact form input,
.contact form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.contact form button {
  padding: 10px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* ====== Footer ====== */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ====== Smooth Page Transition ====== */
body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.fade-in {
  opacity: 1;
}