/* --------------------------------------------------
   GLOBAL THEME (matches CRM)
-------------------------------------------------- */

:root {
    --navy: #0b1b3b;
    --gold: #d4a53a;
    --accent: #2c3e5f;
    --light: #f5f5f5;
}

body {
    background: var(--navy);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------
   NAV BAR (same as CRM, but centered for public site)
-------------------------------------------------- */

.cc-navbar {
    background: #0d1b2a;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold);
}

.cc-logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
}

.cc-nav-right a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 35px;
    font-size: 18px;
    font-weight: 500;
}

.cc-nav-right a:hover,
.cc-nav-right a.active {
    color: var(--gold);
}

/* --------------------------------------------------
   HERO SECTION (public site only)
-------------------------------------------------- */

.hero {
    background: linear-gradient(135deg, var(--navy), var(--accent));
    padding: 80px 40px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--gold);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* --------------------------------------------------
   PAGE WRAPPER
-------------------------------------------------- */

.cc-page {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* --------------------------------------------------
   CARD (same as CRM)
-------------------------------------------------- */

.card {
    background: #1b263b;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--accent);
    margin-bottom: 30px;
}

/* --------------------------------------------------
   FORM ELEMENTS (same as CRM)
-------------------------------------------------- */

label {
    color: var(--gold);
    font-weight: bold;
    display: block;
    margin-top: 1rem;
}

input, textarea, select {
    background: #0b1b3b;
    color: white;
    border: 1px solid var(--accent);
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    margin-top: 0.3rem;
}

button, .btn {
    background: var(--gold);
    color: #0d1b2a !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* Care Plan CTA Buttons (lighter public-site style) */
.care-btn {
    background: #1b263b; /* deep navy card tone */
    color: var(--gold) !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500; /* softer than bold */
    text-decoration: none;
    border: 1px solid var(--gold);
    display: inline-block;
    margin-top: 1rem;
    transition: background .2s ease, color .2s ease;
}

.care-btn:hover {
    background: var(--gold);
    color: #0d1b2a !important;
}

.care-btn,
.care-btn:link,
.care-btn:visited {
    color: var(--gold) !important;
}

.care-btn:hover {
    background: var(--gold);
    color: #0d1b2a !important;
}


button:hover, .btn:hover {
    background: #e6c15a;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.footer {
    background: #0d1b2a;
    padding: 30px;
    text-align: center;
    border-top: 3px solid var(--gold);
    margin-top: 40px;
}

.footer p {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}

/* --------------------------------------------------
   GALLERY GRID
-------------------------------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--gold);
}

/* --------------------------------------------------
   CONTACT FORM SUCCESS MESSAGE
-------------------------------------------------- */

.success {
    background: #112044;
    border-left: 4px solid var(--gold);
    padding: 15px;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: bold;
}

/* -----------------------------------------
   MOBILE NAVIGATION
----------------------------------------- */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 34px;
    cursor: pointer;
    padding: 0;
}

@media (max-width:768px){

    .cc-navbar{
        position: relative;
        flex-wrap: wrap;
        padding:18px 20px;
    }

    .menu-toggle{
        display:block;
    }

    .cc-nav-right{
        display:none;
        width:100%;
        flex-direction:column;
        margin-top:20px;
        animation:slideDown .25s ease;
    }

    .cc-nav-right.show{
        display:flex;
    }

    .cc-nav-right a{
        margin:0;
        padding:16px;
        text-align:center;
        border-top:1px solid rgba(255,255,255,.08);
        font-size:18px;
    }

    .cc-nav-right a:hover{
        background:#162844;
    }

}

@media (max-width: 768px) {
    .cc-logo img {
        height: 45px;
    }
}

@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.menu-toggle {
    position: relative;
    z-index: 9999;
}

.menu-toggle {
    color: var(--gold) !important;
    font-size: 34px;
    line-height: 1;
}


.menu-toggle {
    color: var(--gold) !important;
    text-shadow: 0 0 1px rgba(0,0,0,0.4);
}

.cc-logo img {
    height: 60px;
    width: auto;
    display: block;
}
