/* Custom Properties */
:root {
  --primary-brown: #794d00;
  --light-brown: #795548;
  --accent-brown: #8d6e63;
  --text-color: #333;
  --light-text: #f5f5f5;
  --background-color: #fff8e1;
  --transition-speed: 0.5s;
}

/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:  "Segoe UI",  Arial, sans-serif;
  scroll-behavior: smooth;
}

mark {
  background-color: #ffeeba;
  color: #856404;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary-brown);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--accent-brown);
}

h1, h2, h3 {
  color: var(--primary-brown);
  margin-bottom: 0.5em;
  padding-top: 1.5rem;
}

main, article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.8rem;
}

/* Header */
header {
  background: var(--light-brown);
  color: var(--light-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header > main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.5rem;
  width: 100%;
}

.logo img {
  height: 60px;
  border-radius: 50%;
}

header nav ul {
  list-style: none;
  display: flex;
  padding: 10px;
}

header nav li a {
  color: var(--light-text);
  padding: 0.5rem 1rem;
  display: block;
  transition: background-color var(--transition-speed);
  border-radius: 5px;
}

header nav li a:hover {
  background-color: #ffda9a;
}

/* Hero Section */
header section {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner11.jpg') center/cover no-repeat;
  position: relative;
}

.div1 {
  text-align: center;
  max-width: 600px;
  color: white;
  z-index: 2;
  /* Initial state for slide-up animation */
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s ease-out, opacity 3s ease-out;
}

.div1.slide-up {
  transform: translateY(0);
  opacity: 1;
}

.div1 h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
  color: #fff7b3;
}

.div1 p {
  font-size: 1.25rem;
}

.div1 a {
  background-color: #fff7b3;
  color: var(--primary-brown);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color var(--transition-speed);
}

.div1 a:hover {
  background-color: var(--light-text);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



/* Footer */
footer {
  background-color: var(--light-brown);
  color: var(--light-text);
  padding: 2rem;
  text-align: center;
  margin-bottom: 60px;
}

footer > div {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

footer ul {
  list-style: none;
  max-width: 300px;
  text-align: left;
}

footer ul h1 {
  color: #fff7b3;
  margin-bottom: 1rem;
}

footer .social li {
  display: inline-block;
  margin-right: 1rem;
}

footer .social img {
  width: 40px;
  height: 40px;
  transition: transform var(--transition-speed);
}

footer .social img:hover {
  transform: scale(1.1);
}

/* Responsive & Mobile Nav */
.mob {
  display: none;
}

.menu, .cancel {
  width: 30px;
  cursor: pointer;
}


@media (max-width: 899px) {
  .desk {
    display: none;
  }

  .mob {
    display: block;
    position: relative;
  }

  .mob ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 1500px;
    background-color: var(--primary-brown);
    flex-direction: column;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out;
    z-index: 100;
  }

  .mob ul.active {
    right: 0;
  }

  .mob li a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  .cancel {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-style: normal;
    color: var(--light-text);
    font-size: 2rem;
  }

  header > main {
    padding: 1rem;
  }

  .div1 h1 {
    font-size: 2.5rem;
  }

  .div1 p {
    font-size: 1rem;
  }

  .products > div {
    margin-bottom: 1rem;
  }

  footer > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer ul {
    text-align: center;
  }
}

/* Animations (Helper Classes) */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 480px) {
  .bottom-nav {
    padding: 6px 0;
  }
  .nav-item {
    padding: 3px 4px;
  font-size: 10px;
  }
  .nav-icon {
    font-size: 20px;
  }
}














.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--light-brown);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  z-index: 100;
  border-radius: 25px 25px 0 0;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.nav-text {
  font-size: 12px;
  font-weight: 500;
}

