/* Base styles */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: linear-gradient(to right, #1A2A6C, #6A1B9A);
  color: #333;
}

h1, h2, h3, h4, h5 {
  font-weight: 300; /* Thin headings */
}

.navbar-brand, .btn, .card-title {
  font-weight: 400; /* Slightly bolder for emphasis */
}
.text-purple {
  color: #6A1B9A;
}

.text-primary {
  color: #1A2A6C !important;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
  color: #1A2A6C;
}

.nav-link {
  color: #1A2A6C;
  font-weight: 500;
}

.nav-link:hover {
  color: #6A1B9A;
}

/* Carousel */
.carousel-caption {
  background-color: rgba(26, 42, 108, 0.6);
  padding: 10px;
  border-radius: 5px;
}

.carousel-caption h5 {
  color: #fff;
  font-size: 1.5rem;
}

.carousel-caption p {
  color: #f0f0f0;
}

/* Section spacing */
.section {
  padding: 60px 0;
}

/* Product Cards */
.card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-title {
  color: #6A1B9A;
  font-size: 1.2rem;
}

.card-text {
  font-size: 0.95rem;
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  background-color: #1A2A6C;
  border: none;
}

.btn-primary:hover {
  background-color: #6A1B9A;
}

.btn-warning {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 1.2rem;
}

/* Enquiry Form */
form input, form textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
}

form input:focus, form textarea:focus {
  border-color: #6A1B9A;
  box-shadow: 0 0 5px rgba(106, 27, 154, 0.5);
}

/* Footer */
footer {
  background-color: #1A2A6C;
  color: #fff;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .carousel-caption {
    font-size: 0.9rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .btn-warning {
    font-size: 1rem;
    padding: 8px 12px;
  }
}
/* Custom purple color */
.text-title {
  color: #bb5df6 !important; /* Deep royal purple */
}

.bg-purple {
  background-color: #6A1B9A !important;
}

h1.text-purple, h2.text-purple {
  font-weight: 600;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* Hidden until scroll */
  z-index: 999;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


