/* ============================================
   Style & Space Media — Shared Stylesheet
   ============================================ */

:root {
    --pink: #e8a0b4;
    --pink-light: #f5d5dd;
    --pink-dark: #d4728a;
    --gray-light: #f5f3f0;
    --gray: #e8e4df;
    --text-dark: #2d2d2d;
    --text-medium: #555;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray-light);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Decorative line accents */
.line-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.3;
    pointer-events: none;
}

.line-accent svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 243, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--pink-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--pink-dark);
    font-style: italic;
}

.hero .tagline {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero .intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero .flags {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--pink-dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 114, 138, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 114, 138, 0.4);
    background: #c5607a;
}

/* ============================================
   Sections (shared)
   ============================================ */
section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--pink-dark);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-medium);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--pink-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-text .greeting {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-text .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 2rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* ============================================
   Journey Cards
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 100%);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--pink-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card .highlight {
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   Mission Section
   ============================================ */
.mission {
    background: linear-gradient(135deg, var(--pink-light) 0%, white 50%, var(--gray-light) 100%);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-content .vision {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-style: italic;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.features-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.features-list li::before {
    content: '♡';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
}

/* ============================================
   Social / Connect Section
   ============================================ */
.social {
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.social h2 {
    color: white;
}

.social p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--pink);
}

/* ============================================
   Blog — Card Grid (blog listing page)
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-cover {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink) 100%);
}

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

.blog-card-body {
    padding: 1.75rem;
}

.blog-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink-dark);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-medium);
}

/* ============================================
   Blog — Listing Page Header
   ============================================ */
.blog-listing-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-light) 0%, white 100%);
}

.blog-listing-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--pink-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.blog-listing-header p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.blog-listing-body {
    padding: 4rem 2rem;
}

/* ============================================
   Blog — Individual Post Page
   ============================================ */
.post-cover-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.post-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-light) 0%, white 100%);
}

.post-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink-dark);
    margin-bottom: 1rem;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.post-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.post-body p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.post-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--pink-dark);
    font-style: italic;
    margin: 2.5rem 0 1rem;
}

.post-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 2rem 0 0.75rem;
}

.post-body blockquote {
    border-left: 4px solid var(--pink-dark);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--pink-light);
    border-radius: 0 15px 15px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.post-body ul,
.post-body ol {
    padding-left: 2rem;
    margin-bottom: 1.75rem;
    color: var(--text-medium);
}

.post-body li {
    padding: 0.3rem 0;
    line-height: 1.7;
}

.post-body img {
    width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: gap 0.2s ease;
}

.back-to-blog:hover {
    gap: 0.75rem;
}

/* ============================================
   Blog — Homepage Preview Strip
   ============================================ */
.blog-preview-section {
    background: white;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.view-all-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    border: 2px solid var(--pink-dark);
    color: var(--pink-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--pink-dark);
    color: white;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
    max-width: 420px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid var(--gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--gray-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--pink-dark);
    box-shadow: 0 0 0 3px rgba(212, 114, 138, 0.15);
    background: white;
}

.form-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--pink-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 114, 138, 0.3);
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: #c5607a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 114, 138, 0.4);
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gray-light);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--gray);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .post-header {
        padding: 6rem 1.5rem 3rem;
    }

    .post-body {
        padding: 3rem 1.5rem;
    }

    .blog-listing-header {
        padding: 6rem 1.5rem 3rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}
