* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

/* .navbar {
  width: 100%;
  background: #3b3331;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

Logo
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo .highlight {
  color: #1c0baf;
}

Nav Links
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #22c55e;
}

WhatsApp Button
.whatsapp-btn {
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background: #16a34a;
}

Mobile Responsive
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
} */







/* HERO */
.hero {
  background: linear-gradient(to right, #111, #333);
  color: white;
  padding: 30px 20px;
  text-align: center;
  
  
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 6px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

.card-info button {
  background: #25D366;          /* WhatsApp green */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  width: 50%;
}

/* Hover effect */
.card-info button:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Mobile tap effect */
.card-info button:active {
  transform: scale(0.97);
}

/* SECTIONS */
.section {
  padding: 60px 8%;
}

.section.gray {
  background: #f6f6f6;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

/* text paragraph start */


.content {
  display: block;
    background: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* DESKTOP = 3 */
  gap: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

  .card img {
    height: 180px;
  }


/* CARD */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* square image */
  object-fit: cover;
}

.card-info {
  padding: 20px;
  text-align: center;
}

.card-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card-info a {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #00e676;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-section {
    max-width: 800px;
    margin: 5px auto;
    padding: 20px;
    text-align: center;
}

/* about */

.about-page {
    background: #f4f4f4;
    padding: 60px 20px;
}

.about-container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.about-container h1 {
    margin-bottom: 20px;
    color: #222;
}

.about-container p {
    color: #555;
    line-height: 1.8;
}

.shop-photo img {
    width: 100%;
    max-width: 500px;
    margin: 25px auto;
    border-radius: 8px;
}

.owner-message {
    margin: 30px 0;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.owner-message span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.why-us ul {
    list-style: none;
    padding: 0;
}

.why-us li {
    margin: 8px 0;
    font-weight: 500;
}

.contact-box {
    margin: 30px 0;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}
