:root {
    --primary-color: #641b91;
    --secondary-color: #f7d794;
    --text-color: #333;
    --bg-color: #f4f4f4;
    --card-bg: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

#hero {
    background: url('https://images.unsplash.com/photo-1543870634-8c08280f9754?q=80&w=1742&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

#hero h2 {
    font-size: 3em;
    font-family: 'Playfair Display', serif;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #f1c40f;
}

section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.photo-gallery {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kitten-card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.kitten-card:hover {
    transform: translateY(-10px);
}

.kitten-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.kitten-card-content {
    padding: 20px;
}

.kitten-card-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

footer {
    background: var(--text-color);
    color: white;
    text-align: center;
    padding: 20px 0;
}
