@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.875;
    color: rgb(45, 45, 45);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header and Navigation */
.navbar {
    background-color: transparent;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 150px;
    gap: 40px;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgb(45, 45, 45);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 10px 0;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7F6598;
}

.social-links a {
    display: inline-block;
    margin-left: 10px;
}

.social-links img {
    width: 24px;
    height: 24px;
}

/* Main Content */
main {
    margin-top: 0;
    min-height: calc(100vh - 320px);
}

/* Hero Section */
.hero {
    background: #ffffff;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 80px 20px;
    position: relative;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-dot.active,
.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 250px;
        margin-bottom: 20px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: #7F6598;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    line-height: 1.25em;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: rgb(45, 45, 45);
    margin-bottom: 60px;
    font-style: italic;
    font-weight: 400;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-image-item {
    width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.875em;
    margin-bottom: 20px;
    color: rgb(45, 45, 45);
    text-align: center;
}

/* Page Content */
.page-content {
    padding: 20px 20px;
    background: #ffffff;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: rgb(24, 24, 24);
    letter-spacing: normal;
    line-height: 54px;
}

/* Purple titles for Terms and Contact pages */
.page-content .content-container h1 {
    color: #7F6598 !important;
}

/* More specific selectors for individual pages */
.contact-page .content-container h1,
.terms-page .content-container h1 {
    color: #7F6598 !important;
}

/* About Page */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 60px 40px;
    color: white;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-story {
    max-width: 600px;
    margin: 0 auto;
}

.about-story p {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.about-story p.highlight {
    font-size: 24px;
    font-weight: 600;
    color: white;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    border-left: 4px solid #7F6598;
    border-right: 4px solid #7F6598;
    background: rgba(127, 101, 152, 0.2);
    border-radius: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero {
        min-height: 80vh;
    }

    .about-hero-content {
        padding: 40px 20px;
    }

    .about-hero-content h1 {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .about-story p {
        font-size: 18px;
        line-height: 1.6;
    }

    .about-story p.highlight {
        font-size: 20px;
        padding: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 70vh;
    }

    .about-hero-content {
        padding: 30px 15px;
    }

    .about-hero-content h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .about-story p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-story p.highlight {
        font-size: 18px;
        padding: 12px;
        margin-top: 25px;
    }
}

/* Cats Page */
.intro-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: transparent;
    border-radius: 0;
    border: none;
}

.intro-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.875;
    color: rgb(24, 24, 24);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cats-section {
    margin-bottom: 40px;
}

.cat-profile {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    position: static;
    overflow: visible;
}

.cat-profile::before {
    display: none;
}

.cat-profile:hover {
    transform: none;
    box-shadow: none;
}

.cat-profile.reverse {
    flex-direction: row-reverse;
}

.cat-profile img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: 30% 50%;
    border-radius: 25px;
    box-shadow: none;
    transition: none;
    position: relative;
    flex: 1;
    min-width: 0;
}

.cat-profile:hover img {
    transform: none;
}

.cat-info {
    background: rgba(128, 128, 128, 0.8);
    backdrop-filter: blur(5px);
    padding: 30px 40px;
    border-radius: 12px;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    text-align: center;
}

.cat-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: normal;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cat-info .breed {
    font-family: 'Didot', 'Playfair Display', serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cat-info p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cat-info p strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.breeding-info {
    text-align: center;
    margin: 40px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.breeding-info p {
    font-size: 15px;
    color: rgb(24, 24, 24);
    font-style: italic;
    line-height: 1.875;
}

.neutered-section {
    background: transparent;
    padding: 40px 0;
    border-radius: 0;
    margin-top: 40px;
    border: none;
}

.neutered-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
    color: rgb(24, 24, 24);
    letter-spacing: normal;
}

.neutered-section > p {
    text-align: center;
    font-size: 15px;
    color: rgb(24, 24, 24);
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.875;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.neutered-cats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1020px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cat-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
    transition: none;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.cat-card::before {
    display: none;
}

.cat-card:hover {
    transform: none;
    box-shadow: none;
}

.cat-card img {
    width: 500px;
    height: 580px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 0;
    box-shadow: none;
    transition: none;
    display: block;
}

.cat-card:hover img {
    transform: none;
}

.cat-card .cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    padding: 12px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 0 0 15px 15px;
}

.cat-card h3 {
    display: block; /* Show cat name on image */
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.cat-card .breed {
    display: block; /* Show breed on image */
    font-family: 'Didot', 'Playfair Display', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cat-card p {
    display: block; /* Show description text on image */
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 5px;
    margin-bottom: 0;
}

.cat-card p strong {
    display: block; /* Show birth info on image */
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 4px;
}

/* Responsive Cats Page */
@media (max-width: 768px) {
    .cat-profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0;
        align-items: center;
    }

    .cat-profile.reverse {
        flex-direction: column;
    }

    .cat-profile img {
        width: 100%;
        max-width: 400px;
        height: 300px;
        object-fit: cover;
        object-position: 30% 50%;
        border-radius: 20px;
    }

    .cat-info {
        background: rgba(128, 128, 128, 0.8);
        padding: 20px 25px;
        border-radius: 12px;
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cat-info h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cat-info .breed {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cat-info p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .cat-info p strong {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .neutered-section {
        padding: 30px 0;
        margin-top: 30px;
    }

    .neutered-section h2 {
        font-size: 32px;
    }

    .neutered-cats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        max-width: 400px;
    }

    .cat-card img {
        width: 400px;
        height: 480px;
        border-radius: 12px;
    }

    .cat-card .cat-info {
        padding: 12px 15px;
        align-items: center;
    }

    .cat-card h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .cat-card .breed {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .cat-card p strong {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .cat-card p {
        font-size: 11px;
        line-height: 1.2;
        margin-top: 3px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .cat-profile {
        padding: 0;
    }

    .cat-profile img {
        width: 100%;
        max-width: 300px;
        height: 250px;
        object-fit: cover;
        object-position: 30% 50%;
        border-radius: 18px;
    }

    .cat-info h2 {
        font-size: 20px;
    }

    .cat-info .breed {
        font-size: 16px;
    }

    .neutered-section {
        padding: 20px 0;
    }

    .neutered-section h2 {
        font-size: 28px;
    }

    .cat-card {
        padding: 0;
    }

    .cat-card img {
        width: 320px;
        height: 400px;
        border-radius: 10px;
    }

    .neutered-cats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 320px;
    }

    .cat-card .cat-info {
        padding: 10px 12px;
        align-items: center;
    }

    .cat-card h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .cat-card .breed {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .cat-card p strong {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .cat-card p {
        font-size: 10px;
        line-height: 1.2;
        margin-top: 2px;
    }
}

/* Kittens Page */
.kitten-info p {
    font-family: 'Ubuntu Sans', sans-serif;
    font-size: 14px;
    line-height: 30px;
    color: rgb(45, 45, 45);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.availability {
    text-align: center;
    margin-top: 60px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.availability p {
    font-family: 'Ubuntu Sans', sans-serif;
    font-size: 14px;
    line-height: 30px;
    color: rgb(45, 45, 45);
    font-weight: 400;
    text-decoration: underline;
}

/* Gallery Page */
.gallery-grid {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0; /* Allow columns to shrink */
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    height: auto;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    display: block;
    width: 100% !important;     /* lock width to column */
    height: auto !important;    /* let height adjust to preserve aspect ratio */
    max-width: 100%;
    aspect-ratio: auto !important;  /* explicitly avoid forcing 1/1 squares */
    object-fit: contain !important;  /* scale without cropping if constraints apply */
}

/* Terms Page */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content p,
.terms-content li {
    font-family: 'Ubuntu Sans', sans-serif;
    font-size: 14px;
    line-height: 30px;
    color: rgb(45, 45, 45);
    margin-bottom: 20px;
}

.terms-content h3 {
    font-family: 'Ubuntu Sans', sans-serif;
    font-size: 16px;
    color: rgb(24, 24, 24);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.terms-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.terms-content li {
    margin-bottom: 10px;
}

/* Contact Page */
.contact-page .content-container {
    max-width: 1104px;
    padding: 0 80px;
}

.contact-content {
    display: flex;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-info {
    flex: 0 0 auto;
    width: 460px;
    padding-right: 40px;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #7F6598;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.contact-info p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgb(45, 45, 45);
    margin-bottom: 15px;
    text-align: center;
}

.contact-details {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.contact-details p {
    margin-bottom: 10px;
    text-align: center;
}

.contact-details a {
    color: #7F6598;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details .social-links {
    text-align: center;
    margin-top: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 460px;
}

.contact-form input {
    width: 460px;
    height: 42px;
    padding: 3px 3px 3px 12px;
    border: none;
    border-bottom: 1px solid rgb(24, 24, 24);
    border-radius: 0;
    font-size: 15px;
    font-family: 'raleway', sans-serif;
    background-color: rgba(255, 255, 255, 0);
    color: rgb(24, 24, 24);
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    width: 460px;
    height: 126px;
    padding: 11.25px 10px 3px 16px;
    border: none;
    border-bottom: 1px solid rgb(24, 24, 24);
    border-radius: 0;
    font-size: 15px;
    font-family: 'raleway', sans-serif;
    background-color: rgba(255, 255, 255, 0);
    color: rgb(24, 24, 24);
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #7F6598;
}

.contact-form button {
    width: 460px;
    height: 50px;
    background-color: rgb(24, 24, 24);
    color: rgb(255, 255, 255);
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 13.3333px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 400;
    text-align: left;
}

.contact-form button:hover {
    background-color: #333;
}

.contact-image {
    flex: 0 0 auto;
    width: 552px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: rgb(45, 45, 45);
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(45, 45, 45, 0.1);
}

.footer-content {
    max-width: 1020px;
    margin: 0 auto;
}

.footer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    margin: 20px 0;
}

.footer-content h2 a {
    color: rgb(45, 45, 45);
    text-decoration: none;
}

.footer-content h2 a:hover {
    color: #7F6598;
}

.footer-content p {
    font-family: 'Raleway', sans-serif;
    color: rgb(45, 45, 45);
    font-size: 14px;
    line-height: 1.79em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 48px;
        line-height: 60px;
    }
    
    .subtitle {
        font-size: 16px;
    }

    .hero-images {
        gap: 15px;
    }

    .hero-image-item {
        width: 200px;
        height: 200px;
    }
    
    .content-container h1 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .cat-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .cat-profile.reverse {
        flex-direction: column;
    }
    
    .cat-profile img {
        width: 250px;
        height: 250px;
    }
    
    .neutered-cats {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-column {
        gap: 10px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .contact-info {
        width: 100%;
        max-width: 460px;
        padding-right: 0;
    }

    .contact-image {
        width: 100%;
        max-width: 460px;
        align-self: center;
    }

    .contact-image img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
        line-height: 48px;
    }
    
    .content-container h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }
    
    main {
        margin-top: 70px;
    }
    
    .hero {
        min-height: 500px;
        padding: 60px 15px;
    }
    
    .page-content {
        padding: 15px 15px;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-image-item {
        width: 250px;
        height: 250px;
    }
}