/* Variables for easy adjustments */
:root {
    --bg-color: #ffffff;
    --text-color: #2d2d2d; /* Dark charcoal */
    --accent-color: #555555;
    --link-color: #0070f3;
    --max-width: 800px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--accent-color);
    margin: 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--text-color);
}

/* Blog Post */
.post {
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.post-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.post-date {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
}

.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.2;
    margin:20px 0 !important;
}


.post-title a {color:#444;text-decoration:none !important;}
.post-title a:hover {color:#666;text-decoration:none !important;border-bottom:2px double #666;}

.post-content p, .post-content ul{
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.post-content ul li {
    margin-bottom: .5rem;
    margin-left:25px;
    font-size: 1.15rem;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--text-color);
    color: var(--accent-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .logo { font-size: 2rem; }
    .post-title { font-size: 2.2rem; }
    .site-header { padding: 2rem 0; }
}

      
.edit-wp-button {position:fixed;bottom:50px;right:50px;display: flex;         /* Enables Flexbox */
  gap: 20px;            /* The magic property for 20px spacing */
  align-items: center;   /* Keeps them vertically aligned if one is taller */}


.edit-wp-button a {
  /* Layout & Shape */
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px; /* Rounded pill shape */
  
  /* Typography */
  font-weight: 700;
  text-decoration: none;
  font-family: sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;

  /* Colors */
  background-color: #444;
  color: #ffffff;
  
  /* Interactions */
  transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Hover State */
.edit-wp-button a:hover {
  background-color: #111;
  transform: translateY(-2px); /* Lifts the button up slightly */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Active State (When clicked) */
.edit-wp-button a:active {
  transform: translateY(0);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}