/* General Styles */
:root {
    --primary-color: #A8DADC; /* Pastel Green */
    --secondary-color: #F4A261; /* Pastel Orange */
    --tertiary-color: #457B9D; /* Pastel Blue */
    --hover-color: #FFE8D6; /* Light Pastel Orange */
    --background-color: #F1FAEE; /* Light Background */
    --grid-color: #457B9D;
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--tertiary-color);
}

/* Header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--tertiary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: var(--hover-color);
}

/* Breadcrumb */
.breadcrumb {
    padding: 10px 20px;
    background-color: var(--primary-color);
    border-radius: 5px;
    margin: 10px auto;
    max-width: 1200px;
    font-size: 0.9rem;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--tertiary-color);
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content {
    background: white;
    border: 2px dotted var(--grid-color);
    padding: 30px;
    border-radius: 10px;
    flex: 2;
    line-height: 1.8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sidebar {
    background: var(--hover-color);
    padding: 20px;
    border-radius: 10px;
    border: 2px dotted var(--grid-color);
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Sections */
.sidebar h3 {
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar ul li {
    margin: 5px 0;
}

.social-links a {
    display: inline-block;
    margin: 5px;
    color: var(--tertiary-color);
    text-decoration: none;
}

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

/* Buttons */
.print-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: var(--tertiary-color);
    color: white;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.print-button:hover {
    background: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--tertiary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: var(--primary-color);
}
