
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #46485d;
  color: white;
  font-family: "Roboto Mono", monospace;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(70, 72, 93, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#header_dreaming {
  font-family: "Pacifico", cursive;
  font-size: 28px;
  font-weight: 400;
}

#header_menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu {
  color: #efffff;
  position: relative;
  transition: 0.3s;
}

.menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: 0.3s;
}

.menu:hover::after,
.menu.active::after {
  width: 100%;
}

#login {
  background-color: #7e759f;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.bgimg {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 21, 35, 0.8), rgba(20, 21, 35, 0.35));
}

.hero-content {
  position: absolute;
  left: 7%;
  max-width: 650px;
  z-index: 2;
}

.small-copy {
  color: #cfc9f3;
  margin-bottom: 14px;
}

.hero-content h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-text {
  color: #f1f1f1;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.detail-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 14px;
}

.primary-btn,
.detail-btn {
  background: linear-gradient(to right, #5772ff, #7e759f);
  color: white;
}

.primary-btn:hover,
.detail-btn:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.secondary-btn {
  border: 1px solid white;
  color: white;
  background: transparent;
}

.secondary-btn:hover {
  background-color: white;
  color: #333;
}

.section {
  padding: 90px 7%;
}

.section-title-box {
  text-align: center;
  margin-bottom: 24px;
}

.section-mini {
  color: #bdb4db;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 34px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e9e9e9;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.product-card {
  background-color: #53567b;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.feature-card:hover,
.product-card:hover {
  transform: translateY(-6px);
}

.feature-card h4 {
  margin-bottom: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.our_products {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
}

.product-body h4 {
  margin-bottom: 8px;
}

.product-body p {
  margin-bottom: 16px;
  color: #e5e5e5;
}

.banner-section {
  position: relative;
  padding: 0;
}

.banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  left: 7%;
  bottom: 15%;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: bold;
  max-width: 500px;
}

.contact-section {
  text-align: center;
}

.contact-copy {
  margin-bottom: 30px;
}

.contact-link {
  margin-top: 10px;
}

#footer {
  background-color: #53567b;
  text-align: center;
  padding: 40px 20px;
}

#footer_dreaming {
  font-family: "Pacifico", cursive;
  margin-bottom: 12px;
}

#para2 {
  max-width: 700px;
  margin: 0 auto 16px;
  color: #e6e6e6;
}

.footer-note {
  color: #cfcfcf;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hidden {
  display: none;
}

.modal-box {
  width: 100%;
  max-width: 420px;
  background-color: #53567b;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

#close-modal {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

#modal-name {
  margin-bottom: 10px;
}

#modal-price {
  margin-bottom: 12px;
  color: #d6d1ef;
}

@media (max-width: 900px) {
  .feature-cards,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 90%;
  }
}

@media (max-width: 700px) {
  #menu-toggle {
    display: block;
  }

  #header_menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 5%;
    background-color: #53567b;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    width: 200px;
  }

  #header_menu.show {
    display: flex;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .banner-img {
    height: 280px;
  }
}


