/* -------------------------
       Top bar styles (prototype)
       Replace placeholder content (phone/email/social links)
       ------------------------- */
:root {
    --brand-1: #3a5a40;
    --brand-2: #588157;
    --white: #ffffff;
    --white-90: #bee8c3;
    --light-gray: #e5e5e5;
    --black: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.topbar {
    background: linear-gradient(90deg, var(--brand-2), var(--brand-1));
    color: var(--white);
    font-size: 0.9rem;
}

.topbar .container-fluid {
    max-width: 1200px;
}

.topbar a {
    color: inherit;
}

.topbar a:hover {
    text-decoration: none;
    opacity: 0.95;
    transform: translateY(-1px);
}

.topbar .contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topbar .contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar .contact .pickup {
    color: var(--light-gray);
}

.topbar .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: transform .15s, background .15s;
}

.topbar .social a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width:575.98px) {

    /* xs screens */
    .topbar .email {
        display: none;
    }

    .topbar .contact .pickup {
        display: none;
    }
}

/* Navbar styles */
.navbar-brand img {
    height: 40px;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem;
    color: var(--black);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-1);
}

.hero-section {
    position: relative;
    height: 80vh;
    background: url('../image/forest-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-custom {
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    transition: transform 0.3s ease-in-out;
}

.btn-custom:hover {
    transform: scale(1.05);
}

.content-section {
    padding: 60px 0;
}

.content-heading {
    font-weight: 700;
    margin-bottom: 20px;
}

.content-image img {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.table-custom {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.seater-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.seater-card {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
}

.seater-card:hover {
    transform: translateY(-5px);
}

.seater-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.btn-contact {
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    /* Responsive button text */
    padding: 0.5rem 1rem;
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--white-90);
    color: var(--brand-1);
    box-shadow: none;
}

.accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-func {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-func:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-func img {
    height: 160px;
    object-fit: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.link-box {
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--light-gray);
}

.link-box:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--black);
}

.sticky-buttons {
    position: fixed;
    z-index: 9999;
    display: flex;
    gap: 15px;
}

/* Desktop: vertical right */
@media (min-width: 768px) {
    .sticky-buttons {
        flex-direction: column;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Mobile: bottom bar */
@media (max-width: 767.98px) {
    .sticky-buttons {
        flex-direction: row;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.9);
        padding: 10px 15px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.sticky-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Gradient colors */
.call-btn {
    background: linear-gradient(135deg, #2993f1, #33aefb);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.enquiry-btn {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.sticky-btn:hover {
    transform: scale(1.2) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

footer {
    background: linear-gradient(135deg, var(--brand-2), var(--black));
    color: var(--white);
    padding: 40px 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
}
.btn-global {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: var(--black);
}

.btn-global:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px --var(--black);
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: var(--white);
}

/* Small variant for smaller places like cards */
.btn-global-sm {
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* ==== GLOBAL LINK CLASS ==== */
.link-global {
  color: var(--brand-1);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.link-global:hover {
  color: var(--brand-2);
  text-decoration: underline;
}

.places-to-visit-section {
    padding: 60px 0;
}
.faq-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}
.find-us-in-nearby-cities-section {
    padding: 60px 0;
}
.tag-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}
.contact-section {
    padding: 60px 0;
}

.shorts-video-container iframe {
/* center  */
    display: block;
    margin: 0 auto;
    position: relative;
    left: 0;
  width: 75%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

/* Mobile: increase width to 75% */
@media (max-width: 768px) {
  .shorts-video-container {
    width: 100%;
  }
}