:root {
    --charcoal: #1C1C1E;
    --gold: #D4AF37;
    --teal: #1DAAA4;
    --cream: #F9F8F4;
    --blush: #F6D4CB;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--cream);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}
.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
}
/* Header/Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    text-decoration: none;
}
.logo span {
    color: var(--gold);
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: var(--gold);
}
.nav-btn {
    background-color: var(--gold);
    color: var(--charcoal);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}
.nav-btn:hover {
    background-color: var(--teal);
    color: white;
}
.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    z-index: 1100;
}
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(28, 28, 30, 0.7), rgba(28, 28, 30, 0.5)), 
                url('../other-img/about-background.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}
.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.hero h1 span {
    color: var(--gold);
}
.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 3rem;
}
.hero-btns {
    display: flex;
    gap: 1.5rem;
}
.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal);
}
.btn-primary:hover {
    background-color: var(--teal);
    color: white;
}
.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background-color: white;
    color: var(--charcoal);
}
/* Meet the Duo */
.duo-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 4rem 2rem;
  align-items: center;
}
.bio-card {
  display: flex;
  gap: 2rem;
  background: white;
  border-left: 6px solid var(--gold);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.bio-img img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.bio-text {
  flex: 1;
}
.bio-text h3 {
  color: var(--teal);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.bio-text p {
  margin-bottom: 1rem;
}
.bio-text .fun-fact {
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  background: #f0fdfa;
  border-left: 4px solid var(--teal);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--charcoal);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .bio-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bio-img img {
    width: 100%;
    max-width: 300px;
  }

  .bio-text {
    text-align: center;
  }

  .bio-row {
  flex-direction: column;
}

.bio-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bio-img img {
  width: 100%;
  max-width: 250px;
}

.bio-text {
  text-align: center;
}
}



.duo-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.bio-row {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.bio-card {
  display: flex;
  flex: 1 1 48%;
  background: white;
  border-left: 6px solid var(--gold);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 1.5rem;
  align-items: flex-start;
}

.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.bio-img img {
  width: 150px;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.bio-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.bio-text .fun-fact {
  font-style: italic;
  background: #f0fdfa;
  border-left: 4px solid var(--teal);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--charcoal);
}

/* Mission Section */
.mission {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
}
.mission h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mission p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.feature-item i {
  color: var(--teal);
  font-size: 1.3rem;
}
/* Timeline */
.timeline {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.timeline h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.timeline ul {
  list-style: none;
  padding-left: 1rem;
}
.timeline li {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.timeline li::before {
  content: "📍";
  position: absolute;
  left: 0;
}
/* BTS Section */
.bts {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}
.bts h2 {
  margin-bottom: 1rem;
}
.bts-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.bts-images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
/* CTA */
.cta {
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
  padding: 4rem 2rem;
}
.cta h2 {
  margin-bottom: 1rem;
}
.cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-buttons a {
  padding: 0.8rem 1.5rem;
  background-color: var(--gold);
  color: var(--charcoal);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}
.cta-buttons a:hover {
  background-color: var(--teal);
  color: white;
}
/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
}
footer a {
  color: #ddd;
  margin: 0 0.5rem;
  text-decoration: none;
}
footer a:hover {
  color: var(--gold);
}
@media (max-width: 768px) {
  .duo-section, .bts-images {
    flex-direction: column;
    align-items: center;
  }
  .bio-card {
    text-align: center;
  }
}
/* Chat */



/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 2rem;
        z-index: 1100;
    }
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 999;
    }
    nav ul.active {
        max-height: 400px;
        /* enough for 6-7 links */
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
    }
    nav ul li {
        margin: 0;
        width: 100%;
    }
    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        min-width: 0;
        min-height: 56px;
        padding: 1rem 0;
        font-size: 1.2rem;
        background: none;
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    nav ul li a:hover, nav ul li a:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    nav ul li .nav-btn {
        background: var(--teal);
        color: white;
        border-radius: 0;
        font-size: 1.2rem;
        width: 100vw;
        min-height: 56px;
        padding: 1rem 0;
        margin: 0;
    }
    nav ul li .nav-btn:hover, nav ul li .nav-btn:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .team-members {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }
    .booking-btns {
        flex-direction: column;
        align-items: center;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 1s ease forwards;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}
#chat-toggle-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--charcoal);
    color: var(--charcoal);
    border: none;
    border-radius: 50px;
    width: 130px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition:
        bottom 0.4s cubic-bezier(.4,0,.2,1),
        right 0.4s cubic-bezier(.4,0,.2,1),
        opacity 0.3s,
        transform 0.4s cubic-bezier(.4,0,.2,1),
        background 0.3s,
        color 0.3s,
        box-shadow 0.3s,
        width 0.4s cubic-bezier(.4,0,.2,1),
        border-radius 0.4s cubic-bezier(.4,0,.2,1);
}

#chat-toggle-btn .text {
    display: inline;
}

#aj247-chat-container.active #chat-toggle-btn {
    background: transparent;
    color: var(--gold);
    box-shadow: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    padding: 0;
}

#aj247-chat-container.active #chat-toggle-btn .text {
    display: none;
}

#chat-toggle-btn .text {
    font-weight: bold;
    color: white;
}

#aj247-chat-container.active #chat-toggle-btn .text {
    display: none; /* hidden inside chat */
}

#chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100000 !important; /* force it on top */
    /* ...rest of your styles */
}


/* When chat is open, move toggle button above send button */
#aj247-chat-container.active ~ #chat-toggle-btn {
    position: absolute;
    right: 20px;
    bottom: 90px; /* above send button */
    z-index: 10000;
}
#aj247-chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 9998;
    pointer-events: none;
}
#aj247-chat-widget {
    width: 340px;
    height: 400px;
    max-height: 90vh;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}
#aj247-chat-container.active #aj247-chat-widget {
    transform: scale(1);
    width: 400px;
    height: 560px;
    border-radius: 20px;
    bottom: 90px;
    right: 20px;
    position: fixed;
}
#chat-header {
    background: #e6007e;
    padding: 12px 16px;
    text-align: left;
    font-weight: bold;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: white;
}
#chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
#chat-close-btn:hover {
    color: #ffc;
}
#chat-log {
    flex: 1 1 auto;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 10px;
    min-height: 0;
    max-height: unset;
}
.chat-sender-user {
    color: #2196f3;
    font-weight: bold;
}
.chat-sender-ai {
    color: var(--gold);
    font-weight: bold;
}
#chat-input-bar {
    width: 100%;
    background: #111;
    border-top: 1px solid #333;
    padding: 0 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
#chat-input {
    flex: 1 1 auto;
    border: none;
    padding: 10px 12px;
    outline: none;
    font-size: 14px;
    background-color: #111;
    color: white;
    border-radius: 8px;
    margin: 6px 0;
}
#chat-send-btn {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1rem;
    margin: 6px 0 6px 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#chat-send-btn:hover, #chat-send-btn:focus {
    background: var(--teal);
    color: white;
}
/* Wallhack-style clean chat bubbles */
.chat-msg-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    max-width: 100%;
    }   

.chat-msg-wrapper.left .chat-msg-meta {
  justify-content: flex-start;
  text-align: right;
  gap: 8px;
}

.chat-msg-wrapper.right .chat-msg-meta {
  justify-content: flex-end;
  text-align: right;
  gap: 8px;
}


.chat-msg-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 2px;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  padding: 0 6px;
  gap: 4px;
}


@keyframes popIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
.chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 260px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    position: relative;
    animation: popIn 0.2s ease;
}
.user-bubble {
    background-color: var(--charcoal);
    color: white;
    border-bottom-right-radius: 0;
}
.ai-bubble {
    background-color: #eee;
    color: #1C1C1E;
    border-bottom-left-radius: 0;
}
.chat-content {
    white-space: pre-wrap;
    font-size: 16px;
}
.chat-sender {
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 4px;
    color: #888;
}
.chat-timestamp {
    font-size: 0.65rem;
    color: #999;
    margin-top: 6px;
    text-align: right;
}
/* Bubble tails for pro-style chat bubbles */
.user-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 12px;
    height: 12px;
    background-color: var(--charcoal);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.ai-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 12px;
    height: 12px;
    background-color: #eee;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 600px) {
    .chat-bubble {
        max-width: 85%;
        font-size: 13px;
    }
}
#aj247-chat-container {
    transform: scale(1.1);
    transform-origin: bottom right; /* keeps the chat anchored nicely */
}

.chat-msg-sender {
    font-weight: 600;
    color: #555;
}

.chat-msg-sender {  
    font-size: 0.9rem; /* or bump to 1rem */
}
.chat-msg-timestamp {
    font-size: 0.8rem; /* or bump to 1rem */
}


.chat-msg-timestamp {
    font-style: italic;
    color: #aaa;
}
@media (max-width: 768px) {
    #aj247-chat-container.active #aj247-chat-widget {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        bottom: 0;
        right: 0;
        position: fixed;
    }
    #chat-header {
        font-size: 1rem;
        padding: 12px 16px;
    }
    #chat-close-btn {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    #aj247-chat-container.active #aj247-chat-widget {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    #chat-header {
        font-size: 1rem;
        padding: 12px 16px;
    }
    #chat-close-btn {
        font-size: 1.3rem;
    }
    #chat-input-bar {
        padding: 0 8px;
    }
    #chat-log {
        padding: 10px;
    }
    }
    @media (max-width: 600px) {
        #aj247-chat-container {
            transform: none !important;
        }
    }

.chat-msg-wrapper.right {
    align-items: flex-end;
    align-self: flex-end;
    margin-left: auto;
}
.chat-msg-wrapper.left {
    align-items: flex-start;
    align-self: flex-start;
    margin-right: auto;
}

/* Chat scroll bar - WebKit (Chrome, Edge) */
#chat-log::-webkit-scrollbar {
    width: 8px;
}

#chat-log::-webkit-scrollbar-track {
    background: #1a1a1a; /* same as chat background */
}

#chat-log::-webkit-scrollbar-thumb {
    background-color: var(--gold); /* your theme gold */
    border-radius: 8px;
    border: 2px solid #1a1a1a;
}

#chat-log::-webkit-scrollbar-thumb:hover {
    background-color: var(--teal); /* hover color */
}

/* Chat scroll bar - Firefox */
#chat-log {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #1a1a1a;
}

/* GLOBAL SCROLLBAR STYLING */

/* WebKit-based browsers (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--cream); /* background color of the site */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--gold); /* matches your theme */
    border-radius: 10px;
    border: 2px solid var(--cream);
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--teal);
}

/* Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}

/* Works on most Chromium browsers (Chrome, Edge, Brave, Opera) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: var(--cream); /* Match your site background */
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: var(--gold);  /* Theme color */
    border-radius: 10px;
    border: 2px solid var(--cream);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background-color: var(--teal);
}

/* Firefox support */
html, body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}

/* Add this to your CSS */
body.lock-scroll {
  overflow: hidden;
  position: fixed; /* optional but helps on mobile */
  width: 100%;    /* prevents layout shift */
}

.chat-note {
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.5rem;
  border-radius: 8px;
  margin: 0.5rem;
  text-align: center;
}

#chat-toggle-btn {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        width 0.4s ease;
}

#chat-toggle-btn .chat-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    transition: max-width 0.4s ease, margin-left 0.3s ease;
    margin-left: 0;
}

#chat-toggle-btn.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

#chat-toggle-btn.expand .chat-label {
    max-width: 100px; /* enough space to show "Chat" */
    margin-left: 0.5rem;
}

#chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--charcoal);  /* ← charcoal background */
  color: white;                       /* ← white text */
  font-weight: bold;                  /* ← bold letters */
  border-radius: 50%;
  height: 60px;
  width: 60px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  overflow: hidden;
  transition:
    width 0.4s ease,
    border-radius 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

#chat-toggle-btn .chat-label {
  margin-left: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Button becomes visible */
#chat-toggle-btn.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Button expands */
#chat-toggle-btn.expand {
  width: 140px;
  border-radius: 30px;
  justify-content: flex-start;
  padding-left: 1rem;
}

/* Label fades in only when expanded */
#chat-toggle-btn.expand .chat-label {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

/* Hide "Chat" label when inside chat */
#aj247-chat-container.active #chat-toggle-btn .chat-label {
  display: none;
}

#aj247-chat-container.active #chat-toggle-btn {
  width: 60px;
  border-radius: 50%;
  justify-content: center;
  padding-left: 0;
}

#chat-toggle-btn .chat-label {
  margin-left: 0.2rem;
}


#chat-toggle-btn {
  font-variant-ligatures: none;
  letter-spacing: -0.5px; /* optional: can tighten all characters slightly */
}

#chat-toggle-btn .chat-label {
  margin-left: 0.2rem;
  display: inline-block;
  vertical-align: middle;
}

#chat-toggle-btn .chat-label {
  margin-left: 0.15rem;
  display: inline-block;
  vertical-align: middle;
}

#chat-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0rem; /* ← controls space between emoji + label */
  font-size: 1.5rem;
  background-color: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#chat-toggle-btn .emoji {
  display: inline-block;
}

#chat-toggle-btn .chat-label {
  display: inline-block;
}

body[style*="overflow: hidden"] {
  overscroll-behavior: none;
}

body.lock-scroll {
  overflow: hidden;
}

body.lock-scroll {
  overflow: hidden;
  height: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;  /* <--- Make sure this is here */
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;      /* <--- Important for text centering */
    line-height: 1.2;        /* Optional, to fix vertical alignment */
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: white;
    padding: 3rem 2rem 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-logo span {
    color: var(--gold);
}
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--gold);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* Footer */
footer {
    background-color: var(--charcoal);
    color: white;
    padding: 3rem 2rem 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-logo span {
    color: var(--gold);
}
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--gold);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 2rem;
        z-index: 1100;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 999;
        display: flex;
    }
    .nav-links.active {
        max-height: 400px;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
    }
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        min-width: 0;
        min-height: 56px;
        padding: 1rem 0;
        font-size: 1.2rem;
        background: none;
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    .nav-links a:hover, .nav-links a:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    .nav-links .cta-button {
        background: var(--teal);
        color: white;
        border-radius: 0;
        font-size: 1.2rem;
        width: 100vw;
        min-height: 56px;
        padding: 1rem 0;
        margin: 0;
    }
    .nav-links .cta-button:hover, .nav-links .cta-button:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .package-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left; /* changed from center */
    }
    .footer-logo, .footer-links, .social-links {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer-links ul {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}
@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

.hero h1, .hero p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    max-width: 700px;
    margin-bottom: 2rem;
    font-weight: 400;
}

@media (max-width: 768px) {
  .bio-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bio-img img {
    width: 100%;
    max-width: 300px;
  }

  .bio-text {
    text-align: center;
  }

  .bio-row {
  flex-direction: column;
}

.bio-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bio-img img {
  width: 100%;
  max-width: 250px;
}

.bio-text {
  text-align: center;
}
}
