@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:wght@100..900&display=swap');
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{
  margin:0;
  padding:0;
  border:0;
  font:inherit;
  vertical-align:baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body{line-height:1}
ol,ul{list-style:none}
table{border-collapse:collapse;border-spacing:0}

body {
  margin-left: 0;
  background: #f4f7f6;
  font-family: 'Montserrat', sans-serif;
  color: #1f2f2f;
}

h1 {
  font-weight: 800;
  font-size: 2rem;
}

.miniheader {
  display: inline-block;
}

.miniheader::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, #3a5555, #4f6f6f);
  margin-top: 10px;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
}

p {
  line-height: 1.6;
}

hr {
  border: none;
  height: 40px;
 background: #d6e2e1;
 margin: 40px 0;
}

.page-header {
  position: relative;
  width: 100%;
  height: 150px;
  background: url('../images/p6.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 100px;
  box-sizing: border-box;
  color: #d6e2e1;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 47, 47, 0.6);
  z-index: 1;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100px;
  background: linear-gradient(180deg, #1f2f2f, #2c3f3f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  overflow: hidden;
  transition: width 0.4s ease;
  z-index: 10;
}

.sidebar:hover {
  width: 240px;
}

.sidebar a {
  color: #d6e2e1;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #ffffff;
    font-size: 20px;

}

.slideshow {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

.hero-title h1 {
  font-size: 3rem;
  font-weight: 500;
}

.hero-title p {
  font-size: 1.2rem;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.flex-container {
  display: flex;
  gap: .5em;
  margin: 4em 4em 6em 4em;
  align-items: center;
}

.column,
.text-column {
  flex: 1;
  padding: 0px;
}

.text-column-single {
  flex: 1;
  padding: 0px;
  margin-left: 100px;
}

.column {
  display: flex;
  justify-content: center;
}

.mainimg {
  width: 65%;
  max-width: 320px;
  display: block;
  border-radius: 50%;
}

.smallimg {
  width: 20px;
  height: auto;
  display: inline-block;
  margin-top: 10px;
  opacity: 50%;
}

.button a {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #1f2f2f, #2c3f3f);
  color: #d6e2e1;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  margin-right: 10px;
}

.button a:hover {
  background: #d6e2e1;
  color: #1f2f2f;
}

footer {
  margin-top: 60px;
  margin-left: 100px;
  background: linear-gradient(180deg, #3a5555, #4f6f6f);
  color: #d6e2e1;
  text-align: center;
  padding: 30px;
}

.timeline {
  margin-left: 120px;
  padding: 20px 20px;

  display: flex;
  overflow-x: auto;
  gap: 40px;

  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 125%;
  height: 4px;
  background: #2c3f3f;
  z-index: 0;
}

.timeline-item {
  flex: 0 0 280px;
  position: relative;
}

.timeline-content {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.timeline-content img {
  width: 100%;
  border-radius: 5px;
  margin-top: 10px;
}

.timeline-content .smallimg {
  width: 15px;
  height: auto;
  display: inline-block;
  margin-top: 10px;
}

.nav-circles {
  display: flex;
  justify-content: center;
  gap: 10em;
  margin: 100px 0;
  margin-left: 100px;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #1f2f2f, #2c3f3f);
  color: #d6e2e1;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.circle:hover {
  transform: translateY(-5px) scale(1.05);
  background: white;
  color: #1f2f2f;
  font-weight: 700;
}

.gallery-section {
  margin: 60px 165px;
}

.gallery-title {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.gallery-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  max-width: 600px;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.25s ease;
}

.gallery-grid img:hover {
  opacity: 0.85;
}

.lb-data .lb-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  margin-right: 5px;
}

.gallery-caption {
  font-size: 0.85rem;
  color: #7a7a7a;
  margin-top: 8px;
  line-height: 1.4;
  max-width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5em;
  margin: 4em 2em;
  margin-left: 120px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 5px rgba(0,0,0,0.08);
}

.info-card p {
  margin-top: 10px;
}

@media (max-width: 800px) {
  .info-grid {
    grid-template-columns: 1fr;
    margin-left: 100px;
  }
}

@media (max-width: 768px) {

  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 0;
  }

  .sidebar:hover {
    width: 100%;
  }

  .sidebar img {
    display: none;
  }

  .main,
  .flex-container,
  .gallery-section,
  footer {
    margin-left: 0 !important;
    margin-right: 0;
    padding: 0 20px;
  }

  .flex-container {
    flex-direction: column;
    gap: 20px;
    margin: 2em 0;
  }

  .text-column,
  .text-column-single,
  .column {
    width: 100%;
    margin-left: 0;
  }

  .mainimg {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .nav-circles {
    flex-direction: column;
    gap: 20px;
    margin: 60px 0;
    margin-left: 0;
  }

  .circle {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
  }

  .page-header {
    height: 120px;
    padding-right: 20px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .hero-title h1 {
    font-size: 2rem;
  }

  .hero-title p {
    font-size: 1rem;
  }

  .timeline {
    margin-left: 0;
    padding: 20px;
  }
}

