/* ============================
   BASE BODY FONT
=============================== */
body {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: #FFF7F7;
  -webkit-font-smoothing: antialiased;
}

/* ============================
   NAVBAR / HEADER
=============================== */
.pc-navbar-wrap {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.pc-navbar-wrap .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop Menu */
.pc-sidemeny-block .navbar-nav {
  display: flex !important;   /* horizontal */
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-sidemeny-block .navbar-nav li {
  display: inline-block;
}

.pc-sidemeny-block .navbar-nav a {
  padding: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.pc-sidemeny-block .navbar-nav a:hover,
.pc-sidemeny-block .navbar-nav .current-menu-item > a {
  color: #f5b8b7;
  border-bottom: 2px solid #f5b8b7;
}

/* Mobile Only */
@media (max-width: 991px) {
  .pc-sidemeny-block.d-lg-block {
    display: none !important; /* hide desktop menu */
  }

  .pc-navbar-toggler {
    display: block !important;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .pc-navbar-toggler .toggle-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Sidebar initially hidden */
  .pc-sidenav {
    align-items: left;
    position: fixed;
    right: -300px; /* hidden offscreen */
    top: 0;
    height: 100%;
    width: 260px;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    padding: 40px 20px;
    transition: right 0.4s ease;
    z-index: 9999;
  }
  .pc-sidenav.open {
    right: 0; /* slides in */
  }

  .pc-closebtn {
    display: block;
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    color: #333;
  }

  .pc-sidenav .navbar-nav {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .pc-sidenav .navbar-nav li {
    margin-bottom: 15px;
  }

  .pc-sidenav .navbar-nav a {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px;
  }

  .pc-sidenav .navbar-nav a:hover {
    background: #f5b8b7;
    color: #fff;
  }
}

/* ============================
   HEADER BANNER / INNER HEADER
=============================== */
.pc-innerheader {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pc-innerheader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.pc-innertitle {
  position: relative;
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-bottom: 3px solid #f5b8b7;
  z-index: 1;
}

/* ============================
   SECTIONS
=============================== */
.pc-block {
  padding: 60px 0;
}

.pc-areblock {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.pc-imgouter {
  text-align: center;
  margin-bottom: 20px;
}
.pc-img img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.pc-img img:hover {
  transform: scale(1.05);
}

/* Technical data + Preparations */
.pc-tech-prep {
  margin-top: 40px;
}
.pc-tech-prep > div {
  background: #fff;
  padding: 20px 25px;
  margin-bottom: 20px;
}

/* Headings inside block */
.pc-tech-prep h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #F5B8B7;
  display: inline-block;
  padding-bottom: 5px;
}

/* =============================
   FOOTER STYLING
============================= */

.tr-footer {
  background: #222;           /* Dark background */
  color: #ddd;                /* Light text */
  padding: 50px 0 20px;
  font-size: 15px;
  line-height: 1.7;
}

.tr-footer .tr-logo img {
  margin-bottom: 20px;
}

.tr-footer .tr-footerinfo {
  color: #bbb;
  font-size: 15px;
}

.tr-footer .tr-footerinfo p {
  margin: 0 0 10px;
}

/* Footer bottom */
.tr-footerbtm {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
}

.tr-copyright p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

/* Links inside footer */
.tr-footer a {
  color: #f5b8b7; /* Accent color */
  text-decoration: none;
}

.tr-footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .tr-footer {
    text-align: center;
  }
  .tr-footer .tr-logo img {
    margin: 0 auto 20px;
  }
}

.pc-areblock {
	white-space: pre-line!important;
}
