body {
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif;
}

/* Logo size */
.navbar-logo {
  width: 120px;
  height: auto;
}

/* Brand Name - bigger */
.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 700;
  color: #f5c542;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Menu Items - 60% size of logo */
.nav-link {
  font-size: 20px;
  padding: 8px 12px;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f5c542; /* Gold hover effect */
}

/* Pink Contact Button */ 
.contact-btn {
  background-color: #f5c542;
  color: #fff !important;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #ffff;
  color: #f5c542;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('IMG-20250520-WA0013.jpg') no-repeat center center/cover;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

/* Carousel Captions */
.carousel-caption h5, .carousel-caption p {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Section Spacing */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5b;
  color: #fff;
}

/* Footer Styles */
footer {
  background-color: #000;
  color: #fff;
  padding: 40px 60px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-left img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ccc;
}

.bottom-footer {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom-footer a {
  color: #aaa;
  text-decoration: none;
  margin-left: 15px;
}

.bottom-footer a:hover {
  color: #fff;
}

/* ===================== */
/* RESPONSIVENESS ADDED */
/* ===================== */

/* Tablets and below */
@media (max-width: 992px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  iframe {
    width: 100% !important;
    height: 350px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  /* Hero text scaling */
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }

  /* Navbar adjustments (Bootstrap collapse handles menu) */
  nav .navbar-collapse {
    text-align: center;
  }

  /* Footer layout stacking */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .bottom-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section p {
    font-size: 0.9rem;
  }
  .carousel-inner img {
    height: 200px;
    object-fit: cover;
  }
}
/* Make all carousel items uniform size and responsive */
.carousel-item {
  height: 500px; /* Fixed height for desktop */
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers area without distortion */
  border-radius: 8px; /* Optional: rounded corners */
}

/* Responsive adjustments for tablets and phones */
@media (max-width: 992px) {
  .carousel-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 200px;
  }
}
.text-gold {
  color: #f5c542 !important;
}
.btn-gold {
  background-color: #f5c542;
  color: #fff;  /* Text color */
  border: none;
}

.btn-gold:hover {
  background-color: #fff; /* Darker gold on hover */
  color: #d4a017;
}
.btn-outline-gold {
  color: #f5c542;
  border: 2px solid #f5c542;
  background-color: transparent;
}

.btn-outline-gold:hover {
  background-color: #f5c542;
  color: #fff;  /* Text becomes black when filled */
}
