/* 
  Your Journey Curator - Global Stylesheet
  Theme: Luxury Travel, Ocean Blues, Sunshine, Bright, Inviting 
*/

:root {
    /* Color Palette */
    --ocean-dark: #002B5B;
    /* Deep Navy/Ocean */
    --ocean-blue: #0081C9;
    /* Clear Azure Blue */
    --sky-light: #5BC0F8;
    /* Light blue for highlights */
    --sunshine: #ffffff;
    /* Premium gold/yellow */
    --sand-light: #FDF9F1;
    /* Off-white background */
    --forest-green: #2B7A0B;
    /* Lush green for tags/accents */

    /* Neotrals */
    --white: #ffffff;
    --text-main: #1C2833;
    --text-muted: #5D6D7E;
    --border: #E5E7EB;

    /* Layout Variables */
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--sand-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    /* A luxury serif font */
    color: var(--ocean-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--ocean-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ocean-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ==================================
             BUTTONS 
   ================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--ocean-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--sand-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--ocean-blue);
}

.btn-luxury {
    background-color: var(--ocean-blue);
    color: var(--white);
    border: 1px solid var(--ocean-blue);
}

.btn-luxury:hover {
    background-color: #006bb3;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ==================================
             HEADER 
   ================================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ocean-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--sunshine);
    /* small color pop in logo */
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

/* ==================================
             HERO SECTIONS
   ================================== */
.hero {
    position: relative;
    padding: 180px 0 140px;
    background-color: var(--ocean-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 43, 91, 0.8) 0%, rgba(0, 43, 91, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==================================
             VAULT DASHBOARD
   ================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.dash-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    border-top: 4px solid var(--ocean-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dash-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* ==================================
          A-Z DIRECTORY LISTING
   ================================== */
.az-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.country-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.country-card:hover {
    border-color: var(--ocean-blue);
    background-color: #f0f9ff;
    /* subtle sky highlight */
}

.country-card h4 {
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--ocean-dark);
}

/* ==================================
             ADVERTISING ZONES
   ================================== */
.ad-zone {
    background-color: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-banner-bottom {
    width: 100%;
    height: 120px;
    margin: 60px 0;
}

.ad-sidebar {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
}

.page-with-sidebar {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

/* ==================================
             CONTENT TEMPLATE
   ================================== */
.content-section {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--ocean-dark);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--sky-light);
    padding-bottom: 15px;
    display: inline-block;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.info-list li::before {
    content: "✈";
    color: var(--ocean-blue);
    position: absolute;
    left: 0;
    top: 2px;
}

/* ==================================
             FOOTER 
   ================================== */
.footer {
    background-color: var(--ocean-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand span {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .page-with-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        padding: 120px 0 80px;
    }
}
