/* style.css - Complete Stylesheet */
:root {
    /* Colors */
    --primary: #1a5f7a;
    --primary-dark: #0d4c63;
    --secondary: #ff7e30;
    --accent: #57cc99;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --danger: #dc3545;
    --success: #28a745;
    /* Typography */
    --heading-font: 'Fraunces', serif;
    --body-font: 'Inter', sans-serif;
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    /* Shadows */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--primary-dark);
    }

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bg-subtle {
    background-color: var(--gray-light);
}

.btn-primary, .btn-secondary, .btn-card {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--body-font);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-secondary:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-card {
    background-color: var(--primary);
    color: white;
    width: 100%;
}

    .btn-card:hover {
        background-color: var(--primary-dark);
        color: white;
    }

/* Navigation */
.main-nav {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
}

.nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand-logo {
    height: 48px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--gray);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-menu {
    display: flex;
    flex: 1;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: var(--space-xs) 0;
    position: relative;
}

    .nav-link:hover {
        color: var(--primary);
    }

    .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
        }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

    .dropdown-item:hover {
        background-color: var(--gray-light);
        color: var(--primary);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4f 100%);
    color: white;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 320px;
}

.hero-image-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    width: 340px;
    overflow: hidden;
}

.hero-dogs-img {
    width: 100%;
    display: block;
    mix-blend-mode: multiply;
    object-fit: contain;
    object-position: center left;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xxl) var(--space-xl) var(--space-xxl) var(--space-lg);
    text-align: left;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: var(--space-md);
    color: white;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }
    .hero-image-wrap {
        width: 100%;
        max-height: 180px;
        justify-content: center;
    }
    .hero-dogs-img {
        width: auto;
        max-height: 180px;
    }
    .hero-content {
        text-align: center;
        padding: var(--space-lg);
        align-items: center;
    }
    .hero-content h1 {
        font-size: 1.9rem;
    }
}

/* Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .program-card.reactive {
        border-top: 4px solid var(--danger);
    }

    .program-card.private {
        border-top: 4px solid var(--accent);
    }

.program-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.program-description {
    color: var(--gray);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.program-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

    .highlight-item i {
        color: var(--success);
    }

.program-actions {
    margin-top: auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-lg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

/* Testimonial */
.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-content i.fa-quote-left {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* Contact */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

.contact-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: var(--space-xl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer-section h3 {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-md);
}

.footer-section p {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

    .footer-section a:hover {
        color: white;
    }

.footer-section i {
    width: 20px;
    margin-right: 8px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: var(--space-xs);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
    }

.form-select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--body-font);
    font-size: 1rem;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-submit {
    width: 100%;
}

/* Content Pages */
.content-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4f 100%);
    color: white;
    overflow: hidden;
}

.content-header .hero-inner {
    min-height: 220px;
}

.content-header .hero-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: var(--space-sm);
}

.content-header .hero-subtitle {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-header .hero-content {
        text-align: center;
        padding: var(--space-lg);
        align-items: center;
    }
}

.page-content {
    padding: var(--space-xl) 0;
}

.level-grid {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.level-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.level-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.level-price {
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-left: 3px solid var(--primary);
        margin-left: var(--space-md);
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .hero {
        padding: var(--space-xl) 0;
    }
}

/* Print Styles */
@media print {
    .main-nav,
    .hero,
    .hero-buttons,
    footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* Bottom Page Dog Silhouette Decoration — Left & Right */
.dogs-footer-image {
    width: 100%;
    position: relative;
    height: 120px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
}

.dogs-footer-image img.dogs-left {
    height: 110px;
    width: auto;
    flex-shrink: 0;
    mix-blend-mode: multiply;
    opacity: 0.15;
    transform: scaleX(-1);
}

.dogs-footer-image img.dogs-right {
    height: 110px;
    width: auto;
    flex-shrink: 0;
    mix-blend-mode: multiply;
    opacity: 0.15;
}

.dogs-footer-image img.dogs-centre {
    height: 72px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    opacity: 1;
}

@media (max-width: 600px) {
    .dogs-footer-image {
        height: 80px;
    }
    .dogs-footer-image img.dogs-left,
    .dogs-footer-image img.dogs-right,
    .dogs-footer-image img.dogs-centre {
        height: 70px;
    }
}
