@charset "UTF-8";
/* Glam By Harps - Custom Styles
   Bootstrap handles most layout, this file adds custom branding and fixes.
*/

/* Custom colour variables for consistency */
:root {
  --bs-primary: #D29F51;     /* Matches brand gold */
  --gold: #D29F51;
  --gold-dark: #b8863d;
}

/* Navigation Bar - brand colour */
#mainNav {
  background-color: var(--gold) !important;
}

#mainNav .navbar-brand img {
  height: 1.5rem;
}

/* Slightly larger logo on desktop */
@media (min-width: 992px) {
  #mainNav .navbar-brand img {
    height: 2rem;
  }
}

/* Navigation link styling */
.navbar-nav .nav-link {
  color: white !important;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.0625em;
}

.navbar-nav .nav-link:hover {
  color: #ffc800 !important; /* Classic bootstrap gold for hover */
}

/* Hero Section */
.masthead {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url("../assets/img/mainPage_Background_4.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Dark overlay for text readability */
.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.27);
}

.masthead .container {
  position: relative;
  z-index: 2;
}

.masthead-subheading {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Roboto Slab", serif;
  color: var(--gold);
}

.masthead-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
}

/* Larger text on tablets and up */
@media (min-width: 768px) {
  .masthead-subheading {
    font-size: 2.25rem;
  }
  .masthead-heading {
    font-size: 4.5rem;
  }
}

/* Mobile-specific hero background */
@media (max-width: 767px) {
  .masthead {
    background-image: url("../assets/img/mainPage_Background_mobile.jpg");
    background-position: center top;
    background-size: cover;
    align-items: flex-end;
    padding-bottom: 4rem;
  }
}

/* General section spacing */
.page-section {
  padding: 6rem 0;
}

/* Section headings */
.section-heading {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.section-subheading {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 4rem;
}

/* Service icons - centre images properly */
.fa-stack img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Contact Section */
#contact {
  background-color: #fff;
  background-image: url("../assets/img/hand-drawn-floral-wallpaper.png");
  background-repeat: no-repeat;
  background-size: cover;       /* Ensures floral shows on all screens */
  background-position: center center;
  padding: 80px 20px;
  color: #333;
}

/* Slight background adjustment for tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  #contact {
    background-position: center 30%;
    padding: 60px 15px;
  }
}

/* Ensure floral background shows on mobile - removed the conflicting rule */
@media (max-width: 768px) {
  #contact {
    padding: 50px 15px;         /* Maintain background, adjust padding */
    background-size: cover;      /* Keep floral visible */
  }
}

/* Contact Buttons - fixed layout */
.contact-buttons {
  display: flex;
  flex-direction: column;       /* Stack vertically on mobile */
  align-items: center;
  gap: 1rem;
}

.contact-buttons .btn {
  min-width: 200px;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Switch to horizontal layout on desktop */
@media (min-width: 769px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .contact-buttons .btn {
    min-width: 180px;
  }
}

/* Custom button colours */
.btn-primary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.btn-primary:hover {
  background-color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}

.btn-success {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
}

.btn-success:hover {
  background-color: #1da958 !important;
  border-color: #1da958 !important;
}

/* Social media buttons in footer */
.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 100%;
}

/* Footer styling */
.footer {
  text-align: center;
  font-size: 0.9rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}