/* ==============================
   Connors Typography
   ============================== */
body {
  font-family: 'Lora', serif; /* Elegant serif for body text */
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6,
.navbar .navbar-brand,
.navbar .nav-link,
.btn,
.hero-section .lead {
  font-family: 'Montserrat', sans-serif; /* Sans-serif for headings & UI */
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==============================
   Navbar Styling
   ============================== */
.navbar {
  background-color: #fff !important;
}

.navbar .navbar-brand {
  color: #9b7f79 !important;
  font-weight: 400;
  letter-spacing: 3px;
}

.navbar .navbar-brand:hover {
  color: #a7a77f !important;
}

/* Pill-style nav links */
.navbar .nav-link {
  color: #9b7f79 !important;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.4rem 0.9rem;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
}

.navbar .nav-link:hover {
  background-color: #a7a77f;
  color: #fff !important;
}

.navbar .nav-link.active {
  background-color: #9b7f79;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Social Icons - hover scale effect instead of pill */
.navbar .social-icons .nav-link {
  padding: 0.4rem 0.9rem;   /* keeps spacing inside nav */
  border-radius: 50px;      /* still rounded for centering */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease; /* smooth scale + color */
  background-color: transparent; /* remove pill background */
}

/* Hover effect: scale up slightly */
.navbar .social-icons .nav-link:hover {
  transform: scale(1.2);
  background-color: transparent; /* ensure no pill background appears */
}

/* Hover image color */
.navbar .social-icons .nav-link img:hover,
.navbar .social-icons .nav-link.active img {
  filter: invert(100%) brightness(100%); /* white on hover */
}
/* ==============================
   Buttons
   ============================== */
.bg-primary {
  background-color: #9b7f79 !important;
}

.btn-primary {
  background-color: #9b7f79;
  border-color: #9b7f79;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #a7a77f;
  border-color: #a7a77f;
}

.btn-light {
  color: #9b7f79;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

/* ==============================
   Hero Section
   ============================== */
.hero-section {
  background: url("../images/band-photo.jpg") center center/cover no-repeat;
  min-height: 80vh;
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* ==============================
   Layout & Sections
   ============================== */
section {
  scroll-margin-top: 80px;
}

section.bg-light {
  background-color: #fafafa;
}

img.rounded.shadow {
  border-radius: 1rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==============================
   About Section
   ============================== */
.about-section {
  font-family: 'Lora', serif;
  color: #333;
}

.about-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ==============================
   Contact Form
   ============================== */
form,
form input,
form textarea,
form select,
form button,
form label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

form input,
form textarea {
  font-size: 1rem;
  color: #333;
}

/* ==============================
   Responsive Styling
   ============================== */

/* Tablet + Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }

  /* Stack social icons vertically in mobile dropdown */
  .navbar .social-icons {
    flex-direction: column;
    margin-top: 1rem;
  }

  .navbar .social-icons .nav-item {
    margin: 0.25rem 0;
  }

  .about-section .col-lg-6:first-child {
    margin-bottom: 2.5rem;
  }

  .about-section img {
    max-width: 90%;
  }
}

@media (max-width: 767.98px) {
  section.py-5 {
    text-align: center;
  }

  section.py-5 p {
    padding: 0 1rem;
  }

  section.py-5 h2 {
    margin-top: 1rem;
  }
}

/* ==============================
   Footer
   ============================== */
footer {
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

/* Add vertical space between nav pills and navbar edges on desktop */
@media (min-width: 992px) {
  .navbar .nav-link {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }

  /* Make social icons match */
  .navbar .social-icons .nav-link {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }
}
/* Space between pills on desktop */
@media (min-width: 992px) {
  .navbar .nav-link {
    margin: 0.3rem 0.5rem; /* vertical | horizontal */
  }

  /* Make social icons match */
  .navbar .social-icons .nav-link {
    margin: 0.3rem 0.5rem;
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Add a shadow or color when you scroll */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Subtle adjustment: center and align social icons better */
.navbar .social-icons .nav-link {
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  background: transparent;
  border-radius: 50%;
}

.navbar .social-icons .nav-link:hover {
  transform: scale(1.15);
}

.navbar .social-icons .nav-link img {
  height: 24px;
  width: 24px;
  transition: filter 0.3s ease;
}

.navbar .social-icons .nav-link:hover img {
  filter: invert(100%) brightness(100%);
}

/* ==============================
   Navbar Social Icon Alignment Fix
   ============================== */
.navbar .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem; /* adds equal spacing between icons */
}

/* On mobile, stack them neatly centered below nav links */
@media (max-width: 991.98px) {
  .navbar .social-icons {
    flex-direction: row; /* keep them in a row */
    justify-content: center; /* center horizontally */
    margin-top: 1rem;
  }

  .navbar .social-icons .nav-item {
    margin: 0; /* remove extra spacing from Bootstrap */
  }

  .navbar .social-icons .nav-link {
    padding: 0; /* remove leftover pill padding */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar .social-icons .nav-link img {
    height: 26px;
    width: 26px;
    display: block;
  }
}/* ==============================
   Navbar Active Link Fix
   ============================== */
.navbar .nav-link {
  display: inline-block; /* restores proper shape for pill background */
  position: relative;
  z-index: 1;
}

.navbar .nav-link.active {
  background-color: #9b7f79 !important; /* your warm brown tone */
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}