/* main.css *//* -----------------------------------------
   MAIN GLOBAL STYLES
------------------------------------------*/

:root {
    --gold: #FDB500;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #E5E5E5;
    --dark-gray: #1A1A1A;
    --font-main: "Georgia", serif;
    --font-header: "Georgia", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.header-img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}


/* Sections */
.content-section {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 10px;
}

/* Centered text */
.center-text {
    text-align: center;
    margin-top: 20px;
}

/* Hero shared formatting */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #000000, #1A1A1A);
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--gold);
}

.hero h2 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.hero p {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Inner hero on subpages */
.inner-hero {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #000000, #111111);
}

/* Main button grid */
.button-grid {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.big-button {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--gold);
    color: var(--black);
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.big-button:hover {
    background: #ffcc44;
}

/* Testimonials */
.testimonial-card {
    background: #111111;
    border: 2px solid var(--gold);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.testimonial-author {
    text-align: right;
    margin-top: 10px;
    color: var(--gold);
}

/* QR Image */
.qr-img {
    width: 260px;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    background: #0A0A0A;
    color: var(--white);
    font-size: 0.9rem;
    border-top: 2px solid var(--gold);
}
/* Disable mobile auto-link styling */
a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
}
/* KILL BACK TO TOP COMPLETELY */
#backToTop,
#backToTop * {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
}
/* Crystal blue text link for health check start */
.health-link,
.health-link:visited,
.health-link:hover,
.health-link:active {
  color: #4FC3F7;          /* crystal blue */
  text-decoration: underline;
  font-weight: 600;
}
/* Remove stray slider / navigation arrows on Bio page */
.bio-page .swiper-button-next,
.bio-page .swiper-button-prev,
.bio-page .slick-prev,
.bio-page .slick-next {
  display: none !important;
}
.bio-page .content-section {
  padding: 36px 40px;
}
.bio-page .content-section p {
  margin-bottom: 18px;
}
