/* MASTER STYLESHEET
   -----------------
   This file controls the look of every page on your website.
   Edit this file to change colors, fonts, or spacing everywhere at once.
*/

/* --- 1. CORE VARIABLES --- */
:root {
    --primary: #1F2937;      /* Charcoal (Text) */
    --accent: #D35400;       /* Saffron/Terra Cotta (Action) */
    --bg-light: #FAFAFA;     /* Off-White */
    --bg-dark: #111827;      /* Deep Footer/Contrast */
    --border: #E5E7EB;
    
    --font-head: 'Libre Baskerville', serif; 
    --font-body: 'Montserrat', sans-serif;
}

/* --- 2. RESET & BASICS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-body); 
    background: var(--bg-light); 
    color: var(--primary); 
    line-height: 1.7; 
    font-size: 16px; 
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { width: 100%; display: block; border-radius: 4px; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* --- 3. BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}
.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* --- 4. NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.logo span { color: var(--accent); }
.nav-menu a {
    margin-left: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4B5563;
}
.nav-menu a:hover { color: var(--accent); }

/* --- 5. HERO SECTION --- */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1499678329028-101435549a4e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content { max-width: 800px; padding: 20px; }
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; }

/* --- 6. SECTIONS (Featured & Grid) --- */
.featured-in {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}
.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
}
.logos span { font-weight: 800; font-size: 1.2rem; letter-spacing: -1px; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* --- 7. CARDS (Destinations & Articles) --- */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dest-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.dest-overlay h3 { color: white; font-size: 1.2rem; letter-spacing: 1px; }

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.article-card img { border-radius: 4px; margin-bottom: 20px; }
.meta {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.article-card h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}
.read-link {
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

/* --- 8. ABOUT PAGE SPECIFICS --- */
.about-header { text-align: center; margin-bottom: 60px; }
.about-header h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #4B5563; }
.about-img img { border-radius: 8px; box-shadow: 20px 20px 0px var(--accent); }

/* --- 9. ARTICLE TEMPLATE SPECIFICS --- */
.article-header { text-align: center; padding: 60px 0 40px; }
.category { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
.article-title { font-family: var(--font-head); font-size: 2.8rem; margin: 15px 0 20px; line-height: 1.2; }
.article-meta { color: #888; font-size: 0.9rem; font-style: italic; }

.article-content { font-family: 'Georgia', serif; color: #333; margin-bottom: 80px; font-size: 18px; }
.article-content p { margin-bottom: 25px; line-height: 1.8; font-size: 1.1rem; }
.article-content h2 { font-family: var(--font-body); font-weight: 700; margin-top: 40px; margin-bottom: 20px; font-size: 1.8rem; }

/* --- 10. FOOTER --- */
footer {
    background: var(--bg-dark);
    color: #9CA3AF;
    padding: 60px 0;
    font-size: 0.9rem;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

/* --- 11. MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .nav-menu { display: none; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .article-title { font-size: 2rem; }
}