/* @font-face {
  font-family: 'Pyidaungsu';
  src: url('/fonts/Pyidaungsu.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */

body {
  font-family: 'Pyidaungsu', sans-serif;
}

.header-menu {
    width: 100%;
    position: relative;
    height: 150px; /* change to 100vh for full screen hero */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* blurred background image */
.header-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://travelshelper.com/wp-content/uploads/2021/11/Naypyidaw-Travel-Guide-Travel-S-Helper.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1); /* prevent blur edges */
    z-index: 1;
}

/* text content */
.header-menu h1,
.header-menu p {

    position: relative;
    z-index: 2;
    margin: 0;
}


.icon{
    position: relative;
    z-index: 2;
}

.header-menu a {
  text-decoration: none;
  color: white;
}

.header-menu a:hover {
  color: #ddd;
}


.icon-user  {
    margin-top: 5px;
  display: block;
  text-align: center;
  color: white;
}

.icon-user i{
    margin: 5px;
}

.town{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}


/* profile  */
/* .member-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.8s ease forwards;
}

.member-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.member-card p {
    font-weight: 500;
    margin: 0;
    color: #333;
} */


/* ✨ Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Change normal link color */
.page-link {
    color: #16c43f;
    border-radius: 8px;
}

/* Change hover color */
.page-link:hover {
    color: #fff;
    background-color: #16c43f;
}

/* Change active page color */
.page-item.active .page-link {
    background-color: #198754; /* Bootstrap green */
    border-color: #198754;
    color: #fff;
}


.description {
    white-space: pre-line;
}

.workshop {
 width:  100px;
    height: auto;
}

.gallery {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}






