/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f2f2f2;
  color: #444;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 1rem;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

nav li {
  margin: 0 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

nav li a {
  color: #555;
  text-decoration: none;
}

nav li a:hover {
  color: #111;
}

/* Hero Section with Slideshow */
#hero {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000; /* fallback background */
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slideshow .slide {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;   /* 👈 full image visible */
  object-position: center;
  background: #000;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

/* Gallery */
#gallery {
  text-align: center;
  margin-top: 40px;
}

#gallery h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #444;
  font-family: 'Georgia', serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Reviews */
#reviews {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 60px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#reviews h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #222;
}

/* Contact */
#contact {
  background: #eee;
  padding: 50px 20px 60px;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#contact h2 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-family: 'Georgia', serif;
  color: #222;
}

.contact-info {
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
  color: #444;
}

.contact-info p,
.contact-info a {
  margin-bottom: 12px;
  display: block;
  color: #444;
}

.contact-info a:hover {
  color: #111;
  text-decoration: underline;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  margin: 0 15px;
  font-size: 1.6rem;
  color: #666;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #000;
}

/* Review Button */
.review-button {
  display: inline-block;
  margin-top: 30px;
  background: #007BFF;
  color: white !important;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  text-decoration: none;
  transition: background 0.3s ease;
}

.review-button:hover {
  background: #0056b3;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float i {
  line-height: 60px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
