/* Basic reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fafafa;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  background-color: #0d1b2a;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .logo {
  font-size: 2rem;
  font-weight: bold;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #e0a800;
}

/* Hero / Banner */
.hero-section {
  /* background: url('images/hero-banner.jpg') center center / cover no-repeat; */
  background-color: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.hero-section h2,
.hero-section p,
.hero-section .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
.hero-section .fade-in {
  animation-delay: 0.5s;
}
.hero-section .fade-in.delay-1 {
  animation-delay: 1s;
}
.hero-section .fade-in.delay-2 {
  animation-delay: 1.5s;
}

/* Intro / Features */
.intro-section {
  padding: 60px 0;
  background-color: #fff;
}
.intro-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.intro-features {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.feature.delay-1 {
  animation-delay: 0.5s;
}
.feature.delay-2 {
  animation-delay: 1s;
}
.feature img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature p {
  color: #555;
}

/* Products */
.products-section {
  padding: 60px 0;
  background-color: #f4f8fd;
}
.products-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.products-section .section-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.product-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.product-card.delay-1 {
  animation-delay: 0.5s;
}
.product-card.delay-2 {
  animation-delay: 1s;
}
.product-card img {
  width: 100%;
  height: auto;
  display: block;
}
.product-card h3 {
  font-size: 1.2rem;
  margin: 15px;
}
.product-card .price {
  margin: 0 15px 10px 15px;
  font-weight: bold;
  color: #0d1b2a;
}
.product-card .btn-sm {
  margin: 0 15px 15px 15px;
  text-align: center;
}

/* Deals / Offers */
.deals-section {
  padding: 60px 0;
  background-color: #fff;
}
.deals-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.deals-section .section-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.deal-cards {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.deal-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.deal-card.delay-1 {
  animation-delay: 0.5s;
}
.deal-card.delay-2 {
  animation-delay: 1s;
}
.deal-card img {
  width: 100%;
  height: auto;
  display: block;
}
.deal-card h3 {
  margin: 15px;
  font-size: 1.3rem;
}
.deal-card p {
  margin: 0 15px 10px 15px;
  color: #555;
}
.deal-card .btn-sm {
  margin: 0 15px 15px 15px;
}

/* Blog section */
.blog-section {
  padding: 60px 0;
  background-color: #f4f8fd;
}
.blog-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.blog-section .section-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.blog-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.blog-post {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.blog-post.delay-1 {
  animation-delay: 0.5s;
}
.blog-post.delay-2 {
  animation-delay: 1s;
}
.blog-post img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-post h3 {
  margin: 15px;
  font-size: 1.25rem;
}
.blog-post p {
  margin: 0 15px 15px 15px;
  color: #555;
}
.blog-post .btn-sm {
  margin: 0 15px 15px 15px;
}

/* Reviews */
.reviews-section {
  padding: 60px 0;
  background-color: #fff;
}
.reviews-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.reviews-section .section-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.review-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.review-card.delay-1 {
  animation-delay: 0.5s;
}
.review-card.delay-2 {
  animation-delay: 1s;
}
.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}
.review-author {
  text-align: right;
  font-weight: bold;
  color: #0d1b2a;
}

/* FAQ section */
.faq-section {
  padding: 60px 0;
  background-color: #f4f8fd;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.faq-section .section-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item h4 {
  font-size: 1.1rem;
  color: #0d1b2a;
}
.faq-item p {
  margin-top: 8px;
  color: #555;
}

/* About section */
.about-section {
  padding: 60px 0;
  background-color: #fff;
}
.about-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.about-section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background-color: #0d1b2a;
  color: #ddd;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}
.site-footer a {
  color: #e0a800;
  margin: 0 5px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section p a {
  color: #0d1b2a;
  font-weight: bold;
  text-decoration: underline;
}