﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    max-width: 280px;
}

/* Password field enhancements: show/hide toggle + caps-lock warning.
   Wired up by Scripts/Site.js - no markup changes needed on the .aspx side. */
.password-input-group {
    max-width: 280px;
}

.password-input-group .form-control {
    max-width: none;
}

.password-toggle {
    display: inline-flex;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.password-toggle .password-icon {
    vertical-align: -0.125em;
}

.password-caps-warning {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

/* ==========================================================================
   VR Yoga theme - calm, meditative palette
   ========================================================================== */
:root {
    --vy-forest: #3b5a4f;     /* deep calming green */
    --vy-sage: #8aa893;       /* soft sage */
    --vy-sand: #f6f2ea;       /* warm paper */
    --vy-clay: #c9a98a;       /* warm accent */
    --vy-lavender: #b6a7c9;   /* gentle accent */
    --vy-ink: #2c3a34;        /* primary text */
    --vy-muted: #6a7a72;      /* secondary text */
}

body {
    color: var(--vy-ink);
    background-color: var(--vy-sand);
    font-family: "Noto Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    color: var(--vy-forest);
    font-weight: 600;
    letter-spacing: 0.01em;
}

a {
    color: var(--vy-forest);
}
a:hover {
    color: var(--vy-clay);
}

/* The body content sits on the warm paper; let sections breathe. */
.body-content {
    margin-top: 1.75rem;
}

/* --- Navbar ------------------------------------------------------------- */
.navbar-vryoga {
    background-color: var(--vy-forest) !important;
    box-shadow: 0 2px 12px rgba(44, 58, 52, 0.18);
}
.navbar-vryoga .navbar-brand {
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.navbar-vryoga .navbar-brand .brand-mark {
    width: 1.6rem;
    height: 1.6rem;
}
.navbar-vryoga .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.15s ease;
}
.navbar-vryoga .nav-link:hover,
.navbar-vryoga .nav-link:focus {
    color: #fff !important;
}

/* --- Buttons ------------------------------------------------------------ */
.btn-vryoga {
    background-color: var(--vy-forest);
    border-color: var(--vy-forest);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.btn-vryoga:hover,
.btn-vryoga:focus {
    background-color: #2f4a40;
    border-color: #2f4a40;
    color: #fff;
}
.btn-vryoga-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
}
.btn-vryoga-outline:hover,
.btn-vryoga-outline:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* --- Hero --------------------------------------------------------------- */
.vy-hero {
    position: relative;
    color: #fff;
    background-image: linear-gradient(rgba(31, 45, 39, 0.55), rgba(31, 45, 39, 0.55)),
        url("images/community-group.jpg");
    background-size: cover;
    background-position: center 35%;
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 6rem 1.5rem 6.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
}
.vy-hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.vy-hero .vy-tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.92);
}
.vy-hero .vy-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.vy-hero-actions .btn {
    margin: 0.35rem;
}

/* --- Section helpers ---------------------------------------------------- */
.vy-section {
    padding: 1rem 0 2.5rem;
}
.vy-section-tinted {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px rgba(59, 90, 79, 0.07);
}
.vy-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vy-clay);
    margin-bottom: 0.4rem;
}
.vy-lead {
    font-size: 1.15rem;
    color: var(--vy-muted);
    max-width: 46rem;
}

/* --- Feature cards ------------------------------------------------------ */
.vy-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 26px rgba(59, 90, 79, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(59, 90, 79, 0.14);
}
.vy-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.vy-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
}
.vy-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.vy-card-body p {
    color: var(--vy-muted);
    margin-bottom: 0;
}

/* --- Schedule ----------------------------------------------------------- */
.vy-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vy-schedule li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(59, 90, 79, 0.12);
}
.vy-schedule li:last-child {
    border-bottom: none;
}
.vy-schedule .vy-day {
    font-weight: 600;
    color: var(--vy-forest);
}
.vy-schedule .vy-time {
    color: var(--vy-muted);
    text-align: right;
}
.vy-tz-note {
    font-size: 0.9rem;
    color: var(--vy-muted);
    margin-top: 0.75rem;
}

/* --- Rules list --------------------------------------------------------- */
.vy-rules {
    counter-reset: vy-rule;
    list-style: none;
    padding: 0;
}
.vy-rules > li {
    position: relative;
    padding: 0.4rem 0 0.4rem 3rem;
    margin-bottom: 0.6rem;
}
.vy-rules > li::before {
    counter-increment: vy-rule;
    content: counter(vy-rule);
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    background: var(--vy-sage);
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
}

/* --- Split / media rows ------------------------------------------------- */
.vy-split-img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(59, 90, 79, 0.12);
}

/* --- Call-to-action banner ---------------------------------------------- */
.vy-cta {
    position: relative;
    color: #fff;
    background-image: linear-gradient(rgba(31, 45, 39, 0.6), rgba(31, 45, 39, 0.6)),
        url("images/mezzanine-group.png");
    background-size: cover;
    background-position: center;
    border-radius: 1.25rem;
    padding: 3.5rem 1.5rem;
    text-align: center;
    margin: 1rem 0 3rem;
}
.vy-cta h2 {
    color: #fff;
}
.vy-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 38rem;
    margin: 0 auto 1.5rem;
}

/* --- Disclaimer / alert tones ------------------------------------------- */
.vy-note {
    background: #fbf7ef;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    color: var(--vy-muted);
    font-size: 0.95rem;
    box-shadow: 0 8px 26px rgba(59, 90, 79, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vy-note:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(59, 90, 79, 0.14);
}

/* --- Footer ------------------------------------------------------------- */
.vy-footer {
    background: var(--vy-forest);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 2.5rem 2rem 1.75rem;
    margin-top: 3rem;
}
.vy-footer a {
    color: #fff;
    text-decoration: none;
}
.vy-footer a:hover {
    color: var(--vy-clay);
}
.vy-footer h4 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}
.vy-footer .vy-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vy-footer .vy-footer-links li {
    margin-bottom: 0.4rem;
}
.vy-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
