/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff; /* white background */
  color: #003366;   /* dark blue text */
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  height: 80px;
  width: auto;
}

.logo-text {
    text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: #003366;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
}

/* Navigation Links */
.nav ul {
  display: flex;
  list-style: none;
}

.nav a {
  color: #003366;
  text-decoration: none;
  padding: 10px 15px;
  font-weight: 600;
  transition: color 0.3s, background 0.3s;
}

.nav a:hover {
  color: #0055aa;
  background: rgba(0, 85, 170, 0.1);
  border-radius: 5px;
}
.nav a.active {
  color: white;
  border-bottom: 2px solid #0055aa;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 28px;
  color: #003366;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('/graphics/bg2.JPG') 
              center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero.about-hero{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('/graphics/aboutus.jpg') 
              center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero.contact-hero{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('/graphics/contactus.jpg') 
              center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero.productsandservices-hero{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('/graphics/shoplocal.jpg') 
              center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background: #ffb400;
  color: #222;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #ffc733;
}

/* Main Content */
.main-content {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
}

/* Products Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 25px;
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .nav ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 2em;
  }
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* About Page Hero */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1616627981372-14e6a50cc230?auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.about-text h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222;
}

.about-text p {
  margin-bottom: 15px;
}

.about-text ul {
  margin-left: 20px;
  list-style-type: disc;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive About Layout */
@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    margin-bottom: 20px;
  }
}


/* Contact Page Hero */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1605902711622-cfb43c4437b5?auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 20px;
}

.contact-info ul {
  list-style: none;
  margin-top: 15px;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.contact-form button {
  align-self: flex-start;
}

/* Active nav link */
.nav a.active {
  background: #444;
  border-radius: 5px;
}

/* Responsive Contact Layout */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}


