/* Cougar Bunnies - Playful MILF/Cougar Style */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@400;600;700&display=swap');

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

:root {
    --pink: #ff69b4;
    --pink-light: #ffb6d9;
    --pink-dark: #d63384;
    --leopard-1: #f5deb3;
    --leopard-2: #8b4513;
    --leopard-3: #d2691e;
    --white: #ffffff;
    --bg-light: #fff5f8;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: #333;
    line-height: 1.7;
    font-size: 16px;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,182,217,0.03) 10px, rgba(255,182,217,0.03) 20px);
}

header {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 6px solid var(--leopard-2);
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.logo h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0 var(--leopard-2);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

nav {
    background: var(--white);
    border-bottom: 3px solid var(--pink);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: var(--pink-light);
    color: var(--white);
}

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

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border: 4px solid var(--pink);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.hero h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--pink-dark);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.cta-button:hover {
    background: var(--pink-dark);
    transform: translateY(-3px) scale(1.05);
}

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

.card {
    background: var(--white);
    border: 3px solid var(--pink);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 25px rgba(255, 105, 180, 0.3);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 4px solid var(--pink);
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.4rem;
    color: var(--pink-dark);
    margin-bottom: 1rem;
}

.card p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--pink-dark);
    transform: scale(1.05);
}

footer {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 6px solid var(--leopard-2);
    margin-top: 4rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
}

.sidebar {
    background: var(--white);
    border: 3px solid var(--pink);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.sidebar h3 {
    color: var(--pink-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--pink);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 0.7rem 0;
    border-bottom: 2px dashed var(--pink-light);
}

.sidebar a {
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar a:hover {
    color: var(--pink);
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
}

.post-content {
    background: var(--white);
    padding: 2rem;
    border: 3px solid var(--pink);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.post-content h1, .post-content h2 {
    color: var(--pink-dark);
    margin-bottom: 1rem;
}

.post-content h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
}

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

.gallery-item {
    border: 3px solid var(--pink);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.pagination a {
    padding: 0.8rem 1.8rem;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--pink-dark);
    transform: scale(1.1);
}
