/* Forhindre overlapping mellom hamburger og tilbake-knapp på mobil */
.tilbake-forsiden {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2000;
  background: #fff;
  color: #c12828 !important;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-weight: 600;
  padding: 0.6em 1.2em;
  text-decoration: none;
  border: 1px solid #c12828;
  transition: background 0.2s, color 0.2s;
}
.tilbake-forsiden:hover {
  background: #c12828;
  color: #fff !important;
}
@media (max-width: 700px) {
  .tilbake-forsiden {
    font-size: 1rem;
    padding: 0.5em 1em;
    top: 4.2rem; /* Flytt lenger ned på mobil */
    right: 0.7rem;
  }
}
/* Hamburger og bestill-knapp responsiv stil */
@media (max-width: 700px) {
  .btn.custom-btn.d-md-block {
    display: none !important;
  }
}
.hamburger-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 21;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block !important;
}
.hamburger-btn span {
  display: block;
  width: 40px;
  height: 6px;
  background: #c12828;
  margin: 7px 0;
  border-radius: 3px;
}
.hamburger-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
 .hero-topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 10;
   padding: 1rem 1rem 0 1rem;
   box-sizing: border-box;
 }
 .hero-topbar .logo-image {
   max-width: 120px;
   height: auto;
   display: block;
 }
 .hero-topbar .btn {
   margin-left: 0;
   margin-top: 0;
   vertical-align: middle;
 }
@media (max-width: 700px) {
  .hero-topbar {
    padding: 0.5rem 0.5rem 0 0.5rem;
  }
  .hero-topbar .logo-image {
    max-width: 80px;
  }
  .hero-topbar .btn {
    font-size: 0.95rem;
    padding: 0.4em 0.9em;
  }
}
.hero-headerbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0 0 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) {
  /* Flytt logo over knapper og gjør logo mindre */
  .logo-image {
    display: block;
    margin: 0 auto 0.5rem auto;
    max-width: 120px !important;
    position: static !important;
    z-index: 10000;
  }
  .position-absolute.top-0.start-0.m-3 {
    position: static !important;
    margin: 0 0 0.5rem 0 !important;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .position-absolute.top-0.end-0.m-3.d-flex.gap-2 {
    position: static !important;
    margin: 0 auto 0 auto !important;
    flex-wrap: wrap;
    justify-content: center !important;
    width: 100%;
    gap: 0.5rem !important;
  }
  .position-absolute.top-0.end-0.m-3.d-flex.gap-2 .btn {
    font-size: 0.95rem;
    padding: 0.4em 0.9em;
    min-width: 110px;
    border-width: 2px;
  }
}
/* Slogan section styling */
.slogan-hero {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  z-index: 1001;
}
.slogan-text {
  color: #c12828;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: right;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  margin-bottom: 0;
  background: rgba(255,255,255,0.0);
  padding: 0.2em 0.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}
@media (max-width: 700px) {
  .slogan-hero {
    position: static;
    margin: 1rem 0 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .slogan-text {
    text-align: center;
    font-size: 1.2rem;
    padding: 0.2em 0.5em;
  }
}
/* Fjern glipe/linje mellom hero-sections */
.hero-section {
  margin-bottom: 0 !important;
  border: none !important;
}
/* Felles flex-container for logo og navigasjon i hero */
.hero-headerbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0 0 0;
  margin-bottom: 1.5rem;
}
.hero-headerbar .logo-link {
  min-width: 100px;
  flex-shrink: 0;
}
.hero-headerbar .logo-image {
  max-width: clamp(100px, 22vw, 220px);
  height: auto;
}
.hero-headerbar .hero-nav {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 700px) {
  .hero-headerbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0 0 0;
  }
  .hero-headerbar .hero-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }
}
/* Usynlig boks for logo for å reservere plass */
.logo-container {
  min-width: 120px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}
@media (max-width: 600px) {
  .logo-container {
    min-width: 80px;
    min-height: 40px;
  }
}
/* Responsivt bakgrunnsbilde for hero-section */
/* HERO bakgrunnsbilde: dekker alltid, men tilpass på små skjermer */
.hero-section {
  background-image: url('images/kurv_sogndal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (min-width: 900px) {
  .hero-section {
    background-image: url('images/bedriftevent.jpg');
  }
}

@media (max-width: 700px) {
  .hero-section {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: scroll;
    min-height: 60vw;
    padding-top: 32vw;
  }
}
/* Testimonial-boks til venstre og responsiv nedover */
@media (max-width: 991px) {
  /* Hero-bilde alltid samme posisjon og størrelse uansett skjermbredde */
  .img_hjem.hero-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    margin-left: auto !important;
    margin-right: auto !important;
    max-height: calc(100vh - clamp(70px, 13vw, 120px) - 16px);
  }
}
  
/* Responsiv testimonial-boks */
.testimonial-box-responsive {
  max-width: clamp(220px, 38vw, 450px);
  width: 100%;
}
.testimonial-inner-responsive {
  padding: clamp(10px, 4vw, 20px);
}
@media (max-width: 600px) {
  .testimonial-box-responsive {
    max-width: 98vw;
    right: 0;
    left: 0;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Øygarden Frisbee Header Custom Styles */
.main-header {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1050;
  min-height: clamp(60px, 12vw, 110px);
}
.main-header .logo-image {
  max-width: 180px;
  width: 100%;
  height: auto;
}
.header-nav .btn {
  font-size: clamp(12px, 2.5vw, 16px);
  padding: clamp(8px, 1.5vw, 12px) clamp(10px, 2vw, 16px);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 60px;
  }
  .main-header .logo-image {
    max-width: 130px;
    margin-bottom: 6px;
  }
  .header-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }
}
/*

TemplateMo 585 Barber Shop

https://templatemo.com/tm-585-barber-shop

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #d6a354;
  --secondary-color:              #c12828;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #c12828;
  --custom-btn-bg-hover-color:    #FDBB2D;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Unbounded', cursive;

  --h1-font-size:                 59px;
  --h2-font-size:                 37px;
  --h3-font-size:                 26px;
  --h4-font-size:                 22px;
  --h5-font-size:                 19px;
  --h6-font-size:                 18px;
  --p-font-size:                  16px;
  --btn-font-size:                13px;
  --copyright-font-size:          11px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding: 100px 50px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.section-overlay + .container {
  position: relative;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  CUSTOM BLOCK BACKGROUND OVERLAY               
-----------------------------------------*/
.custom-block-bg-overlay-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.custom-block-bg-overlay-wrap:hover {
  background: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
  transform: scale(1.05);
}

.custom-block-bg-overlay-image {
  border-radius: var(--border-radius-medium);
  display: block;
  margin: auto;
  height: 100%;
  object-fit: cover;
  transform: rotate(8deg);
}

.custom-block-bg-overlay-wrap:hover .team-info {
  bottom: 10px;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sidebar {
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 50px 0 0;
}

.sidebar-sticky {
  height: calc(100vh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  position: relative;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.logo-image {
  width: 154px;
  height: auto;
  margin-bottom: 70px;
}

#sidebarMenu .nav-link {
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

#sidebarMenu .nav-link.active, 
#sidebarMenu .nav-link:hover {
  color: var(--white-color);
}

.navbar-toggler {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 222;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 25px;
  width: 55px;
  height: 55px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  margin: auto;
  width: 25px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 25px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.img_hjem {
  background-image: url('../images/kurv_sogndal.jpg');
  background-position: 85% center;
}
/* Define a class for each page with different background images */
.img_kurv {
  background-image: url('../images/kurv_sogndal.jpg');
}

.img_event {
  background-image: url('../images/bedriftevent.jpg');
}

/* Common styles for all hero sections */

.hero-section {
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 50px;
  padding-bottom: 0;
  min-height: 665px;
  border-bottom: 15px solid var(--primary-color);
}


@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(100vh - 0px);
  }
}

.hero-section::after {
  content: "";
  background: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.65;
}

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

.custom-block {
  border: 10px solid var(--primary-color);
  border-radius: 100%;
  position: absolute;
  z-index: 2;
  bottom: -60px;
  right: -60px;
  padding: 50px 90px 50px 50px;
  width: 360px;
  height: 360px;
}

.custom-block .custom-btn {
  background: var(--primary-color);
}

.custom-block .custom-btn:hover {
  background: var(--secondary-color);
}

.custom-block-image {
  border: 10px solid var(--primary-color);
  border-radius: 100%;
  position: absolute;
  top: -60px;
  right: 20px;
  left: 0;
  width: 120px;
  height: 120px;
  margin: auto;
  object-fit: cover;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section h6 {
  color: var(--secondary-color);
}

.about-section .custom-block-bg-overlay-image {
  width: 100%;
  max-height: 250px;
}

.about-section .custom-block-bg-overlay-wrap {
  position: relative;
}

.team-info {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 10px 40px;
  padding: 10px 17px 10px 20px;
  transition: all 0.3s ease;
}


/*---------------------------------------
  FEATURED               
-----------------------------------------*/
.featured-section {
  background-image: url('../images/barber-customer-giving-high-five.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  text-align: center;
}

.featured-section h2 {
  color: var(--secondary-color);
}

.featured-section p {
  color: var(--white-color);
}

.featured-section strong {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
}


/*---------------------------------------
  SERVICES             
-----------------------------------------*/
.services-thumb {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.services-thumb:hover .services-info {
  border-color: var(--primary-color);
  border-width: 5px;
}

.services-thumb:hover .services-image {
  transform: scale(1.05);
}

.services-image {
  border-radius: var(--border-radius-medium);
  display: block;
  margin: auto;
  transition: all 0.3s;
}

.services-thumb-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  margin-left: auto;
  padding: 5px 10px;
}

.services-info {
  border-radius: var(--border-radius-medium);
  border: 1px solid var(--white-color);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.services-info h4 {
  color: var(--white-color);
}


/*---------------------------------------
  PRICE LIST             
-----------------------------------------*/
.price-list-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.price-list-thumb-wrap {
  padding-right: 50px;
}

.price-list-thumb {
  margin-bottom: 10px;
}

.price-list-thumb:last-child {
  margin-bottom: 0;
}

.price-list-thumb h6 strong {
  color: var(--primary-color);
}

.price-list-thumb-divider {
  background: var(--p-color);
  flex: auto;
  height: 2px;
  margin: auto 15px 0;
}

.price-list-section .custom-block-bg-overlay-wrap {
  padding: 0;
}


/*---------------------------------------
  BOOKING               
-----------------------------------------*/
.booking-section {
  background-image: url('../images/vintage-chair-barbershop.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.booking-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 65px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
  filter: hue-rotate(45deg);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--section-bg-color);
  border-color: transparent;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  position: relative;
  padding: 80px 50px;
  padding-top: 0;
}

.site-footer::after {
  content: "";
  background: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.site-footer strong {
  display: block;
  color: var(--secondary-color);
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin: 0 3px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .hero-section {
    padding: 50px 25px;
  }

  .custom-block {
    display: none;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .booking-form {
    padding: 45px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .services-info h4 {
    font-size: 20px;
  }

  .booking-form {
    padding: 35px;
  }
}

/* Button transparency and hover effect */
.custom-btn-bg-white {
  background-color: rgba(253, 187, 45, 0.5) !important;
  transition: background-color 0.3s ease;
}

.custom-btn-bg-white:hover {
  background-color: rgba(253, 187, 45, 1) !important;
}

