* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px #0000001a;
}
.btn-wrapper {
  margin: 40px auto 0;
  max-width: max-content;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 2px 0 20px #0000001a;
}
.sidebar-content {
  padding: 40px 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu {
  list-style: none;
  width: 100%;
  padding: 0 20px;
}
.nav-menu li {
  margin-bottom: 8px;
}
.nav-link {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.nav-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}
.nav-link:hover:before {
  left: 100%;
}
.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, #444, #666);
  color: #fff;
  transform: translate(5px);
  box-shadow: 0 4px 15px #0003;
}
.main-content {
  margin-left: 200px;
  min-height: 100vh;
}
.section {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
.home-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.origin-section {
  background: linear-gradient(135deg, #fff8f0, #f5f5f5);
}
.values-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.community-section {
  background: linear-gradient(135deg, #fff8f0, #f5f5f5);
}
.products-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.contact-section {
  background: linear-gradient(135deg, #fefefe, #f5f5f5);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.home-container {
  text-align: center;
}
.home-logo {
  margin-bottom: 30px;
}
.home-logo img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 10px 30px #0003;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-with-image {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 40px 0;
}
.content-with-image.image-left {
  flex-direction: row;
}
.content-with-image.image-right {
  flex-direction: row-reverse;
}
.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-white {
  color: #fff;
}
.no-decoration {
  text-decoration: none;
}
.image-container {
  flex: 0 0 400px;
}
.image-container-small {
  flex: 0 0 200px;
}
.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-align: center;
}
.big-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 50px;
  text-align: center;
}
.subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #444;
  margin: 30px 0 15px;
  line-height: 1.4;
}
.hero-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}
.casual-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}
.casual-text-center {
  font-size: 1rem;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.7;
  text-align: center;
}
.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px #00000026;
}
.value-item {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.value-item:last-child {
  border-bottom: none;
}
.product-item {
  margin-bottom: 40px;
  padding: 40px;
  background: #fffc;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0000001a;
}
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 50px;
  background: #ffffffe6;
  border-radius: 20px;
  box-shadow: 0 12px 40px #00000026;
}
.form-group {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
  font-size: 16px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #ffffffe6;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #666;
  box-shadow: 0 0 0 3px #6666661a;
  transform: translateY(-2px);
}
.submit-btn {
  background: #e7961b;
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.submit-btn:hover {
  background: #d68917;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 150, 27, 0.3);
}
.footer {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  padding: 50px 0;
  margin-left: 200px;
  text-align: center;
}
.footer p {
  color: #e0e0e0;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .sidebar {
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    position: fixed;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 2px 20px #0000001a;
    z-index: 1;
  }
  .sidebar-content {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    justify-content: center;
  }
  
  .nav-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0;
    align-items: center;
  }
  .nav-menu li {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .nav-link {
    padding: 12px 20px;
    white-space: nowrap;
    font-size: 14px;
  }
  .nav-link:hover,
  .nav-link.active {
    transform: translateY(-2px);
  }
  .main-content {
    margin-left: 0;
    margin-top: 70px;
  }
  .footer {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .container {
    padding: 0 30px;
  }
  .main-title {
    font-size: 2.8rem;
  }
  .big-title {
    font-size: 2.4rem;
  }
  .content-with-image {
    gap: 40px;
  }
  .image-container {
    flex: 0 0 300px;
  }
  .image-container-small {
    flex: 0 0 100px;
  }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .sidebar {
    transform: translate(-100%);
    transition: transform 0.3s ease;
    width: 100vw;
    height: 100vh;
    top: 0;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    overflow-x: visible;
    overflow-y: auto;
  }
  .sidebar.active {
    transform: translate(0);
  }
  .sidebar-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 30px;
    height: 100%;
  }
  .nav-menu {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    align-items: stretch;
  }
  .nav-link {
    padding: 20px 30px;
    font-size: 18px;
    text-align: center;
    border-radius: 15px;
  }
  .nav-link:hover,
  .nav-link.active {
    transform: scale(1.05);
  }
  .main-content {
    margin-left: 0;
    margin-top: 0;
  }
  .section {
    padding: 60px 0;
    /* min-height: auto; */
  }
  .container {
    padding: 0 20px;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .big-title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.4rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .home-logo img {
    width: 80px;
    height: 80px;
  }
  .content-with-image {
    flex-direction: column;
    gap: 30px;
  }
  .content-with-image.image-left,
  .content-with-image.image-right {
    flex-direction: column;
  }
  .image-container {
    flex: none;
    text-align: center;
    width: 75%;
  }
  .image-container-small {
    flex: none;
    text-align: center;
    width: 75%;
  }
  .contact-form {
    padding: 30px 20px;
    margin: 20px auto;
  }
  .footer {
    margin-left: 0;
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }
  .big-title {
    font-size: 1.6rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 15px;
  }
  .contact-form {
    padding: 20px 15px;
  }
}
.footer-link {
  color: #a7a3a3;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-link:active {
  color: #fff;
}

.product-link-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 0;
  padding: 12px 28px;
  background: #e7961b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.product-link-btn:hover {
  background: #c67b12;
  box-shadow: 0 6px 24px rgba(50, 50, 50, 0.18);
}
.product-link-btn2 {
  padding: 18px 40px;
  background: #e7961b;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-decoration: none;
}
.product-link-btn2:hover {
  background: #d68917;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 150, 27, 0.3);
}

@media (max-width: 1024px) {
  .product-link-btn {
    top: 86px;
    right: 16px;
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .product-link-btn {
    top: 22px;
    right: 12px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
