

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

body{
    font-family: "Open Sans", sans-serif !important;
}

.header-banner{
    padding: 30px;
    background-image: url('../images/banner.svg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    background-position: center;
}

.header-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: center;
    height: 100%;

}
.header-content h1{
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    font-family: "Libre Baskerville", serif;
}
.header-content ul{
    margin: 5px 0 5px 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 20px;
    color: #fff;
}
.header-content p{
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
}
.header-content section{
    display: flex;
    gap: 20px;
}
.header-content section button{
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 10px 30px 10px 30px;
    border-radius: 10px;
}

.about-section{
    padding: 0 30px 0 30px;
    margin: 30px 0 30px 0;
}
.about-section h1{
    color: rgba(127, 76, 0, 1);
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}
.about-section h1 img{
    display: block;
    margin: 5px auto 0 auto;
}
.about-section p{
    color: rgba(54, 32, 0, 1);
    margin-bottom: 20px;
}
.about-section_a{
    display: flex;
    gap: 100px;
}
.about-section_a h4{
    color: rgba(127, 76, 0, 1);
    font-weight: 500;
}
.about-section_a h4 span{
    display: block;
    font-weight: 400;
    font-size: 14px;
    margin-top: 5px;
}
.about-section_b{
    width: 100%;
    height: 450px;
}
.about-section_b img{
    height: 100%;
    width: 100%;
}

.facilities-section{
    background: rgba(255, 247, 236, 1);
    padding: 30px;
}

.facilities-section-a h1{
    color: rgba(127, 76, 0, 1);
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
}
.facilities-section-a h1 img{
    display: block;
    margin: 5px auto 0 auto;
}
.facilities-section-a p{
    text-align: center;
    margin-bottom: 30px;
}

.facilities-section-b{
    position: relative;
    height: 340px;
    overflow: hidden;
    border-radius: 15px;
}
.facilities-section-b img{
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.facilities-section-b:hover img{
    transform: scale(1.08);
}
.facilities-section-b section{
    background-image: url('../images/gradient-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0px 0px 15px 15px;
    padding: 15px;
    color: #fff;
}
.facilities-section-b section h4{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}
.facilities-section-b section p{
    margin: 0;
}
.facilities-section-c{
    background: rgba(245, 231, 211, 1);
    border-radius: 15px;
    padding: 15px;
    margin-top: 30px;
    display: flex;
        gap: 15px;
}
.facilities-section-c h4{
    margin: 0;
    color: rgba(127, 76, 0, 1);
    font-size: 20px;
}
.facilities-section-c h4 span{
    display: block;
    font-weight: 400;
    font-size: 14px;
    margin-top: 5px;
}


.gallery-header {
  text-align: center;
margin-top: 40px;
}

.gallery-header h1 {
      color: rgba(127, 76, 0, 1);
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
}
.gallery-header h1 img{
        display: block;
    margin: 5px auto 0 auto;
}

.gallery-header p {
      text-align: center;
    margin-bottom: 30px;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr; /* Large left, 3 small right */
  grid-template-rows: repeat(3, 150px);
  gap: 15px;
      padding: 0 30px 0 30px;
          margin-bottom: 50px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Rounded corners like the screenshot */
  transition: opacity 0.3s;
}

.featured {
  grid-row: span 3; /* Makes the first image tall */
  position: relative;
}

.overlay-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
}

/* Lightbox Functionality */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox:target {
  display: flex; /* Shows when the ID is in the URL */
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  text-decoration: none;
}

.close-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .featured { grid-row: span 1; grid-column: span 2; }
}

.testimonials-section{
    background: rgba(245, 231, 211, 1);
    padding: 20px 16px 20px 16px;
    border-radius: 15px;
        min-height: 350px;
    position: relative;
}
.testimonials-section img{
        max-width: 80%;
    margin-bottom: 15px;
}
.testimonials-section p{
    margin: 0;
    color: rgba(54, 32, 0, 1);
    font-style: italic;
    font-size: 14px;
}
.testimonials-section h2{
    color: rgba(127, 76, 0, 1);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    position: absolute;
        bottom: 20px;
}
.testimonials-section h2 span{
        font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.contact-section{
    padding: 30px;
}
.contact-section-a h2{
    color: rgba(127, 76, 0, 1);
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
}
.contact-section-a h2 img{
        display: block;
    margin: 5px auto 0 auto;
}
.contact-section-a p{
        text-align: center;
    margin-bottom: 30px;
}

.contact-section-b{
        background: rgba(255, 247, 236, 1);
    padding: 20px;
    border-radius: 15px;
    min-height: 182px;
}
.contact-section-b aside{
        display: flex;
    gap: 15px;
}
.contact-section-b aside h4{
        margin: 0;
    color: rgba(127, 76, 0, 1);
    font-size: 18px;
    font-weight: 600;
}
.contact-section-b aside h4 span{
        display: block;
    font-weight: 400;
    font-size: 14px;
}
.contact-section-b p{
        margin: 20px 0 0 0;
    color: rgba(54, 32, 0, 1);
    font-size: 14px;
}
.contact-section-b p img{
        float: right;
    cursor: pointer;
    width: 20px;
}

.footer{
    background: rgba(127, 76, 0, 1);
    padding: 30px;
}
.footer ul{
    margin: 0;
    padding: 0;
}
.footer ul li{
        display: block;
    list-style: none;
    color: #fff;
    font-size: 14px;
    line-height: 35px;
    cursor: pointer;
}
.footer h4{
        color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.footer-a img{
    max-width: 100%;
}
.footer-a p{
    margin: 15px 0 0 0;
    color: #fff;
}

.footer-b{
        display: flex;
    gap: 40px;
    margin-top: 30px;
}

.copyright{
        border-top: 1px solid rgba(214, 107, 61, 1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}



@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
        color: #fff !important;
        font-weight: 500;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        position: absolute;
        right: 0;
        top: 0;
    }
}


/* Initial hidden state */
.animate-col {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

/* Animation delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


