/* ---
   Theme: Retro / Vintage
   Font: Playfair Display
   Primary Color: #008080 (Teal)
   Accent Color: #D4AF37 (Gold)
   Text Color: #3D3522 (Dark Brown)
   Background Color: #F5F5DC (Beige/Cream)
   Card/Header Background: #FFFFFF
   Border Color: #D2B48C (Tan)
   --- */

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

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #3D3522;
    background-color: #F5F5DC;
    font-size: 16px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #3D3522;
}

h1 { font-size: 3rem; border-bottom: 4px double #D2B48C; padding-bottom: 1rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.5rem; }

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

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

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

/* --- Layout & Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 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: #3D3522;
    padding: 1rem 0;
    border-bottom: 4px solid #D4AF37;
}

.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: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
}

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

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

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

.main-nav a {
    font-weight: 700;
    color: #F5F5DC;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* --- Main Content & Articles --- */
.page-intro {
    padding: 3rem 2rem;
    text-align: center;
    background-color: transparent;
    border: 2px solid #D2B48C;
    margin-bottom: 3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d2b48c' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.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 #D2B48C;
    box-shadow: 5px 5px 0px #D2B48C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 10px 10px 0px #D4AF37;
}

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

.card-content h3 {
    margin-top: 0;
}

.card-content h3 a {
    color: #3D3522;
}
.card-content h3 a:hover {
    color: #008080;
    text-decoration: none;
}

.card-content p {
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background-color: #008080;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid #3D3522;
    box-shadow: 3px 3px 0 #3D3522;
    transition: all 0.2s ease;
}

.btn:hover {
    background-color: #005a5a;
    color: #ffffff;
    text-decoration: none;
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 #3D3522;
}

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

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

.article-meta {
    color: #8b7d6b;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.article-content h2 {
    margin-top: 2.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #D2B48C;
}

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

.cta-section {
    background-color: #F5F5DC;
    border: 2px dashed #D2B48C;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

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

.sidebar-widget h4 {
    border-bottom: 2px solid #D2B48C;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.sidebar-widget ul li a {
    color: #3D3522;
    font-weight: 700;
}

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

.sidebar-widget p {
    text-align: center;
}

/* --- Footer --- */
.site-footer {
    background-color: #3D3522;
    color: #F5F5DC;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 4px solid #D4AF37;
}

.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: #F5F5DC;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

/* --- Contact Page & Offers Page --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D2B48C;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background-color: #F5F5DC;
    color: #3D3522;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #008080;
}

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

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

.offers-list h2 {
    margin-top: 2rem;
    border-bottom: 1px solid #D2B48C;
    padding-bottom: 0.5rem;
}
.offers-list ul {
    list-style-type: '☞';
    padding-left: 2rem;
}

.offers-list ul li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}
