:root {
  --charcoal: #333;
  --grey: #777;
  --white: #fff;
  --gold: #d4af37;
  --red: #b30000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background: #fafafa;
}

.topbar {
  background: var(--charcoal);
  text-align: right;
  padding: 10px 20px;
}

.topbar .social a {
  color: var(--gold);
  margin-left: 10px;
  font-size: 18px;
  text-decoration: none;
}

.navbar {
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  font-weight: bold;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li a {
  color: var(--charcoal);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 250;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Fix hero image size */
.slides img {
  width: 100%;
  height: 60vh !important; /* Reduce image height */
  object-fit: cover;       /* Keeps images looking nice */
  display: block;
}

.hero {
  height: 45vh !important; /* Match the same height */
  overflow: hidden;
}


section {
  padding: 40px 20px;
  text-align: center;
}

h2, h3 {
  color: var(--charcoal);
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--white);
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }

  .slider img {
    height: 150px;
  }
}
.contact-section {
  text-align: center;
  padding: 50px 20px;
  background: #f8f8f8;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 40px;
}

.contact-form {
  flex: 1 1 350px;
  max-width: 450px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--grey);
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  background: var(--red);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.contact-info {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--charcoal);
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.social-icons a {
  color: var(--gold);
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--red);
}

/* Mobile view */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}
/* WhatsApp Chatbot Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}
/* ===== FOOTER STYLING ===== */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 50px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 30px;
}

.footer-container div {
  flex: 1 1 250px;
}

.footer-about h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.footer-about p {
  line-height: 1.6;
  color: #ddd;
}

.footer-contact h4,
.footer-social h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 8px;
  color: #ddd;
}

.footer-contact i {
  color: var(--gold);
  margin-right: 8px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: var(--gold);
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--red);
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
  background: #222;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-links a {
    margin: 0 8px;
  }
}

/* === WhatsApp Chatbot Popup === *//* WhatsApp Chatbox Styling */
.chatbox {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 260px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  overflow: hidden;
  display: none; /* hidden by default */
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  z-index: 1000;
}

.chatbox.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.chatbox-header {
  background: #25D366;
  color: #fff;
  padding: 10px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbox-body {
  padding: 15px;
  color: #333;
  text-align: center;
}

.chatbox-body p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.chat-btn {
  background: #25D366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.chat-btn:hover {
  background: #1ebe5d;
}

#close-chat {
  cursor: pointer;
  font-size: 20px;
}

/* === Animated Shapes === */
section {
  position: relative;
  overflow: hidden; /* Keep shapes inside section */
}

.animated-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s infinite ease-in-out alternate;
  animation-fill-mode: both; /* ensures visibility online */
}

.shape1 {
  width: 80px;
  height: 80px;
  background: var(--red);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: var(--gold);
  bottom: 10%;
  right: 15%;
  animation-delay: 2s;
}

.shape3 {
  width: 60px;
  height: 60px;
  background: var(--charcoal);
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(45deg); }
}
