/* ---
   Theme: Inspirational / Motivational
   Font: Pacifico (Headings), Lato (Body)
   Primary Color (Accent): #4DB6AC (Gentle Teal)
   Text Color: #5D4037 (Warm Brown)
   Subtle Text Color: #A1887F (Soft Brown)
   Background Color: #FFF5E1 (Cream)
   Card/Widget Background: #FFFFFF
   Border Color: #FFE0B2 (Soft Peach)
   --- */

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

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #5D4037;
    background-color: #FFF5E1;
    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: #4DB6AC;
}

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

a {
    color: #4DB6AC;
    text-decoration: none;
    transition: color 0.2s ease-in-out, transform 0.2s ease;
}

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

ul, ol {
    margin-bottom: 1.25rem;
    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: 2.5rem;
}

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

/* --- Header & Navigation --- */
.site-header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 3px solid #FFDAB9;
}

.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: #5D4037;
    text-decoration: none;
}

.site-title a:hover {
    color: #4DB6AC;
    text-decoration: none;
}

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

.main-nav a {
    font-weight: 700;
    color: #5D4037;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #4DB6AC;
    text-decoration: none;
}

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

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

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

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

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

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

.article-card {
    background-color: #ffffff;
    border: 1px solid #FFE0B2;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

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

.card-content h3 {
    margin-top: 0;
    font-size: 1.7rem;
    color: #5D4037;
}

.card-content h3 a {
    color: inherit;
    text-decoration: none;
}
.card-content h3 a:hover {
    color: #4DB6AC;
}

.card-content p {
    color: #A1887F;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background-color: #4DB6AC;
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #26A69A;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Article Page Specifics */
.article-full {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #FFE0B2;
}

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

.article-header h1 {
    font-size: 2.75rem;
}

.article-meta {
    color: #A1887F;
    font-size: 0.9rem;
    margin-top: -1rem;
    font-weight: 700;
}

.article-content h2 {
    margin-top: 2.5rem;
    font-size: 2rem;
    color: #5D4037;
}

.article-content h3 {
    margin-top: 2rem;
    font-size: 1.6rem;
}

.cta-section {
    background-color: #E0F2F1;
    border-left: 5px solid #4DB6AC;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.cta-section p {
    margin-bottom: 1rem;
}
.cta-section h3 {
    margin-top:0;
}

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

.sidebar-widget h4 {
    border-bottom: 2px solid #FFE0B2;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

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

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

.sidebar-widget ul li a {
    color: #5D4037;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-widget ul li a:hover {
    color: #4DB6AC;
}

.sidebar-widget p {
    font-size: 1rem;
    color: #A1887F;
}

/* --- Footer --- */
.site-footer {
    background-color: #5D4037;
    color: #FFF5E1;
    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: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #FFF5E1;
    font-size: 0.9rem;
    font-weight: 700;
}

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

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

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

.contact-form label {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
    color: #5D4037;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #FFE0B2;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #5D4037;
    background-color: #FFFBF2;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4DB6AC;
    box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.2);
}

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

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

.offers-list h2 {
    margin-top: 2.5rem;
    font-family: 'Pacifico', cursive;
    color: #5D4037;
}

.offers-list ul {
    list-style-type: none;
    padding-left: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.offers-list ul li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #FFF5E1;
}

@media (max-width: 768px) {
    .offers-list ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}
