@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Style Reset & Tokens */
.odyssey-wrapper {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #0f1c30;
    --text-secondary: #4a5c75;
    --color-gold: #c89d3c;
    --color-gold-hover: #b1852c;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 28, 48, 0.08);
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.odyssey-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism Common Class */
.glass-panel-light {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(15, 28, 48, 0.06);
}

/* Section Header styling */
.odyssey-sec-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}
.odyssey-section-sub {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.odyssey-sec-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.odyssey-sec-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

/* 1. Hero Section */
.odyssey-hero {
    height: 90vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.odyssey-hero-content {
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(10, 15, 29, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: heroFadeIn 1s ease-out;
}
.odyssey-sub-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--color-gold);
    margin-bottom: 16px;
}
.odyssey-hero h1 {
    font-family: var(--font-heading);
    font-size: 84px;
    font-weight: 700;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.odyssey-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
    line-height: 1.7;
    max-width: 620px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.odyssey-btn-explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
}
.odyssey-btn-explore:hover {
    color: var(--color-gold);
}
.odyssey-btn-explore .chevron-down {
    width: 24px;
    height: 12px;
    position: relative;
    margin-top: 10px;
    animation: chevronBounce 2s infinite;
}
.odyssey-btn-explore .chevron-down::before,
.odyssey-btn-explore .chevron-down::after {
    content: '';
    position: absolute;
    top: 0;
    height: 2px;
    width: 50%;
    background-color: currentColor;
    transition: var(--transition-smooth);
}
.odyssey-btn-explore .chevron-down::before {
    left: 0;
    transform: skewY(30deg);
}
.odyssey-btn-explore .chevron-down::after {
    right: 0;
    transform: skewY(-30deg);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes chevronBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* 2. Editorial Section */
.odyssey-editorial {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}
.odyssey-editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.odyssey-editorial-text h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}
.odyssey-editorial-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.odyssey-editorial-text p:last-child {
    margin-bottom: 0;
}
.odyssey-editorial-quote-wrap {
    display: flex;
    justify-content: center;
}
.odyssey-quote-card {
    border-radius: 24px;
    padding: 45px;
    position: relative;
    max-width: 460px;
    border-left: 4px solid var(--color-gold) !important;
}
.odyssey-quote-card .quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(200, 157, 60, 0.2);
    position: absolute;
    top: 10px;
    left: 24px;
}
.odyssey-quote-card .quote-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0 0 24px 0;
    position: relative;
    z-index: 2;
}
.odyssey-quote-card .quote-author {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
}

/* 3. Tours Section & Card Grid Overrides */
.odyssey-tours {
    padding: 120px 0;
}
.odyssey-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Tour Card Layout Reset for Theme Compatibility */
.odyssey-tours-grid .btSingleTourBlock {
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
}
.odyssey-tours-grid .btSingleTourBlockInner {
    background: #ffffff !important;
    overflow: hidden !important;
}

/* 4. Campaign CTA Section */
.odyssey-cta {
    padding: 60px 0 120px 0;
}
.odyssey-cta-card {
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 28, 48, 0.08);
}
.odyssey-cta-card.glass-panel-light {
    background-color: var(--bg-secondary);
    background-image: radial-gradient(circle at 10% 20%, rgba(200, 157, 60, 0.04) 0%, transparent 40%);
    border: 1px solid var(--glass-border);
}
.odyssey-cta-content {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-badge {
    background-color: rgba(200, 157, 60, 0.15);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.odyssey-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}
.odyssey-cta-card p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 0 36px 0;
    line-height: 1.7;
}
.odyssey-btn-gold {
    background-color: var(--color-gold);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.odyssey-btn-gold:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 6px 20px rgba(200, 157, 60, 0.25);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .odyssey-hero h1 { font-size: 68px; }
    .odyssey-editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .odyssey-editorial-quote-wrap { order: -1; }
    .odyssey-tours-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .odyssey-hero h1 { font-size: 52px; }
    .odyssey-hero-desc { font-size: 16px; }
    .odyssey-editorial-text h2 { font-size: 36px; }
    .odyssey-tours-grid { grid-template-columns: 1fr; }
    .odyssey-cta-card { padding: 40px 24px; }
    .odyssey-cta-card h2 { font-size: 28px; }
}
