* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background: #2d6a4f;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header .specialization {
  font-size: 1.2rem;
  font-weight: 300;
}

nav {
  background: #40916c;
  padding: 0.5rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 3rem 1rem;
  text-align: center;
}

section h2 {
  color: #1b4332;
  margin-bottom: 1rem;
}

.products {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.products li {
  background: #d8f3dc;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
}

#contact p {
  margin: 0.5rem 0;
}

footer {
  background: #1b4332;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Make navbar slightly taller */
.navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  min-height: 70px; /* ensures a taller bar */
}

/* Style for the brand name */
.navbar-brand {
  font-size: 1.7rem;       /* bigger font */
  font-weight: 700;        /* extra bold */
  color: #fff !important;  /* white text */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 0.5rem;    /* spacing from edge */
}

/* Hover effect for brand */
.navbar-brand:hover {
  color: #f1c40f !important; /* golden yellow hover */
  text-decoration: none;
}

/* Style for the "Shop Online" button */
.navbar .btn-warning {
  background-color: #ffc107;   /* Bootstrap yellow */
  color: #212529;              /* dark text */
  font-weight: bold;
  border-radius: 50px;         /* pill shape */
  padding: 0.6rem 1.4rem;      /* more padding for taller look */
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-left: 1rem;           /* spacing from menu items */
}

/* Hover effect for button */
.navbar .btn-warning:hover {
  background-color: #e0a800;   /* darker yellow */
  color: #fff;                 /* white text */
  transform: scale(1.05);      /* slight zoom */
}
/* Make logo responsive */
.logo {
  max-width: 120px;   /* adjusts size but keeps proportion */
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

/* Keep brand name aligned with logo */
.navbar .brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  vertical-align: middle;
}

/* Ensure logo resizes on smaller screens */
@media (max-width: 768px) {
  .logo {
    max-width: 80px;
  }
  .navbar .brand-name {
    font-size: 1.2rem;
  }
}

