/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Removed font-family here */
}

/* Body */
body {
  font-family: 'Noto Sans Myanmar', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  color: #fff;
  padding: 15px 30px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.logo img {
  width: 80px;   /* make it bigger (try 60, 80, 100px until it looks right) */
  height: auto;  /* keeps proportions correct */
  margin-right: 10px;
}

/* Remove this block if not using spans inside #brand-text */

#brand-text span {
  display: inline-block;         /* preserve spacing and allow transforms */
  opacity: 0;                    /* start hidden */
  transform: translateY(8px);    /* start offset */
  animation: fadeUp 0.5s forwards;
  animation-timing-function: ease-out;
}

#brand-text {
  font-family: 'Noto Sans Myanmar', sans-serif;
  font-size: 22px; /* adjust */
  font-weight: bold;
  color: white;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-bar {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.search-bar input {
  width: 60%;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.search-bar button {
  padding: 10px 20px;
  border: none;
  background: #febd69;
  color: #232f3e;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-bar button:hover {
  background: #f90;
}

.cart {
  font-size: 18px;
  cursor: pointer;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  background: #37475a;
  padding: 10px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #febd69, #f90);
  color: #232f3e;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 25px;
  border: none;
  background: #232f3e;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
  background: #000;
}

/* Product Grid */
.products {
  padding: 40px 20px;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  max-width: 100%;
  border-radius: 5px;
}

.product h3 {
  margin: 15px 0 10px;
}

.product p {
  color: #e67e22;
  font-weight: bold;
  margin-bottom: 15px;
}

.product button {
  padding: 10px 20px;
  border: none;
  background: #232f3e;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.product button:hover {
  background: #000;
}

/* Footer */
.footer {
  background: #232f3e;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.footer p {
  margin: 5px 0;
  font-size: 14px;
}

.footer a {
  color: #febd69;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 50px; /* space between the two cards */
  margin-top: 15px;
  flex-wrap: wrap; /* makes it mobile-friendly */
}

.contact-card {
  text-align: left;
}

.contact-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #febd69;
}

.contact-card p {
  margin: 3px 0;
  font-size: 14px;
}

.contact-card a {
  color: #febd69;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}
