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

/* --- CSS Variables --- */
:root {
    --primary-bg-color: #fdfdf5; /* Off-white, like aged paper */
    --secondary-bg-color: #ffffff;
    --header-footer-bg: #2F4F4F; /* Dark Slate Gray */
    --primary-text-color: #333333;
    --secondary-text-color: #666666;
    --header-text-color: #ffffff;
    --accent-color: #8B4513; /* Saddle Brown */
    --accent-color-hover: #A0522D; /* Sienna */
    --border-color: #e0e0e0;
    --font-family-headings: 'Playfair Display', serif;
    --font-family-body: 'Lato', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

/* --- General Resets & Body --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 300;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: #222222;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color-hover);
    text-decoration: underline;
}

ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* --- Layout & Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

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

main {
    background-color: var(--secondary-bg-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

aside {
    padding: 1.5rem;
    background-color: var(--secondary-bg-color);
    border-radius: 8px;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- Header & Navigation --- */
.site-header {
    background-color: var(--header-footer-bg);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.site-header .logo {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.site-header .logo a {
    color: var(--header-text-color);
    text-decoration: none;
}

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

.main-nav li {
    margin-left: 2.5rem;
}

.main-nav a {
    color: var(--header-text-color);
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #e0e0e0;
    text-decoration: underline;
}

/* --- Homepage Specifics --- */
.intro-section {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.intro-section h2 {
    font-size: 2.8rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

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

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--secondary-text-color);
    flex-grow: 1;
    font-size: 0.95rem;
}

.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
}

/* --- Sidebar Widgets --- */
.widget {
    margin-bottom: 2.5rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

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

.widget li {
    margin-bottom: 0.8rem;
}

.widget a {
    color: var(--primary-text-color);
    font-weight: 400;
}

.widget a:hover {
    color: var(--accent-color);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--header-footer-bg);
    color: var(--header-text-color);
    text-align: center;
    padding: 3rem;
    margin-top: 2rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--header-text-color);
    margin: 0 1rem;
    opacity: 0.8;
}

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

/* --- Article Page Specifics --- */
.article-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    text-align: center;
}

.article-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    font-style: italic;
}

.article-content h2, .article-content h3 {
    margin-top: 2.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-text-color);
}

.cta-section {
    background-color: var(--primary-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--accent-color-hover);
    color: #ffffff;
    transform: scale(1.05);
}

/* --- Contact & Destinations Page --- */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--primary-text-color);
    font-family: var(--font-family-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form button {
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--accent-color-hover);
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.destination-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.destination-item:last-child {
    border-bottom: none;
}

/* --- Responsive Design --- */
@media (max-width: 991px) {
    .site-header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .site-header .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav li {
        margin: 0.5rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    main {
        padding: 1.5rem;
    }
}