/* Elite Oriental Kittens - Premium Breeder Website Styles */

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #000000;
    --text-dark: #000000;
    --text-light: #000000;
    --bg-light: #ffffff;
    --bg-cream: #ffffff;
    --white: #ffffff;
    --border-color: #dddddd;
    --success-color: #000000;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: transform;
    contain: layout style paint;
}

.header-top {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border-color);
}

.header-top a {
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.95;
}

.header-top a:hover {
    opacity: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-text .logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    background: #f0f0f0;
    border: 2px solid #000000;
    font-size: 2rem;
    cursor: pointer;
    color: #000000;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 4px;
}

.mobile-menu-toggle:hover {
    background: #e0e0e0;
}

.mobile-menu-toggle:active {
    background: #d0d0d0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero .jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 5% 100px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #e3f2fd;
    color: #000000;
    padding: 13px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    background-color: #bbdefb;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #d1d9e0;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* State Links */
.state-link {
    display: block;
    padding: 10px 16px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-align: center;
}

.state-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.state-link:active {
    transform: translateY(0);
}

/* Kitten Cards */
.kitten-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.kitten-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #edf2f7, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.kitten-info {
    padding: 1.5rem;
}

.kitten-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.kitten-details {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.kitten-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-available {
    background-color: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

.status-reserved {
    background-color: #fff8e1;
    color: #7d6608;
    border: 1px solid #ffe69c;
}

.status-adopted {
    background-color: #fce8e8;
    color: #8b2e2e;
    border: 1px solid #f5c6cb;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
    padding: 60px 5%;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Testimonials */
.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Footer */
footer {
    background-color: #e3f2fd;
    color: #000000;
    padding: 40px 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1976d2;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

/* Image Text Sections */
.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.image-text-section.reverse {
    direction: rtl;
}

.image-text-section.reverse > * {
    direction: ltr;
}

.image-text-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.image-text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.image-text-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .image-text-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .image-text-section.reverse {
        direction: ltr;
    }

    .image-text-image img {
        height: 300px;
    }

    .image-text-content h3 {
        font-size: 1.5rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 3%;
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 2px solid #000000;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        color: #000000;
        text-decoration: none;
        border-bottom: 1px solid #eeeeee;
    }

    .nav-links a:hover {
        background-color: #f5f5f5;
    }

    /* Hero Section */
    .hero {
        padding: 80px 5% 60px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cta-secondary {
        margin-left: 0 !important;
        margin-top: 0;
    }

    /* Container and Sections */
    .container {
        padding: 2rem 3%;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Grids */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* State Buttons */
    .state-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .state-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Cards */
    .card {
        margin-bottom: 1rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    /* Kitten Cards */
    .kitten-card {
        margin-bottom: 1.5rem;
    }

    .kitten-image {
        height: 250px;
        font-size: 2rem;
    }

    .kitten-info {
        padding: 1.25rem;
    }

    .kitten-name {
        font-size: 1.3rem;
    }

    /* Feature Boxes */
    .feature-box {
        padding: 1.25rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 1rem;
    }

    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Contact Form Grid - Mobile */
    form div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Typography */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Padding adjustments for full-width sections */
    .section[style*="padding: 60px 5%"] {
        padding: 2rem 3% !important;
    }

    /* Text alignment for mobile */
    .section p {
        text-align: left;
    }

    /* Button spacing */
    .cta-button + .cta-button {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Extra small devices (phones in portrait, less than 576px) */
@media (max-width: 576px) {
    .hero {
        padding: 60px 5% 50px;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

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

    .section-title {
        font-size: 1.4rem;
    }

    .container {
        padding: 1.5rem 4%;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .state-button {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }

    /* Grids - Mobile */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

