/* Model Joanne - Personal Portfolio Style */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

:root {
    --teal: #008080;
    --teal-light: #20c9c9;
    --teal-dark: #006666;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dark: #a0a0a0;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --text-dark: #333333;
    --text-medium: #666666;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

header {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 5px solid var(--silver);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver-light);
}

nav {
    background: var(--white);
    border-bottom: 2px solid var(--silver);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    background: var(--gray-light);
    border-bottom-color: var(--teal);
}

nav a.active {
    border-bottom-color: var(--teal);
    background: var(--gray-light);
}

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

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    border: 1px solid var(--silver-light);
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--teal-dark);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,128,128,0.3);
}

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

.card {
    background: var(--white);
    border: 1px solid var(--silver-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: var(--silver);
}

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

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: 2px solid var(--teal);
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--teal);
    color: var(--white);
}

footer {
    background: var(--teal-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 5px solid var(--silver);
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--silver-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--silver);
}

.sidebar {
    background: var(--white);
    border: 1px solid var(--silver-light);
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--teal-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--teal);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--silver-light);
}

.sidebar a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav a {
        border-bottom: 1px solid var(--silver-light);
        border-left: 3px solid transparent;
    }

    nav a:hover {
        border-bottom-color: transparent;
        border-left-color: var(--teal);
    }

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

.post-content {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--silver-light);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.post-content h1, .post-content h2, .post-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--teal-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-content h1 {
    font-size: 2.5rem;
}

.post-content h2 {
    font-size: 2rem;
}

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

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

blockquote {
    background: var(--gray-light);
    border-left: 4px solid var(--teal);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-medium);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--silver-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--teal);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.pagination a {
    padding: 0.7rem 1.5rem;
    background: var(--white);
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--teal);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--teal);
    color: var(--white);
}

.profile-section {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--silver-light);
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--teal);
    margin-bottom: 1.5rem;
}

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

.stat-item {
    background: var(--gray-light);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--silver-light);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}
