/* BarberShop Template 5 - Layout Styles
   Template-specific only — shared booking CSS lives in combined.css
   Updated 2026-02-19 */

body {
  overflow-x: hidden;
}


/* Override Bootstrap 5 fonts to match production appearance */
body, .container, .container-fluid {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
}

h1, h2, h3, h4, h5, h6, button, input[type=submit], input[type=button] {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: normal !important;
}

/* Simple mobile fix - override Bootstrap's 1140px on small screens */
@media (max-width: 1199.98px) {
  .container {
    max-width: none !important;
  }
}

/* Desktop width only above 1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Remove padding from nav-link elements */
.d-flex .nav-link {
  padding: 0 !important;
}

/* --- Header --- */
header {
  text-align: center;
  background-size: cover;
  color: white;
}
header .container {
  padding-top: 100px;
  padding-bottom: 50px;
}
header img {
  display: block;
  margin: 0 auto 20px;
}
header .intro-text .name {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2em;
}
header .intro-text .skills {
  font-size: 1.25em;
  font-weight: 300;
}
@media (min-width: 768px) {
  header .container {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  header .intro-text .name {
    font-size: 4.75em;
  }
  header .intro-text .skills {
    font-size: 1.75em;
  }
}

div#maincontent {
  outline: none;
}

/* --- Sections --- */
section {
  padding: 10px 0;
}
section h2 {
  display: inline-block;
  padding: 6px 18px;
  font-family: 'Raleway', sans-serif;
  border-width: 2px;
  border-style: solid;
  font-size: 23px;
  margin: 0 0 17px;
}
section .title h2 {
  font-size: 14px;
  color: black;
  border: none;
}
section .paragraph p {
  font-size: 14px;
}

/* --- Staff cards --- */
.barber-text {
  text-align: center;
}
.barber-text .spacer {
  height: 3px;
  background: #dadada;
  width: 44px;
  display: inline-block;
  margin-bottom: 5px;
}
.barber-text .media-heading {
  font-family: 'Raleway', sans-serif;
}
.barber-text ul {
  list-style: none;
  padding: 0;
}
.barber-text ul li {
  font-family: 'Vollkorn', serif;
}
.barber-text ul li:first-child {
  font-style: italic;
}

/* --- Footer --- */
footer {
  color: white;
}

/* --- Buttons --- */
.btn-outline {
  color: white;
  font-size: 20px;
  border: solid 2px white;
  background: transparent;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
  background: white;
  border: solid 2px white;
}

.btn-social {
  display: inline-block;
  height: 50px;
  width: 50px;
  border: 2px solid white;
  border-radius: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 45px;
}

/* --- Navigation Bar Buttons --- */
#mainNav .btn-sm.btn-secondary {
  margin-right: 5px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
#mainNav .btn-sm.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
#mainNav .btn-sm.btn-secondary:last-child {
  margin-right: 0;
}
#mainNav .float-end.btn-sm.btn-secondary {
  margin-right: 0;
}

