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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ccc;
}

header {
    background: #3a5987;
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.header-text {
    flex: 1;
    text-align: left;
}

.header-image {
    flex-shrink: 0;
    order: -1;
}

.header-photo {
    width: 280px;
    height: 200px;
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
}

.header-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 600;
}

nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #3a5987;
    font-weight: 600;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    background: #3a5987;
    color: white;
}

.hidden {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/*
    .page {
        display: none;
        animation: fadeIn 0.5s;
    }

    .page.active {
        display: block;
    }
*/

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex-shrink: 0;
}

.hero-photo {
    width: 300px;
    height: 240px;
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transform: rotate(2deg);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero h2 {
    font-family: 'Fredoka', sans-serif;
    color: #3a5987;
    font-size: 2.2rem;
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 1.5rem;
    p {
        font-size: 16px;
    }
}

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

#boys {
    .card {
        width: 100%;
        max-width: 550px;
    }
}

.card-img {
    width: 100%;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card-content {
    margin-top: 1.5rem;
    background-color: #fff;
}

.card-content h3 {
    font-family: 'Fredoka', sans-serif;
    color: #3a5987;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.card-content .breed {
    display: inline-block;
    background: #ccc;
    color: #3a5987;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.deposit-tag {
    display: inline-block;
    background: #3a5987;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.price-tag {
    background: #7a9b6f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

.info-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-section h3 {
    font-family: 'Fredoka', sans-serif;
    color: #3a5987;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-section h4 {
    font-family: 'Fredoka', sans-serif;
    color: #3a5987;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

.info-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.info-section li {
    margin-bottom: 0.5rem;
}

.pups {
    .card-img {
        width: 100%;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        img {
            width: 100%;
        }
    }
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.color-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.color-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    &.white {
        background-image: url("./img/colors/white.webp");
    }
    &.black {
        background-image: url("./img/colors/black.webp");
    }
    &.cream {
        background-image: url("./img/colors/cream.jpeg");
    }
    &.red {
        background-image: url("./img/colors/red.jpg");
    }
    &.golden {
        background-image: url("./img/colors/golden.webp");
    }
    &.silveragouti {
        background-image: url("./img/colors/silveragouti.jpeg");
    }
    &.goldenagouti {
        background-image: url("./img/colors/goldenagouti.jpg");
    }
    &.tortoiseshell {
        background-image: url("./img/colors/tortoiseshell.jpeg");
    }
    &.brindle {
        background-image: url("./img/colors/brindle.jpg");
    }
    &.blackroan {
        background-image: url("./img/colors/blackroan.jpg");
    }
    &.redroan {
        background-image: url("./img/colors/redroan.webp");
    }
    &.dalmation {
        background-image: url("./img/colors/dalmation.avif");
    }
    &.himalayan {
        background-image: url("./img/colors/himalayan.jpg");
    }
    &.californian {
        background-image: url("./img/colors/californian.webp");
    }
    &.blackbroken {
        background-image: url("./img/colors/blackbroken.jpg");
    }
    &.redbroken {
        background-image: url("./img/colors/brokenred.jpg");
    }
}

.color-name {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #3a5987;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-of-type {
    margin: 0;
}

.contact-item strong {
    color: #3a5987;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin-left: 0;
    font-size: 1.05rem;
}

.atlanta-photo {
    margin-top: 2rem;
}

.breeder-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.breeder-info {
    padding: 1.5rem;
    text-align: center;
}

.breeder-info h3 {
    font-family: 'Fredoka', sans-serif;
    color: #3a5987;
    margin-bottom: 1rem;
    font-weight: 600;
}

#notavailable {
    h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .text {
        font-size: 1.2rem;
        margin-bottom: 2rem
    }
    .lastupdated {
        color: #8b6f47;
        font-style: italic;
    }
}

footer {
    background: #3a5987;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

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

    nav a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        text-align: center;
    }

    .header-photo {
        width: 240px;
        height: 180px;
    }

    .hero {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-photo {
        width: 250px;
        height: 250px;
    }
}