/* ==========================================================================
   GCA-NC.org Styles
   Colors: Blue #3C70EF, Purple #B97DFF, Light Purple #FAF6FF
   Font: Montserrat
   ========================================================================== */

/* Import Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

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

p {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

/* ==========================================================================
   Layout Container
   ========================================================================== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.header-accent-bar {
    height: 8px;
    background-color: #B97DFF;
    width: 100%;
}

.header-main {
    display: flex;
    flex-direction: column;
    padding: 15px 40px;
    background-color: #ffffff;
}

.header-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-logo a {
    text-decoration: none;
}

.logo-text {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #3C70EF;
    line-height: 1.3;
    display: inline-block;
}

.header-buttons {
    display: flex;
    gap: 8px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3C70EF;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.header-btn:hover {
    background-color: #ffffff;
    color: #3C70EF;
    border-color: #3C70EF;
}

.header-btn-icon {
    padding: 6px 8px;
}

.header-btn-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.header-btn-icon:hover svg {
    fill: #3C70EF;
}

.header-nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 10px;
}

.header-nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3C70EF;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #3C70EF;
}

/* Header Responsive */
@media (max-width: 992px) {
    .header-main {
        padding: 15px 20px;
    }
    .header-nav {
        gap: 30px;
    }
    .header-nav a {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .header-row-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .header-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    .header-nav a {
        font-size: 14px;
    }
    .header-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   Homepage Styles
   ========================================================================== */
.homepage {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 30px;
}

.hero-text-top,
.hero-text-bottom {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 15px 0;
}

.hero-image {
    width: 100%;
    max-width: 910px;
    height: 350px;
    margin: 15px auto;
    border: 3px solid #3C70EF;
    border-radius: 12px;
    background-image: url("/images/hero-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Purple Divider */
.purple-divider {
    height: 16px;
    background-color: #B97DFF;
    width: 95%;
    margin: 20px auto;
}

/* Mission Section */
.mission-section {
    text-align: center;
    padding: 20px 0;
}

.mission-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #3C70EF;
    text-decoration: underline;
    margin-bottom: 10px;
}

.mission-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #000000;
    margin-bottom: 20px;
}

.mission-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 25px;
}

/* Mission Points */
.mission-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-point img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mission-point span {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-align: left;
}

.nonprofit-note {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: #000000;
    text-decoration: underline;
    margin-top: 20px;
}

/* Greyhound Silhouettes Divider */
.greyhound-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
}

.greyhound-silhouette {
    width: 80px;
    height: 80px;
    background-image: url("/images/about-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Cards Section */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.info-card {
    width: 320px;
    border: 2px solid #B97DFF;
    border-radius: 12px;
    background-color: #FAF6FF;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 250px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.foster-image {
    background-image: url("/images/foster/foster-slide-1.jpg");
}

.adopt-image {
    background-image: url("/images/foster/foster-slide-2.jpg");
}

.card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3C70EF;
    text-decoration: underline;
    text-align: center;
    margin: 15px 0 10px;
}

.card-description {
    padding: 0 20px;
    text-align: center;
}

.card-description p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 40px 25px;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline {
    background-color: #FAF6FF;
    color: #000000;
    border: 2px solid #3C70EF;
}

.btn-outline:hover {
    background-color: #3C70EF;
    color: #ffffff;
}

.btn-filled {
    background-color: #3C70EF;
    color: #FAF6FF;
    border: 2px solid #3C70EF;
}

.btn-filled:hover {
    background-color: #FAF6FF;
    color: #3C70EF;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
    margin-top: 40px;
    border: 6px solid #3C70EF;
    padding: 30px;
    background-color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Get in Touch Section */
.footer-contact-section {
    text-align: center;
    min-width: 180px;
}

.footer-contact-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 10px;
}

.footer-contact-section .signup-link {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #3C70EF;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #3C70EF;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #3C70EF;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Footer Navigation Columns */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 150px;
}

.footer-nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3C70EF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3C70EF;
}

/* Footer Contact Info */
.footer-info {
    min-width: 200px;
}

.footer-info h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 10px;
}

.footer-info p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 5px 0;
}

.footer-info a {
    color: #3C70EF;
    text-decoration: underline;
}

.footer-info a:hover {
    color: #3C70EF;
}

.footer-questions {
    margin-top: 15px;
}

.footer-questions p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #000000;
}

.footer-questions a {
    color: #3C70EF;
    text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.footer-copyright p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-nav,
    .footer-info {
        text-align: center;
    }
}

/* ==========================================================================
   Generic Page Styles (for other pages)
   ========================================================================== */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #3C70EF;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 30px;
}

.page-content {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #3C70EF;
    margin: 25px 0 15px;
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 10px;
}

.page-content p {
    margin-bottom: 15px;
}

.page-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: #3C70EF;
    text-decoration: underline;
}

.page-content a:hover {
    color: #3C70EF;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-page {
    text-align: center;
}

.about-page .about-header {
    max-width: 800px;
    margin: 0 auto;
}

.about-page .section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #3C70EF;
    text-align: center;
    margin-bottom: 15px;
}

.about-page .section-heading a {
    color: #3C70EF;
    text-decoration: underline;
}

.about-page .mission-statement {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

.about-page .about-text {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 10px;
}

.about-page .about-images-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px -50px;
}

.about-page .about-image {
    width: 380px;
    height: 280px;
    object-fit: cover;
    border: 3px solid #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-page .action-buttons-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.about-page .single-greyhound-row {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.about-page .single-grey {
    width: 60px;
    height: auto;
}

.about-page .board-heading {
    margin-top: 20px;
}

/* Board Grid - 2x2 layout */
.about-page .board-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-page .board-member-card {
    border: 2px solid #B97DFF;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    background-color: #FAF6FF;
}

.about-page .member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3C70EF;
    background-color: #ddd;
}

.about-page .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .member-name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 5px;
}

.about-page .member-title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    color: #3C70EF;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-page .member-bio {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-page .board-grid {
        grid-template-columns: 1fr;
    }
    
    .about-page .about-images-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   Adoption Info Page Styles
   ========================================================================== */
.adoption-page .eligibility-section,
.adoption-page .requirements-section,
.adoption-page .fees-section,
.adoption-page .process-section {
    margin-bottom: 35px;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.fees-table th,
.fees-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #B97DFF;
}

.fees-table th {
    background-color: #3C70EF;
    color: #ffffff;
    font-weight: 600;
}

.fees-table tr:nth-child(even) {
    background-color: #FAF6FF;
}

.process-steps {
    counter-reset: step;
}

.process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #FAF6FF;
    border-left: 4px solid #3C70EF;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #3C70EF;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-step-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 5px;
}

.process-step-content p {
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   NEW Adoption Info Page Styles (Matching original gca-nc.org)
   ========================================================================== */
.adoption-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Adoption Header */
.adoption-page .adoption-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.adoption-page .adoption-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 15px;
    text-decoration: underline;
}

.adoption-page .adoption-subtitle-main {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #000;
    margin-bottom: 25px;
}

.adoption-page .adoption-intro-box {
    background-color: #FAF6FF;
    padding: 30px 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.adoption-page .adoption-intro-box p {
    margin: 0 0 15px;
    line-height: 1.7;
    font-size: 16px;
}

.adoption-page .adoption-intro-box p:last-child {
    margin-bottom: 0;
}

/* Reuse foster page dog icons */
.adoption-page .dots-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.adoption-page .dog-icon-container {
    width: 100px;
    height: 100px;
}

.adoption-page .dog-icon {
    width: 100%;
    height: auto;
    opacity: 1;
}

/* What To Know Section */
.adoption-page .know-section {
    margin-bottom: 40px;
    background-color: #FAF6FF;
    padding: 40px;
    border-radius: 12px;
}

.adoption-page .section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 25px;
    text-align: center;
}

.adoption-page .section-heading a {
    color: #3C70EF;
    text-decoration: underline;
}

/* Top Row: Images Left, Text Right */
.adoption-page .know-top-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.adoption-page .know-left-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.adoption-page .know-right-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.adoption-page .know-item {
    margin-bottom: 25px;
}

.adoption-page .know-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    text-decoration: underline;
}

.adoption-page .know-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px;
}

/* Bottom Row: Icons Left, Text Center, Images Right */
.adoption-page .know-bottom-row {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 30px;
    align-items: stretch;
}

.adoption-page .know-icons-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 40px;
}

.adoption-page .yard-icon {
    width: 30px;
    height: 30px;
    color: #333;
}

.adoption-page .yard-icon svg {
    width: 100%;
    height: 100%;
}

.adoption-page .know-center-text {
    text-align: center;
}

.adoption-page .know-right-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

/* Framed Images */
.adoption-page .know-image {
    width: 100%;
    max-width: 280px;
    flex: 1;
    object-fit: cover;
}

.adoption-page .know-image.framed {
    border: 3px solid #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Commitment Banner */
.adoption-page .commitment-banner {
    background-color: #3C70EF;
    color: #fff;
    padding: 25px 40px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
}

.adoption-page .commitment-banner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Wide Image */
.adoption-page .wide-image-section {
    margin: 40px 0;
    text-align: center;
}

.adoption-page .wide-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* What We Ask Section */
.adoption-page .ask-section {
    margin-bottom: 40px;
}

.adoption-page .ask-content {
    display: block;
}

.adoption-page .ask-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.adoption-page .ask-item {
    margin-bottom: 20px;
}

.adoption-page .ask-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    margin-bottom: 8px;
}

.adoption-page .ask-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Ask Bottom Images Row */
.adoption-page .ask-bottom-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.adoption-page .ask-bottom-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.adoption-page .ask-bottom-image.framed {
    border: 3px solid #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Orange Divider */
.adoption-page .orange-divider {
    height: 6px;
    background-color: #F5A623;
    margin: 40px 0;
}

/* Adoption Warning Text (Purple) */
.adoption-page .adoption-warning-text {
    text-align: center;
    margin: 30px 0;
}

.adoption-page .adoption-warning-text p {
    color: #3C70EF;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Purple Divider */
.adoption-page .purple-divider {
    height: 4px;
    background-color: #B97DFF;
    margin: 30px 0;
}

/* Fees Section */
.adoption-page .fees-section {
    margin: 40px 0;
}

.adoption-page .fees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.adoption-page .fees-left-box {
    border: 2px solid #B97DFF;
    padding: 30px;
    border-radius: 8px;
    background-color: #FAF6FF;
}

.adoption-page .fees-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.adoption-page .fees-left-box > p {
    font-size: 14px;
    margin-bottom: 15px;
}

.adoption-page .fees-prices p {
    font-size: 15px;
    margin: 10px 0;
    padding-left: 20px;
}

.adoption-page .whats-included-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.adoption-page .included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.adoption-page .included-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adoption-page .included-list-simple li {
    padding: 8px 0;
    font-size: 14px;
}

.adoption-page .fees-cta {
    text-align: center;
    padding-top: 0;
}

.adoption-page .fees-cta > p {
    margin-bottom: 2px;
    font-size: 15px;
}

/* Running Greyhounds Row */
.adoption-page .running-greyhounds-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 0;
}

.adoption-page .running-grey {
    width: 80px;
    height: auto;
}

/* Small Action Buttons */
.adoption-page .action-buttons-row.small-btns {
    margin-bottom: 0;
}

/* Greyt Text */
.adoption-page .greyt-text {
    color: #3C70EF;
    font-size: 15px;
    margin: 2px 0;
}

/* Blue Divider */
.adoption-page .blue-divider {
    height: 4px;
    background-color: #3C70EF;
    margin: 10px 0;
}

/* Process Section */
.adoption-page .process-section {
    margin: 40px 0;
    padding: 40px 0;
    background-color: #fff;
}

.adoption-page .steps-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.adoption-page .step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.adoption-page .step-number-outline {
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #3C70EF;
    border: 2px solid #3C70EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    font-style: italic;
}

.adoption-page .step-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 8px;
}

.adoption-page .note-text-purple {
    text-align: center;
    font-size: 14px;
    color: #3C70EF;
    margin: 30px 0 15px;
}

.adoption-page .goal-text-italic {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 20px 40px;
    line-height: 1.6;
}

/* Single Running Greyhound */
.adoption-page .single-greyhound-row {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.adoption-page .single-grey {
    width: 80px;
    height: auto;
}

/* Legacy note-text and goal-text */
.adoption-page .note-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 30px 0 15px;
}

.adoption-page .goal-text {
    text-align: center;
    font-size: 15px;
    color: #3C70EF;
    margin: 0;
}

/* Adoption Page Responsive */
@media (max-width: 992px) {
    .adoption-page .know-content,
    .adoption-page .ask-content {
        grid-template-columns: 1fr;
    }
    
    .adoption-page .know-grid,
    .adoption-page .ask-grid {
        grid-template-columns: 1fr;
    }
    
    .adoption-page .know-images,
    .adoption-page .ask-images {
        margin-top: 20px;
    }
    
    .adoption-page .know-images-stack,
    .adoption-page .ask-images-stack {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .adoption-page .fees-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .adoption-page .adoption-title {
        font-size: 26px;
    }
    
    .adoption-page .included-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Foster Info Page Styles (Matching original gca-nc.org exactly)
   ========================================================================== */
.foster-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Foster Header */
.foster-page .foster-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.foster-page .foster-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.foster-page .foster-subtitle-main {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #000;
    margin-bottom: 25px;
}

.foster-page .foster-intro-box {
    background-color: #FAF6FF;
    padding: 30px 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.foster-page .foster-intro-box p {
    margin: 0 0 15px;
    line-height: 1.7;
    font-size: 16px;
}

.foster-page .foster-intro-box p:last-child {
    margin-bottom: 0;
}

.foster-page .foster-journey-text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Dog Icon Dots Row */
.foster-page .dots-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.foster-page .dog-icon-container {
    width: 100px;
    height: 100px;
}

.foster-page .dog-icon {
    width: 100%;
    height: auto;
    opacity: 1;
}

/* Decorative Dots */
.foster-page .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.foster-page .dot.dot-blue {
    background-color: #3C70EF;
}

.foster-page .dot.dot-purple {
    background-color: #3C70EF;
}

.foster-page .dots-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.foster-page .dots-row.small {
    gap: 15px;
    margin: 20px 0;
}

/* What To Expect Section */
.foster-page .expect-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.foster-page .expect-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 200px;
    margin-top: 60px;
}

.foster-page .expect-image {
    width: 200px;
    max-width: 200px;
    border-radius: 0;
    overflow: hidden;
}

.foster-page .expect-image img {
    width: 200px;
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 0;
    border: 3px solid #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.foster-page .expect-image.placeholder-img {
    background-color: #FAF6FF;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foster-page .expect-right {
    padding-top: 10px;
}

.foster-page .section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 20px;
}

.foster-page .section-heading a {
    color: #3C70EF;
    text-decoration: underline;
}

.foster-page .section-heading a:hover {
    color: #3C70EF;
}

.foster-page .expect-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.foster-page .expect-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

.foster-page .expect-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #3C70EF;
    border-radius: 50%;
}

.foster-page .expect-list li:nth-child(2n)::before {
    background-color: #3C70EF;
}

.foster-page .light-text {
    font-weight: 400;
}

/* Requirements Section (Light Purple Background) */
.foster-page .requirements-section {
    background-color: #FAF6FF;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.foster-page .requirements-main {
    display: grid;
    grid-template-columns: 1fr 365px;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.foster-page .requirements-left {
    padding-right: 20px;
}

.foster-page .requirements-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 365px;
    max-width: 365px;
}

.foster-page .requirements-images-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 200px;
    align-items: center;
}

.foster-page .requirements-image {
    border-radius: 0;
    border: 3px solid #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.foster-page .requirements-images-stack .requirements-image:first-child {
    width: 200px;
    max-width: 200px;
}

.foster-page .requirements-images-stack .requirements-image:nth-child(2) {
    width: 200px;
    max-width: 200px;
}

.foster-page .requirements-images-stack .requirements-image:nth-child(3) {
    width: 200px;
    max-width: 200px;
}

.foster-page .placeholder-img {
    background-color: rgba(185, 125, 255, 0.1);
    min-height: 280px;
    border-radius: 12px;
}

.foster-page .underline-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 25px 0 15px;
    text-decoration: underline;
}

.foster-page .underline-heading.blue {
    color: #3C70EF;
}

.foster-page .requirements-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.foster-page .requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 15px;
}

.foster-page .check-icon {
    width: 11px;
    height: 11px;
    min-width: 11px;
    margin-top: 6px;
}

.foster-page .check-dot {
    width: 11px;
    height: 11px;
    min-width: 11px;
    border-radius: 50%;
    margin-top: 6px;
    display: inline-block;
}

.foster-page .check-dot.blue {
    background-color: #3C70EF;
}

.foster-page .check-dot.purple {
    background-color: #3C70EF;
}

.foster-page .note-text {
    font-size: 14px;
    margin-top: 25px;
    color: #666;
}

/* Purple Divider Bar */
.foster-page .purple-bar {
    height: 8px;
    background-color: #3C70EF;
    margin: 50px 0;
    border-radius: 4px;
}

/* Support and Expected Section */
.foster-page .support-expected-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0;
}

.foster-page .support-column {
    background-color: #FAF6FF;
    padding: 35px;
    border-radius: 15px;
}

.foster-page .support-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foster-page .purple-text {
    color: #3C70EF;
}

.foster-page .support-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.foster-page .supplies-content {
    margin-top: 25px;
}

.foster-page .supplies-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.foster-page .supplies-list li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.foster-page .supplies-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #3C70EF;
    border-radius: 50%;
}

/* Expected Column */
.foster-page .expected-column {
    padding: 10px 0;
}

.foster-page .steps-list {
    margin: 25px 0;
}

.foster-page .step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.foster-page .step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #3C70EF, #B97DFF);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.foster-page .step-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    padding-top: 5px;
}

.foster-page .apply-button {
    margin-top: 25px;
}

.foster-page .apply-button .btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #000;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.foster-page .apply-button .btn:hover {
    background: #000;
    color: #fff;
}

/* Thank You Section */
.foster-page .thankyou-section {
    text-align: center;
    padding: 40px 0;
}

.foster-page .thankyou-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.foster-page .thankyou-section p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 30px;
}

.foster-page .dog-icon-divider {
    margin-top: 30px;
    text-align: center;
}

.foster-page .dog-silhouette {
    width: 150px;
    height: auto;
    opacity: 1;
}

/* Bottom Action Buttons */
.foster-page .action-buttons-row,
.action-buttons-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-bottom: 40px;
}

.foster-page .action-btn,
.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: #FAF6FF;
    border: 2px solid #3C70EF;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #3C70EF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.foster-page .action-btn:hover,
.action-btn:hover {
    background-color: #3C70EF;
    color: #fff;
}

.foster-page .action-btn:hover .action-icon,
.action-btn:hover .action-icon {
    color: #fff;
}

.foster-page .action-icon,
.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3C70EF;
}

.foster-page .action-icon svg,
.action-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Foster Page Responsive */
@media (max-width: 992px) {
    .foster-page .expect-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .foster-page .expect-left {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .foster-page .requirements-main {
        grid-template-columns: 1fr;
    }
    
    .foster-page .requirements-right {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .foster-page .support-expected-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .foster-page .foster-title {
        font-size: 26px;
    }
    
    .foster-page .foster-subtitle-main {
        font-size: 18px;
    }
    
    .foster-page .requirements-section {
        padding: 30px 20px;
    }
    
    .foster-page .support-column {
        padding: 25px;
    }
    
    .foster-page .action-buttons-row {
        flex-direction: column;
        align-items: center;
    }
    
    .foster-page .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   Events Page Styles
   ========================================================================== */
.events-page .event-card {
    background-color: #FAF6FF;
    border: 2px solid #B97DFF;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.event-card .event-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card .event-details {
    flex: 1;
}

@media (max-width: 600px) {
    .events-page .event-card {
        flex-direction: column;
    }
    
    .event-card .event-image {
        width: 100%;
        height: 200px;
    }
}

.event-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.event-meta span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #3C70EF;
    font-weight: 500;
}

.event-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Donations Page Styles
   ========================================================================== */
.donations-page .donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.donation-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FAF6FF;
    border: 2px solid #3C70EF;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3C70EF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-btn:hover,
.donation-btn.active {
    background-color: #3C70EF;
    color: #ffffff;
}

.donation-info {
    background-color: #FAF6FF;
    border: 2px solid #B97DFF;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

/* ==========================================================================
   Forms Styles
   ========================================================================== */
.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B97DFF;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3C70EF;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group label .required {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3C70EF;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233C70EF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3C70EF;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #3C70EF;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================================================
   Greyhounds Page Layout with Sidebar
   ========================================================================== */
.greyhounds-page {
    background-color: #fff;
    max-width: 1400px;
}

.greyhounds-layout {
    display: flex;
    gap: 40px;
    max-width: 100%;
    margin: 0;
    padding: 40px 20px 40px 30px;
}

/* Sidebar Styles */
.greyhounds-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-divider-bar {
    height: 8px;
    background: linear-gradient(90deg, #3C70EF 0%, #B97DFF 100%);
    border-radius: 4px;
    margin-bottom: 15px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-nav-btn {
    display: block;
    padding: 14px 20px;
    background-color: #fff;
    border: 2px solid #3C70EF;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-nav-btn:hover {
    background-color: #3C70EF;
    color: #fff;
}

/* Main Content Area */
.greyhounds-main {
    flex: 1;
    min-width: 0;
}

.greyhounds-page-header {
    margin-bottom: 20px;
}

.greyhounds-page-header .page-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #3C70EF;
    margin: 0;
}

/* Sort Box */
.sort-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding: 15px 25px;
    border: 3px solid #536bee;
    border-radius: 5px;
    background-color: #f9f6ff;
    margin-bottom: 30px;
}

.sort-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
}

.sort-label {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.sort-select {
    padding: 10px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    min-width: 180px;
}

.sort-select:focus {
    outline: none;
    border-color: #3C70EF;
}

@media (max-width: 768px) {
    .sort-label {
        display: none;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .sort-form {
        width: 100%;
    }
}

/* Greyhounds Grid */
.greyhounds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Greyhound Card */
.greyhound-card {
    border: 2px solid #3C70EF;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.greyhound-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(60, 112, 239, 0.2);
}

.greyhound-card-content {
    padding: 25px;
    text-align: center;
}

.greyhound-name {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.greyhound-racing-name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.greyhound-card-image-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 10px;
}

.greyhound-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greyhound-stats {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.greyhound-details {
    text-align: left;
    margin-bottom: 20px;
}

.detail-item {
    margin-bottom: 10px;
}

.detail-item .detail-label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3C70EF;
    text-decoration: underline;
    margin-bottom: 2px;
}

.detail-item .detail-value {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
}

.btn-learn-more {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background-color: #5B7FE1;
    border: none;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #3C70EF;
}

.no-greyhounds {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: #FAF6FF;
    border-radius: 12px;
    border: 2px solid #B97DFF;
}

.no-greyhounds p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.no-greyhounds a {
    color: #3C70EF;
    font-weight: 600;
}

/* Greyhound Detail Page */
.greyhound-detail-main {
    max-width: 100%;
}

.detail-page-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #3C70EF;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 30px;
}

.greyhound-detail-layout {
    display: flex;
    gap: 40px;
}

.detail-info-section {
    flex: 1;
    min-width: 0;
}

.detail-info-table {
    text-align: center;
    margin-bottom: 20px;
}

.detail-info-row {
    margin-bottom: 8px;
}

.detail-info-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.detail-info-value {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #000;
}

.detail-info-divider {
    height: 2px;
    background: linear-gradient(90deg, #3C70EF 0%, #B97DFF 100%);
    margin: 15px auto;
    max-width: 300px;
}

.detail-arrival {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
}

.detail-description {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    text-align: left;
}

.detail-description p {
    margin-bottom: 15px;
}

/* Running Greyhounds on Detail Page */
.detail-info-section .running-greyhounds-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.detail-info-section .running-greyhounds-row .running-grey {
    width: 50px;
    height: auto;
}

.detail-images-section {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-image-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.detail-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .greyhound-detail-layout {
        flex-direction: column;
    }
    
    .detail-images-section {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .detail-image-wrap {
        width: calc(33% - 10px);
    }
}

@media (max-width: 600px) {
    .detail-image-wrap {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .greyhounds-layout {
        flex-direction: column;
    }
    
    .greyhounds-sidebar {
        width: 100%;
    }
    
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-nav-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 200px;
    }
    
    .sidebar-divider {
        width: 100%;
        height: 2px;
        flex-basis: 100%;
    }
}

@media (max-width: 600px) {
    .greyhounds-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sidebar-nav-btn {
        flex: 1 1 100%;
    }
    
    .greyhounds-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Privacy Policy Page
   ========================================================================== */
.privacy-page {
    background-color: #fff;
}

.privacy-page .page-title {
    text-align: center;
    color: #3C70EF;
    margin-bottom: 30px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content .section-title-blue {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #3C70EF;
    text-align: center;
    margin-bottom: 10px;
}

.privacy-content .updated-date {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.privacy-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 25px 0 15px;
}

.privacy-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.privacy-content a {
    color: #3C70EF;
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #B97DFF;
}

.privacy-content .purple-divider {
    height: 3px;
    background-color: #B97DFF;
    margin: 30px 0;
}

/* ==========================================================================
   Error Pages (404, 500)
   ========================================================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-family: "Montserrat", sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #3C70EF;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.error-page .action-buttons {
    justify-content: center;
}

/* ==========================================================================
   In Memoriam Page
   ========================================================================== */
.memorial-page .page-intro {
    text-align: center;
}

.memorial-tribute {
    text-align: center;
    font-style: italic;
    color: #666;
    margin: 30px 0;
    padding: 20px;
    border-left: 4px solid #B97DFF;
    background: #FAF6FF;
}

.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.memorial-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.memorial-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
}

.memorial-card-content {
    padding: 20px;
}

.memorial-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 5px;
}

.memorial-card .dates {
    font-size: 14px;
    color: #666;
}

/* ==========================================================================
   Greyhound Detail Page
   ========================================================================== */
.greyhound-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.detail-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.detail-info h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 20px;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.detail-table th,
.detail-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.detail-table th {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.detail-table td {
    color: #666;
}

.detail-bio {
    margin-top: 30px;
}

.detail-bio h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .greyhound-detail {
        grid-template-columns: 1fr;
    }
    
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   Fees Page Styles
   ========================================================================== */
.fees-page {
    background-color: #fff;
}

.fees-header {
    text-align: center;
    padding: 40px 20px 30px;
}

.fees-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #3C70EF;
    margin-bottom: 10px;
}

.fees-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #333;
}

.purple-divider-full {
    height: 10px;
    background: linear-gradient(90deg, #B97DFF 0%, #B97DFF 100%);
    margin-bottom: 0;
}

.fees-content-wrapper {
    display: flex;
    background-color: #f5f5f5;
    padding: 40px 60px;
    gap: 40px;
}

.fees-images-column {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fees-side-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fees-form-column {
    flex: 1;
    max-width: 600px;
}

.stripe-payment-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 20px;
}

.section-label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.amount-buttons {
    display: flex;
    gap: 10px;
}

.amount-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #3C70EF;
}

.amount-btn.active {
    background-color: #f0f0f0;
    border-color: #333;
}

.cover-fee-section {
    margin: 20px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3C70EF;
}

.fee-display {
    margin-bottom: 20px;
}

.fee-label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #666;
    text-decoration: underline;
}

.fee-amount {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
    margin-left: 10px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method.active {
    border-color: #3C70EF;
    background-color: #f0f7ff;
}

.payment-method input {
    display: none;
}

.method-icon {
    font-size: 16px;
}

.card-details-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.card-field {
    flex: 1;
}

.card-field.small {
    flex: 0 0 120px;
}

.card-field label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.stripe-field {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.alt-payment-methods {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.alt-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.alt-payment-option input {
    width: 18px;
    height: 18px;
}

.bank-icon {
    font-size: 18px;
}

.gpay-icon {
    font-size: 12px;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
}

.total-section {
    margin: 25px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.total-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
}

.total-amount {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-left: 10px;
}

.fees-page .submit-btn {
    display: block;
    width: auto;
    padding: 12px 30px;
    background-color: #5B7FE1;
    border: none;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fees-page .submit-btn:hover {
    background-color: #3C70EF;
}

.fees-page .submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

.spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.card-errors {
    color: #dc3545;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    margin-top: 10px;
}

.nonprofit-notice {
    margin-top: 30px;
    text-align: center;
}

.nonprofit-notice p {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #666;
}

.thank-you-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.thank-you-message {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: italic;
    color: #B97DFF;
    margin-bottom: 20px;
}

.thank-you-greyhound {
    width: 100px;
    height: auto;
}

/* ==========================================================================
   Payment Success Page Styles
   ========================================================================== */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    margin-bottom: 30px;
}

.success-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 20px;
}

.success-amount {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.success-message {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.success-info {
    background-color: #FAF6FF;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.success-info p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.success-actions .btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.success-actions .btn-primary {
    background-color: #3C70EF;
    color: #fff;
}

.success-actions .btn-primary:hover {
    background-color: #2d5bd0;
}

.success-actions .btn-secondary {
    background-color: #FAF6FF;
    color: #3C70EF;
    border: 2px solid #3C70EF;
}

.success-actions .btn-secondary:hover {
    background-color: #3C70EF;
    color: #fff;
}

@media (max-width: 768px) {
    .fees-content-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    
    .fees-images-column {
        width: 100%;
        flex-direction: row;
    }
    
    .fees-side-image {
        width: 48%;
    }
    
    .card-details-row {
        flex-direction: column;
    }
    
    .card-field.small {
        flex: 1;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

