

html {
    scroll-behavior: smooth;
}

body {
		background-color: #F0EFED;
   font-family: Arial, sans-serif;
   margin: 0;
  transition: background 0.4s, color 0.4s;
    color: black;
}
.container {
  width: 90%; 
    max-width: 1200px; 
    margin: auto;
}

.logo, .item img {
    max-width: 100%;
  height: auto;
    display: block;
   margin: 0 auto;
}

body.dark {
    background: #1e1e1e;
  color: white;
}
body.dark header,
body.dark nav,
body.dark footer {
   background: #111;
}
body.dark .box,
body.dark .item,
body.dark .review-box {
    background: #333;
   color: white;
}


header {
    background-color: #6E4334;
  padding: 20px;
		text-align: center;
    color: white;
}

nav {
    background-color: #51210D;   padding: 10px; text-align: center;
}

nav a {
    color: white;
		margin: 0 15px;
    text-decoration: none;
		font-weight: bold;
}
.container, .container * {
    text-align: center;
}
.box, .review-box, .hero-content, .blogs, .blog-post {
    text-align: center;
}

.container {
    width: 90%;
		margin: auto;
    padding-bottom: 30px;
}

.box {
		background-color: #B07F63;
   color: white;
    padding: 20px;
   margin: 15px 0;
    border-radius: 8px;
    opacity: 0;
  transform: translateY(30px);
    transition: 0.8s ease;
}

.box.show {
   opacity: 1;
    transform: translateY(0);
}


.review-box {
   background-color: #B59988;
   padding: 15px;
  margin-top: 20px;
		border-radius: 8px;
   border: 1px solid #6E4334;
  opacity: 0;
   transform: translateY(30px);
   transition: 0.8s ease;
}

.review-box.show {
   opacity: 1;
   transform: translateY(0);
}

.item {
   background:#B07F63;
   color:white;
   padding:20px;
   margin:20px 0;
		border-radius:8px;
    text-align:center;
 transition: transform .3s, box-shadow .3s, opacity .8s ease;
   opacity: 0;
    transform: translateY(30px);
}
.item.show {
    opacity: 1;
   transform: translateY(0);
}
.item:hover {
   transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.item img {
    width:300px;
   max-width:90%;
    border-radius:10px;
}
button {
    background:#6E4334;
   color:white;
   padding:10px 15px;
   border:none;
   border-radius:5px;
   cursor:pointer;
    margin-top:10px;
    transition: transform .2s;
}
button:hover {
 transform: scale(1.1);
}
.hero {
  background: #B07F63 ;
   color: white;
   text-align: center;
  padding: 80px 20px;
    border-radius: 10px;
  margin: 20px 0;
}
.cta-button {
  display: inline-block;
   margin-top: 20px;
   background: #6E4334;
   color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
   font-weight: bold;
}
.cta-button:hover {
   background: #51210D;
}

input, textarea, select {
    width:100%;
   padding:10px;
   margin:8px 0;
   border-radius:5px;
    border:1px solid #ccc;
}
.notification {
  display:none;
   background:#B59988;
    color:white;
   padding:15px;
   margin-top:10px;
    border-radius:8px;
   text-align:center;
}
.char-count {
    text-align:right;
   font-size:14px;
   color:#333;
}
#toast {
   position: fixed;
    bottom: 25px;
   right: 25px;
   background: #333;
    color: white;
   padding: 15px 20px;  border-radius: 8px;
   opacity: 0;
    pointer-events: none;
  transition: opacity .4s, transform .4s;
    transform: translateY(20px);
   z-index: 999;
}
#toast.show {
    opacity: 1;   pointer-events: all;  transform: translateY(0);
}
footer {
    background-color: #51210D;  color: white; text-align: center; padding: 20px;
}
.hover-box {
   background: #B59988;
   padding: 20px;
    border-radius: 8px;
  transition: background 0.3s;
}
.hover-box:hover {
  background: #6E4334;
}
.main-nav {
    display: flex;
  justify-content: space-between;
   background-color: #51210D;
   padding: 10px 20px;
}
.main-nav .nav-group a {
  color: white;
   margin: 0 10px;
    text-decoration: none;
   font-weight: bold;
}
.main-nav .nav-group a:hover {
    text-decoration: underline;
}
.main-nav {
    display: flex;
    justify-content: space-between;
   flex-wrap: wrap; 
    padding: 10px 20px;
}

.main-nav .nav-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px 0;
}
@media (max-width: 1024px) {
    .hero {
   padding: 60px 15px;
    }
  .cta-button {
   padding: 10px 20px;
    }
 button {
       padding: 8px 12px;
    }
    .box, .review-box, .item {
  padding: 15px;
    }
}


@media (max-width: 768px) {
   .main-nav {
       flex-direction: column;
        align-items: center;
    }
  .hero {
        padding: 50px 10px;
    }
    .item img {
      width: 80%;
    }
}


@media (max-width: 480px) {
  header h1 {
      font-size: 18px;
   }
   .hero h2 {
      font-size: 20px;
   }
   .box, .review-box, .item {
     padding: 12px;
       font-size: 14px;
  }
   .item img {
      width: 100%;
  }
    button, .cta-button {
       width: 100%;
        font-size: 14px;
   padding: 10px; }
}