/* General styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: none;
}

header .header-title h1 {
  margin: 0;
  font-size: 22px;
  color: white;
}

header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

header nav a:hover {
  color: #4CAF50;
  text-decoration: underline;
}

/* Welcome Banner */
.welcome-banner {
  background: url("images/jagadeep-rishi-welcome.jpg") no-repeat center center;
  background-size: cover;
  height: 650px;
  display: flex;
  align-items: top;
  justify-content: flex-start;
  padding: 0 50px;
  position: relative;
  color: white;
}

.welcome-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 0;
}

.welcome-banner .welcome-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.welcome-banner .welcome-logo {
  height: 100px;
  width: auto;
}

.welcome-banner h1 {
  font-size: 28px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin: 0;
}

/* Hero section */
.hero {
  background: url("images/sun-light.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Plants section */
.plants {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.plant-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.plant-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.plant-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.plant-card h3 {
  margin: 10px 0 5px 0;
}

.plant-card p {
  font-size: 14px;
  color: #555;
}

/* About section */
.about {
  padding: 50px 20px;
  background: url("images/nursery-about.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.about p {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Contact Info */
.contact {
  position: relative;
  background: url("images/nursery-contact.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 50px 20px;
  text-align: center; /* center all content */
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   /* semi-transparent dark overlay */
  z-index: 0;
}

.contact h2,
.contact-info,
.contact-info a,
.contact-info p {
  position: relative;
  z-index: 1; /* make text appear above overlay */
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  color: #0704b8; /* WhatsApp green on hover */
  text-decoration: underline;
}

.phone-contact {
  display: flex;
  align-items: center;
  justify-content: center; /* Center WhatsApp phone */
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #25D366;
  text-decoration: none;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.whatsapp-icon {
  flex-shrink: 0;
}

.map-container {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;  /* responsive max width */
  height: 400px;     /* map height */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* Footer */ 
footer {
  background-color: white;
  color: black;
  padding: 20px;
  text-align: center; /* Center the text */
}

footer p {
  margin: 0;
  font-size: 14px;
  color: black;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: black; /* text color */
  font-size: 14px;
  transition: transform 0.2s;
}

.social-item:hover {
  transform: translateY(-3px);
  text-decoration: underline;
}

.social-item span {
  margin-top: 5px;
  color: black;
}
