/* =====================================
   CSS Zen Garden - Custom Style
   ===================================== */

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

/* Body */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    background: #f4f7f9;
    color: #333;
}

/* Main wrapper */
/* .page-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    padding: 30px;
} */
 .page-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 30px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c7a7b, #285e61);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header h2 {
    font-weight: normal;
    color: #d9f5f2;
}

/* Common Sections */
.summary,
.preamble,
.explanation,
.participation,
.benefits,
.requirements {
    background: white;
    margin-top: 25px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.summary {
    border-left: 6px solid #2c7a7b;
}

/* Headings */
h3 {
    color: #2c7a7b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Links */
a {
    color: #0d6efd;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar h3 {
    border-bottom: 2px solid #2c7a7b;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* Lists */
.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.design-name {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

.designer-name {
    font-size: .9rem;
    color: #666;
}

/* Footer */
footer {
    margin-top: 30px;
    padding: 25px;
    text-align: center;
    background: #2c7a7b;
    border-radius: 10px;
}

footer a {
    display: inline-block;
    margin: 5px 10px;
    color: white;
    font-weight: bold;
}

footer a:hover {
    color: #ffe082;
}

/* Abbreviations */
abbr {
    text-decoration: none;
    border-bottom: 1px dotted #888;
    cursor: help;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 900px) {

    .page-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header h2 {
        font-size: 1.2rem;
    }

}