.main{
  color: gold;
  background-color: #000;
  scroll-behavior: smooth;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;            
  justify-content: flex-start;    
  background: linear-gradient(to right, #000 65%, #4e3939 100%);
  font-weight: bold;              
  padding: 10px 140px 0 140px;    
  border-top: 2px solid gold;      
  color: gold;
  margin: 0;                      
}

.breadcrumb-item {
  color: gold;
  font-size: 16px;
  text-decoration: none;
}

.breadcrumb-item:hover {
  color: white;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: gold;
}

.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.hero-images {
  display: flex;
  height: 100%;
}

.hero-images img {
  width: 25%;
  object-fit: cover;
  height: 100%;
  filter: brightness(60%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: bold;
  color: #c2b5b5;
}

.services {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  background-color: #000;
  color: #f5f5f5;
  scroll-margin-top: 120px;
}

.category-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  background-color: gold;
  color: #fff2d6;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  height: 100px;
}

.service-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding: 15px 0;
}

.service-name {
  flex: 2;
  font-size: 18px;
  color: #dddddd;
}

.service-duration,
.service-price {
  flex: 0 0 120px;
  text-align: right;
  color: #ccc;
  font-size: 16px;
  margin-right: 50px;
  white-space: nowrap;
}

.reserve-button {
  flex: 0 0 130px;
  text-decoration: none;
  text-align: center;
  background-color: #4e3939;
  color: gold;
  border: none;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reserve-button:hover {
  background-color: gold;
  color: #000;
}

.body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #121212, #2c1f1f);
  font-family: 'Arial', sans-serif;
  color: #eaeaea;
  line-height: 1.7;
  padding-top: 120px;
}

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background-color: #1a1a1a;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.container li{
  color:gold;
}

h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 25px;
  margin-top: 30px;
  text-decoration:underline;
}

#h1 {
  font-size: 25px;
  color: white;
  text-decoration: underline;
}

p {
  font-size: 15px;
  margin-bottom: 18px;
}


em {
  font-style: italic;
}

a {
  color: #D4AF37;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.services {
  padding: 20px;
  color: white;
}

.category-title {
  background-color: gold;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.service-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
  padding: 15px 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.service-name,
.service-duration,
.service-price {
  font-size: 16px;
  color: white;
  flex: 1;
  min-width: 100px;
}

.reserve-button {
  background-color: #4e3939;
  color: gold;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.reserve-button:hover {
  background-color: gold;
  color: black;
}


@media screen and (max-width: 768px) {
  .service-entry {
    padding: 16px 12px;
    border-bottom: 1px solid #444;
  }

  .service-entry > .service-name,
  .service-entry > .service-duration {
    display: inline-block;
    width: 48%;
    font-size: 14px;
    color: white;
    vertical-align: top;
  }

  .service-name {
    text-align: left;
    word-break: break-word;
  }

  .service-duration {
    text-align: right;
    white-space: nowrap;
  }

  .service-price,
  .reserve-button {
    display: inline-block;
    width: 48%;
    font-size: 14px;
    vertical-align: middle;
  }

  .service-price {
    color: white;
    text-align: left;
    margin-top: 8px;
  }

  .reserve-button {
    text-align: center;
    margin-top: 8px;
    background-color: #4e3939;
    color: gold;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none; 
  }

  .reserve-button:hover {
    background-color: gold;
    color: #1e1e1e;
  }
}






