@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('../assets/premium_photo.png') center/cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

:root {
  --blue: #06326b;
  --blue-light: #0d47a1;
  --white: #fff;
  --dark: #111;
  --accent: #fbc02d;
}

/* -----Header----- */
.site-header {
  background: var(--blue);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand a {
  color: white;
  text-decoration: none;
}

.brand-company {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: #eaf4ff;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
  position: relative;
}

.nav-list a::after {
  content: "";
  width: 0;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.25s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

@media (max-width: 900px) {

  .mobile-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--blue);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    display: none;
    width: 200px;
  }

  .nav-list.nav-open {
    display: flex;
  }
}

/* -----Product----- */
.products-section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  color: #06326b;
  margin-bottom: 50px;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.product-card {
  background: aliceblue;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 90%;
  height: auto;
  margin-bottom: 18px;
  border-radius: 12px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #06326b;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

@media(max-width: 480px) {
  .brand-company {
    font-size: 13.2px;
    font-weight: 700;
    line-height: 0.1;
  }

}