/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #8FD9BA;
    --light-pink: #B0E6D1;
    --soft-pink: #E8F9F0;
    --dark-pink: #6BB992;
    --text-dark: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --border-color: #D6F0E5;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    background-color: var(--soft-pink);
    padding: 5px 0;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    color: var(--dark-pink);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-pink);
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    letter-spacing: 2px;
    text-align: center;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-pink);
    margin: 8px auto 0;
}

/* Featured Section */
.featured-section {
    margin-bottom: 25px;
}

.featured-post {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
    background-color: var(--soft-pink);
    padding: 15px;
    border-radius: 8px;
}

.post-image {
    overflow: hidden;
    border-radius: 8px;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 10px;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--primary-pink);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    background-color: var(--dark-pink);
    transform: translateY(-2px);
}

/* Posts Grid */
.posts-section {
    margin-bottom: 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.post-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
}

.post-card-image {
    overflow: hidden;
    height: 280px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-content {
    padding: 12px;
}

.post-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.post-card-excerpt {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: var(--soft-pink);
    padding: 15px 0;
    margin-top: 20px;
    border-top: 2px solid var(--primary-pink);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--text-light);
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-card-image {
        height: 250px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-image {
        max-width: 150px;
    }

    .main-nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .post-card-image {
        height: 200px;
    }

    .featured-post {
        padding: 10px;
        gap: 10px;
    }

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

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

    .footer .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-image {
        max-width: 120px;
    }

    .post-card-image {
        height: 150px;
    }

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

    .post-title {
        font-size: 1rem;
    }

    .post-card-title {
        font-size: 0.8rem;
    }

    .post-card-excerpt {
        font-size: 0.65rem;
    }
}
