/* ---
   Theme: Inspirational / Motivational
   Font: Pacifico
   Primary Color (Accent): #26a69a (Gentle Teal)
   Text Color: #37474f (Dark Slate Gray)
   Subtle Text Color: #607d8b (Blue Gray)
   Background Color: #fffaf0 (Floral White / Cream)
   Card/Widget Background: #ffffff (White)
   Border Color: #e0e0e0 (Light Gray)
   Warm Accent: #ffab91 (Soft Peach)
   --- */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Source+Sans+Pro:wght@400;600&display=swap');

/* --- Base & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #37474f;
    background-color: #fffaf0;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Pacifico', cursive;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #26a69a;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.5rem; }

a {
    color: #26a69a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00796b;
    text-decoration: none;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

/* --- Layout & Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-area {
    flex: 1;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .grid-layout {
        grid-template-columns: 2.5fr 1fr;
    }
}

/* --- Header & Navigation --- */
.site-header {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 3px solid #ffab91;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-title {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    font-weight: 400;
}

.site-title a {
    color: #26a69a;
    text-decoration: none;
}

.site-title a:hover {
    color: #00796b;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    color: #37474f;
    font-size: 1.1rem;
    padding-bottom: 0.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #26a69a;
}

/* --- Main Content & Articles --- */
.page-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.page-intro h1 {
    margin-bottom: 1.5rem;
}

.page-intro p {
    font-size: 1.25rem;
    color: #607d8b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.8rem;
    flex-grow: 1;
}

.card-content h3 a {
    color: #37474f;
}
.card-content h3 a:hover {
    color: #26a69a;
}

.card-content p {
    color: #607d8b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: #26a69a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #00897b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Article Page Specifics */
.article-full {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.article-header {
    border-bottom: 2px solid #ffab91;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.article-meta {
    color: #607d8b;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.article-content h2 {
    margin-top: 2.5rem;
    font-size: 2.25rem;
}

.article-content h3 {
    margin-top: 2rem;
    color: #37474f;
}

.cta-section {
    background-color: #e0f2f1;
    border-left: 5px solid #26a69a;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}
.cta-section h3 {
    font-size: 2rem;
}

/* --- Sidebar --- */
.sidebar-widget {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    border-radius: 12px;
}

.sidebar-widget h4 {
    color: #37474f;
    border-bottom: 2px solid #ffab91;
    padding-bottom: 0.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.sidebar-widget ul li {
    margin-bottom: 0.75rem;
}

.sidebar-widget ul li a {
    color: #37474f;
    font-weight: 600;
    transition: padding-left 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: #26a69a;
    padding-left: 8px;
}

.sidebar-widget p {
    font-size: 0.95rem;
    color: #607d8b;
}

/* --- Footer --- */
.site-footer {
    background-color: #37474f;
    color: #cfd8dc;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #cfd8dc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

/* --- Contact & Offers Pages --- */
.page-content-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form label {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #37474f;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #37474f;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #26a69a;
    box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.offers-list h2 {
    margin-top: 2.5rem;
}

.offers-list ul {
    list-style-type: none;
    padding-left: 0;
}

.offers-list ul li {
    font-size: 1.1rem;
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid #e0e0e0;
}
