:root {
    --slate-blue: #708090; 
    --cream: #FFFDD0;     
    --soft-gray: #f4f4f4;
    --white: #ffffff;
    --text-dark: #333333;
    --sage: #9CAF88;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
    padding-top: 80px; /* Adjust this to match your navbar's height */
}

#jesus {
    text-align: center; 
    font-weight: 800; 
    font-size: 2vw;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: var(--slate-blue);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.announcement-bar span {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* --- NAVIGATION --- */
nav {
    background: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--slate-blue);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-blue);
    margin-left: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* -- TEST HAMBURGER NAV -- */
/* NAVBAR BASE STYLES */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    
    /* STICKY LOGIC */
    position: fixed;   /* Locks it to the viewport */
    top: 0;            /* Sticks it to the very top */
    width: 100%;       /* Spans the full width */
    z-index: 1000;     /* Keeps it above all other content */
    
    /* VISUAL POLISH */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Soft shadow for depth */
    box-sizing: border-box; /* Ensures padding doesn't break the width */
}

@media (min-width: 768px) {
    #jesus { 
        font-size: 1.25vw;
    }
}

/* Mobile Tweak: Ensure the dropdown menu also stays fixed */
@media (max-width: 768px) {
    .nav-links {
        position: fixed; /* Keeps the menu fixed to the screen on mobile */
        top: 70px;      /* Adjust to sit right under your sticky bar */
        height: calc(100vh - 70px); /* Optional: make menu full screen height */
        overflow-y: auto;
    }
}

/* HAMBURGER STYLING (Hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #7D746D; /* Your Sage/Taupe color */
    border-radius: 5px;
    transition: 0.3s;
}

/* Animation for the Hamburger to 'X' */

/* 1. The top bar rotates down */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

/* 2. The middle bar disappears */
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

/* 3. The bottom bar rotates up */
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Smooth transition for the spans */
.hamburger span {
    transition: all 0.3s ease-in-out;
}

/* MOBILE RESPONSIVE LOGIC */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Shows hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hides links on mobile initially */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        text-align: center;
        gap: 20px;
    }

    /* This class will be added by JavaScript when clicked */
    .nav-links.active {
        display: flex;
    }
}

/* --- SECTION BASE --- */
.section { 
    padding: 80px 10%; 
    text-align: center; 
}

/* --- HERO --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://images.unsplash.com/photo-1513245533132-aa7f7058274a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 { 
    font-family: 'Playfair Display', 
    serif; font-size: 4rem; 
    margin-bottom: 15px; 
}

.hero p { 
    font-size: 1.2rem; 
    max-width: 700px; 
    margin-bottom: 30px; 
    font-weight: 300; 
}

.cta-button {
    background-color: var(--white);
    color: var(--slate-blue);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.4s;
    border: 1px solid var(--white);
}
.cta-button:hover { 
    background-color: transparent; 
    color: var(--white); 
}

/* --- PHILOSOPHY SECTION --- */
.section { 
    padding: 100px 10%; 
    text-align: center; 
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    margin-top: 50px;
}

.about-text { 
    flex: 1.2; 
}

.about-image {
    flex: 1;
    width: 50%;
    border-radius: 5px;
    box-shadow: 15px 15px 0 var(--slate-blue);
}

h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    color: var(--slate-blue); 
    margin-bottom: 25px; 
}

.accent-text {
    color: var(--slate-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

/* --- PHILOSOPHY PILLARS --- */
.pillars { 
    background-color: var(--soft-gray); 
}

.pillar-cards { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px; margin-top: 50px; 
}

.pillar { 
    background: var(--white); 
    padding: 50px 30px; 
    border-bottom: 4px solid var(--cream); 
    transition: 0.3s; 
}

.pillar:hover { 
    transform: translateY(-5px); 
    border-bottom-color: var(--slate-blue); 
}

.pillar h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--slate-blue); 
    margin-bottom: 15px; 
}

/* --- CURRENT KITTEN PARENTS --- */
.parent-name a,
.pairing-title a {
    text-decoration: none;
    color: var(--slate-blue);
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pairing-title a {
    margin-left: 2vw;
}

.parent-name a:hover,
.pairing-title a:hover {
    font-size: 2.5vw;
}

.and {
    color: var(--slate-blue);
    font-size: 2vw;
    align-self: center;
    justify-self: center;
    margin-left: 1vw;
    margin-right: 0;
}

.parents-showcase {
    padding: 60px 10%;
    background-color: #FDF8F8; /* Soft nursery blush */
    text-align: center;
    border-bottom: 2px dashed #F2E5E5;
}

.parents-header {
    margin-bottom: 40px;
}

.parents-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #7D746D;
}

.parents-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.parent-profile {
    background: white;
    padding: 15px;
    border-radius: 100px 100px 20px 20px; /* Elegant arched look */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 280px;
    transition: 0.3s;
}

.parent-profile:hover {
    transform: translateY(-5px);
}

.parent-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #E5C3C6;
}

.parent-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parent-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #9CAF88; /* Sage Green */
    margin-bottom: 5px;
}

.parent-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E5C3C6;
    font-weight: 700;
}

.parent-desc {
    font-size: 0.85rem;
    color: #888;
    padding: 0 10px 15px;
    line-height: 1.4;
}

.heart-divider-small {
    color: #E5C3C6;
    font-size: 1.2rem;
    margin: 20px 0;
}

/* --- CURRENT KITTEN GALLERY --- */
.nursery-gallery {
    text-align: center;
}

/* The Grid Layout (2 columns for desktop) */
.nursery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
}

/* The Card */
.kitten-card {
    background: #fff;
    border: 1px solid #F2E5E5;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.striped-text {
    background: linear-gradient(45deg, black, silver, black, silver, black);
    -webkit-background-clip: text;
    color: transparent;
}

/* Centering the 2 different photo shapes */
.photo-container {
    display: flex;
    justify-content: center; /* Centers photos horizontally */
    align-items: center;     /* Centers photos vertically against each other */
    gap: 10px;               /* Space between wide and tall pic */
    padding: 15px;
    background: #fdfbfb;     /* Very light blush background to frame pics */
    height: 500px;           /* Fixed height keeps all cards uniform */
}

/* The Wide Pic */
.pic-wide {
    width: 50%;              /* Takes up a bit more width */
    height: auto;
    max-height: 450px;       /* Keeps it from getting too tall */
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* The Tall Pic */
.pic-tall {
    width: 50%;              /* Narrower to show the full body */
    height: 100%;            /* Fills the height of the container */
    max-height: 750px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Info Section underneath */
.kitten-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #F2E5E5;
}

.kitten-info h3 { 
    font-family: 'Playfair Display', serif; 
    color: #7D746D; 
    margin-bottom: 5px; 
}

.status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 10px 0;
}

.status.available { 
    background: rgb(69, 106, 14);
    color: white;
} 

.status.hold {
    background: #E5C3C6; /* Rose */
    color: white; 
    
}
.status.reserved { 
    background: maroon; 
    color: white;
}

/* Mobile: Stack cards in 1 column */
@media (max-width: 768px) {
    .nursery-grid { 
        grid-template-columns: 1fr; 
    }

    .photo-container { 
        height: 250px; /* Slightly shorter for phones */
    } 
}

/* -- FUTURE LITTERS -- */
.future-litters {
    padding: 80px 10%;
    background-color: #fffafa; /* Light cream */
    text-align: center;
}

.breeding-card {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 40px rgba(229, 195, 198, 0.3);
    flex-wrap: wrap;
}

.parents-visual {
    flex: 1;
    display: flex;
    background: #f2e5e5;
    min-width: 300px;
    position: relative;
}

.parent-img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s;
}

.parent-img:hover { 
    transform: scale(1.05); 
    z-index: 2; 
}

.parent-name a,
.pairing-title a {
    font-size: 2rem;
}

.breeding-info {
    flex: 1;
    padding: 50px;
    text-align: left;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.season-badge {
    background: #9CAF88; /* Sage */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.pairing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #7D746D;
    margin: 0 0 10px 0;
}

.expected-colors {
    color: #E5C3C6;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.waitlist-btn {
    background: #7D746D;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

.waitlist-btn:hover { 
    background: #E5C3C6; 
}

/* -- OUR ADULTS -- */
/* Container for the whole section */
.adults-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: #7D746D;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* THE GRID SYSTEM */
.adults-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
    gap: 20px; /* Generous space between cards */
}

/* Individual Adult Card */
.adult-card {
    display: flex;
    flex-direction: column; /* Stacks image and text vertically */
    align-items: center;    /* Centers everything horizontally */
    text-align: center;     /* Centers the text under the photo */
    padding: 20px;          /* Adds some "breathing room" around the small pic */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #F2E5E5; /* Light Rose border */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.adult-card:hover {
    transform: translateY(-5px); /* Gentle lift when hovering */
}

.adult-photo {
    align-content: center;
}

.adult-photo img {
    display: block;
    margin: 0 auto;         /* The classic centering trick */
    max-width: 100%;        /* Keeps it from breaking the card */
    height: auto;           /* Maintains the kitten's proportions */
    border-radius: 10px;    /* Optional: keeps those corners soft */
    max-width: 250px;
    max-height: 400px;
    object-fit: fill;
    display: block;
    align-self: center;
}

/* Info Section Below Photo */
.adult-info {
    padding: 25px;
    background: white;
}

.adult-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #7D746D;
    margin: 0;
}

.adult-title {
    color: #E5C3C6; /* Rose Pink */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 5px 0 15px;
}

.adult-details {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* MOBILE FIX: Stacks to 1 column so photos don't get squished */
@media (max-width: 850px) {
    .adults-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
}

/* --- POLICIES SECTION --- */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 50px;
}

.policy-card {
    background-color: var(--soft-gray);
    padding: 35px;
    border-radius: 4px;
}

.policy-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--slate-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* --- PAYMENT SECTION --- */
.payment-section {
    padding: 100px 10%;
    background-color: var(--soft-gray);
    text-align: center;
}

.payment-container {
    max-width: 900px;
    margin: 40px auto 0;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-top: 30px;
}

.payment-method h3 {
    font-family: 'Playfair Display', serif;
    color: #9CAF88; /* Sage */
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-style: italic;
}

.method-list {
    list-style: none;
    padding: 0;
}

.method-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #7D746D;
    display: flex;
    align-items: center;
}

.method-list li::before {
    content: "•";
    color: #E5C3C6; /* Rose */
    margin-right: 10px;
    font-weight: bold;
}

.notice {
    grid-column: 1 / -1;
    background-color: rgb(228, 235, 247); /* Very soft highlight */
    padding: 25px;
    border-left: 4px solid var(--slate-blue); /* accent */
    margin-top: 10px;
}

.important-notice {
    grid-column: 1 / -1;
    background-color: #FFFDF0; /* Very soft highlight */
    padding: 25px;
    border-left: 4px solid #E5C3C6; /* Rose accent */
    margin-top: 10px;
}

.notice h4,
.important-notice h4 {
    color: #7D746D;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.notice p,
.important-notice p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.cash-highlight {
    color: #9CAF88;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .payment-grid { grid-template-columns: 1fr; }
    .payment-container { padding: 30px; }
}

/* --- LINKS SECTION --- */
.custom-hub-section {
        padding: 80px 10%;
        text-align: center;
        background-color: #F9F7F2; /* Warm Sand */
    }

.hub-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #9CAF88; /* Sage */
    margin-bottom: 10px;
    font-weight: 400;
    font-style: italic;
}

.hub-subtitle {
    color: #E5C3C6; /* Rose */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 30px;
}

.links-wrapper {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.boutique-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 20px 35px;
    text-decoration: none;
    color: #7D746D; /* Taupe */
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(156, 175, 136, 0.2);
}

.boutique-button:hover {
    background-color: #ffffff;
    border-color: #9CAF88;
    color: #9CAF88;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(156, 175, 136, 0.1);
}

.boutique-button span.arrow {
    color: #E5C3C6; /* Rose */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.boutique-button:hover span.arrow {
    transform: translateX(5px);
}

/* --- FOOTER --- */
footer { 
    background: var(--text-dark); 
    color: var(--white); 
    padding: 60px 10% 40px; 
    text-align: center; 
}

.footer-contact { 
    margin: 20px 0; 
    font-size: 0.9rem; 
    line-height: 1.8; 
}

.footer-contact a { 
    color: var(--cream); 
    text-decoration: none; 
}

.social-links { 
    margin-bottom: 25px; 
}

.social-links a { 
    color: var(--white); 
    text-decoration: none; 
    margin: 0 15px; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    opacity: 0.7; 
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 50px 5%; }
}
