/* General */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background: #ffffff;
}
.navbar-brand {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.navbar-nav .nav-link {
  transition: color 0.3s;
  color: #000;
  font-weight: 500;
}
.active{
  color: #f39c12 !important;
  font-weight: bold !important;
}
.navbar-nav .nav-link:hover {
  color: #f39c12;
  font-weight: 500;
}
.navbar-toggler {
    border-color: rgb(1, 1, 1);
    color: rgba(0, 0, 0, 0.573);
    font-weight: bold;
}
.navbar-toggler-icon {
    filter: invert(1);
}
#navbarNav{
    transition-duration: 0.7s;
}

/* Hero Section */
.story-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.312), rgba(0, 0, 0, 0.219)),
              url('../images/banner-bg1.jpeg') center/cover no-repeat;
  color: #ffffff;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.story-hero h1 {
  font-size: 3rem;
}
.story-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.story-hero .tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fc7602;
  margin-top: 10px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(146, 143, 143, 0.8); /* shadow glow */
}

/* Story Section */
.story-section {
  background-color: #ffffff;
}
.story-section h2 {
  color: #d35400;
  font-size: 24px;
}
.story-section .highlight {
  color: #e67e22;
  font-weight: 500;
}
.story-img {
  border-radius: 15px;
}

/* CTA Section */
.panoramic {
    background-image: url(../images/panoramic.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* ensures the image covers the full section */
    background-position: center;
    /* keeps the image centered */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    flex-direction: column;
    flex-direction: column;
}

/* --- Attractive Footer Section --- */
.site-footer {
    background-color: white;
    /* A modern, dark blue-grey */
    color: black;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color:#ff8c00;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 16px;
}
/* Media Queries for Responsiveness */
@media (max-width: 767px) {

    .footer-heading,
    .footer-title {
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }

    .list-unstyled {
        text-align: center;
    }

    .text h5 {
        font-size: 1.25rem;
        font-weight: bold;
        color: #ff8c00;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Orange color for the title */
    }

    .foot {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: #ff7b00;
  border: none;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect */
#backToTop:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #e86d00;
}
/* Tablets (≤768px) */
@media (max-width: 768px) {
  .story-hero h1 {
    font-size: 2rem;   /* smaller heading */
  }

  .story-hero .lead {
    font-size: 1rem;   /* slightly smaller text */
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .story-hero h1 {
    font-size: 1.6rem;  /* compact heading */
  }

  .story-hero .lead {
    font-size: 0.9rem;  /* compact paragraph */
  }

  .story-hero {
    padding: 20px 10px; /* add spacing */
  }
}
