/* ==========================================
   LOGIN PAGE — WhiteWalks 2026
========================================== */

.login-wrapper {
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.login-wrapper h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--grey-800);
}

/* FORM LABELS */
.login-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--grey-700);
}

/* INPUTS */
.login-wrapper input[type="email"],
.login-wrapper input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    font-size: 1rem;
    background: #fff;
}

/* BUTTON */
.login-wrapper button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.login-wrapper button[type="submit"]:hover {
    background: var(--primary-dark);
}

/* RETURN LINK */
.login-wrapper .return-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 500;
}
/* ==========================================
   PUBLIC BASE — WhiteWalks 2026
========================================== */

:root {
    --primary: #4c2d78;
    --primary-500: #4c2d78;
    --primary-hover: #3b2260;
    --on-primary: #8358BF;
    --brand-primary: #4c2d78;
    --primary-dark: #C1A2EB;
}

/* Base layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
    background: #f5f5f8;
    color: var(--grey-700);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.ww-content {
    flex: 1;
}

/* ==========================================
   DESKTOP HERO ADJUSTMENTS
========================================== */
@media (min-width: 768px) {

    .hero {
        height: 520px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 14px 28px;
        font-size: 1.1rem;
    }
}

/* Remove ALL desktop overrides */
/* ======================================
Services
=========================================== */
.service-panel {
    display: none;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
/* Learn More button */
.service-toggle {
    background: #7A2BC3;          /* Brand purple */
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 10px;
     margin-bottom: 16px; /* space below the button */

}

/* Hover effect */
.service-toggle:hover {
    background: #5e1fa8;          /* Darker purple */
    transform: translateY(-2px);  /* Subtle lift */
}

/* When panel is open, button changes colour */
.service-toggle.active {
    background: #4c2d78;          /* Slightly darker */
}
.service-card {
    margin-bottom: 30px; /* adds space between cards */
}
/* ABOUT PAGE */

.public-about h1 {
    text-align: center;
    margin-bottom: 20px;
}

.about-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--grey-700);
}

/* Profile section */
.about-profile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.about-profile-image img {
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.about-profile-role {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
}

.about-profile-text h2 {
    margin-bottom: 15px;
}

.about-profile-text p {
    margin-bottom: 15px;
}

/* Desktop layout */
@media (min-width: 768px) {
    .about-profile {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-profile-image {
        flex: 0 0 260px;
    }

    .about-profile-text {
        flex: 1;
        padding-left: 40px;
    }
}

/* Sections */
.about-section {
    margin-bottom: 50px;
}

.about-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.about-section li {
    margin-bottom: 8px;
}
/* CONTACT PAGE */

.public-contact h1 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--grey-700);
}

/* Success message */
.contact-success {
    background: #e8f9e8;
    border: 1px solid #b6e6b6;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 30px;
    color: #2d7a2d;
    font-weight: 600;
}

/* Layout */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Contact details */
.contact-details h2 {
    margin-bottom: 10px;
}

.contact-details h3 {
    margin-top: 20px;
    margin-bottom: 6px;
}

/* Form */
.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7A2BC3;
    outline: none;
}

/* Desktop layout */
@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
        gap: 60px;
    }

    .contact-details {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }
}
/* ==========================================
   PUBLIC COMPONENTS — WhiteWalks 2026
========================================== */

/* CTA BUTTON */
.public-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease;
}

.public-btn:hover {
    background: var(--primary-dark);
}

/* FEATURE GRID */
.public-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* FEATURE CARD */
.public-feature-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.public-feature-card h3 {
    margin-bottom: 10px;
}

.public-feature-card p {
    color: var(--grey-600);
}
.public-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
}
@media (max-width: 768px) {
    .public-nav a {
        margin: 0 10px;
        font-size: 15px;
    }
}
/* ==========================================
   PUBLIC LAYOUT — WhiteWalks 2026
========================================== */

/* PUBLIC CONTAINER */
.public-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* PUBLIC SECTIONS */
.public-section {
    padding: 60px 0;
}

/* HERO SECTION */
.public-hero {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-bottom: 4px solid var(--primary);
}

.public-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.public-hero p {
    font-size: 1.2rem;
    color: var(--grey-600);
}

/* ==========================================
   HERO SECTION (MOBILE FIRST)
========================================== */

.hero {
    position: relative;
    width: 100%;
    height: 420px;
    background-image: url('/2026/assets/images/hero-dogs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px 40px 20px;
    color: #fff;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40); /* improved readability */
}

/* Text content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

/* Brand purple */
.btn-primary {
    background: #7A2BC3;
    color: #fff;
}

.btn-secondary {
    background: #ffffff;
    color: #7A2BC3;
}

/* ==========================================
   PUBLIC TYPOGRAPHY — WhiteWalks 2026
========================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    font-weight: 700;
    color: var(--grey-900);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
    margin: 0 0 15px;
    line-height: 1.6;
    color: var(--grey-700);
}

strong {
    font-weight: 700;
}

/* ============================
   PUBLIC MOBILE FIXES
   ============================ */

/* Services grid responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 16px;
    }

    .contact-layout {
        gap: 30px;
    }
}

/* Service panel list spacing */
.service-panel ul {
    padding-left: 20px;
}

/* About page spacing */
.about-section {
    margin-bottom: 40px;
}
/* ==========================================
   2026 AUTH LAYOUT — Shared with Portal
========================================== */

.container {
    max-width: 480px;
    margin: 60px auto;
    padding: 0 20px;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-card {
    width: 100%;
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--grey-800);
}

/* FORM GROUPS */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--grey-700);
}

/* INPUTS */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    font-size: 1rem;
    background: #fff;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.w-100 {
    width: 100%;
}

/* ALERTS */
.alert {
    padding: 12px 14px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-error {
    background: #ffe5e5;
    border: 1px solid #ffb3b3;
    color: #b30000;
}

.alert-success {
    background: #e8f9e8;
    border: 1px solid #b6e6b6;
    color: #2d7a2d;
}

/* FOOTER LINKS */
.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer .return-link {
    color: var(--primary);
    font-weight: 500;
}