
/* Navbar */

.navbar-nav .dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Additioanl navbar css */

.navbar .fa-shopping-bag {
    color: #007bff; /* Bootstrap primary color */
}

.navbar .fa-shopping-bag:hover {
    color: #0056b3;
}

.navbar p.my-0 {
    font-weight: 600;
}

/* Titles */

.titles {
  color: #0056b3;
  /*Relearned below on W3*/
  text-decoration: underline;
}

/* Background */

.grey-background {
  background-color: #d3d3d3;
}

.card-bg {
  background-color: #e8e9eb;
}

/* Services */

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-weight: 600;
  color: #222;
}

.card-text {
  color: #555;
}


/* Footer Styling - Created by CHAT GPT */
.footer {
  background: #111;
  color: #ccc;
  font-size: 0.9rem;
}

.footer .footer-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.footer .footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer .footer-link:hover {
  color: #fff;
}

.footer .social-links {
  display: flex;
  gap: 12px;
}

.footer .footer-social {
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.3s ease-in-out;
}

.footer .footer-social:hover {
  color: #fff;
}

/* Additional Footer CSS made with CHAT GPT */

.footer {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer p {
  margin-bottom: 0.5rem;
}

.iframe {
  width: 100%;
}

/* General Improvements */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  color: #e3e3e3;
}

.navbar {
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

ul li {
  margin-bottom: 0.5rem;
}


/* Back to top button by Chat GPT */

#backToTopBtn {
  opacity: 0;            /* Invisible by default */
  visibility: hidden;    /* Not clickable when hidden */
  position: fixed;       /* Always on screen */
  bottom: 20px;          /* Distance from bottom */
  right: 20px;           /* Distance from right */
  z-index: 9999;         /* Stays above everything */
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;    /* Circle button */
  padding: 12px 16px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  background-color: #0056b3;
}


/* Media Queries - Used in previous Boutique Ado project with code institute */

/* Slightly larger container on xl screens */
@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

/* fixed top navbar only on medium and up */
@media (min-width: 992px) {
    .fixed-top-desktop-only {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .header-container {
        padding-top: 164px;
    }
}