@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CSS variables for Volcanic Dawn Theme --- */
:root {
    --bg-primary: #0b0909;
    --bg-secondary: #161111;
    --accent-gold: #f07d38;
    --accent-gold-rgb: 240, 125, 56;
    --accent-gold-hover: #ff9759;
    --accent-green: #d9381e;
    --accent-green-light: #ff5e40;
    --text-main: #fdfaf9;
    --text-muted: #b3a4a1;
    --glass-bg: rgba(22, 17, 17, 0.75);
    --glass-border: rgba(240, 125, 56, 0.15);
    --glass-glow: rgba(217, 56, 30, 0.08);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(217, 56, 30, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(240, 125, 56, 0.03) 0%, transparent 40%);
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

p {
    color: var(--text-muted);
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- Core Layout & Utilities --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green-light); }

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* --- Glassmorphic Card Mixin/Utility --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(223, 171, 45, 0.3);
    box-shadow: 0 12px 40px 0 rgba(46, 139, 87, 0.15);
    transform: translateY(-5px);
}

/* --- Header / Sticky Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 14, 11, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(223, 171, 45, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.logo-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Burger Menu Styles --- */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 95vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(9, 14, 11, 0.4) 0%,
        rgba(9, 14, 11, 0.7) 60%,
        var(--bg-primary) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Custom Styled Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(223, 171, 45, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 171, 45, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(238, 243, 240, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(238, 243, 240, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* --- Features Grid Layout --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-desc {
    font-size: 0.95rem;
}

/* --- Intro Details Section (Split Columns) --- */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
}

.split-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 14, 11, 0.4) 0%, transparent 60%);
}

.split-image {
    transition: var(--transition-smooth);
}

.split-image-container:hover .split-image {
    transform: scale(1.05);
}

.split-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 94, 64, 0.12);
    border: 1px solid rgba(255, 94, 64, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-green-light);
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.split-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.info-points {
    list-style: none;
    margin-top: 2rem;
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-point-bullet {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.info-point-text strong {
    color: var(--text-main);
}

/* --- Transport Page Styling --- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.transport-card {
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.transport-icon-box {
    background: rgba(223, 171, 45, 0.1);
    border: 1px solid rgba(223, 171, 45, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.transport-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.transport-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(223, 171, 45, 0.08);
    padding-top: 1rem;
}

.transport-detail-item {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.transport-detail-item span:first-child {
    color: var(--text-muted);
}

.transport-detail-item span:last-child {
    font-weight: 500;
    color: var(--text-main);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    height: 450px;
}

/* --- Tickets Page Styling --- */
.pricing-flex {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    flex: 1;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(223, 171, 45, 0.5);
    background: linear-gradient(135deg, rgba(15, 24, 19, 0.85) 0%, rgba(9, 14, 11, 0.8) 100%);
}

.pricing-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-header {
    border-bottom: 1px solid rgba(223, 171, 45, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-list-check {
    color: var(--accent-green-light);
    font-weight: bold;
}

/* --- Tour Card Dynamic Widgets --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    overflow: hidden;
}

.tour-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image {
    transform: scale(1.08);
}

.tour-provider-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.tour-provider-badge.viator {
    background-color: #ff5a5f;
    color: #fff;
}

.tour-provider-badge.headout {
    background-color: #ec1943;
    color: #fff;
}

.tour-price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.tour-info {
    padding: 2rem 1.5rem 1.5rem;
}

.tour-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    min-height: 3.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f1c40f;
}

.tour-reviews {
    color: var(--text-muted);
}

.tour-duration {
    color: var(--text-muted);
}

.tour-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tour-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-features li::before {
    content: '•';
    color: var(--accent-gold);
}

.tour-button {
    width: 100%;
}

/* --- History & Diorama Timeline Page --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-primary);
    border: 3px solid var(--accent-gold);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -8px;
}

.timeline-content {
    padding: 2rem;
    position: relative;
}

.timeline-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* --- CSS-Only FAQ Accordions (Details/Summary) --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
}

.faq-summary {
    padding: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
    content: '−';
    transform: rotate(90deg);
}

.faq-item[open] .faq-summary {
    border-bottom: 1px solid rgba(223, 171, 45, 0.08);
    color: var(--accent-gold);
}

.faq-answer {
    padding: 1.5rem;
}

/* --- Weather Widget Custom Container --- */
.weather-widget-section {
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.om-weather-widget {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(15, 24, 19, 0.5);
    border: 1px dashed rgba(223, 171, 45, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.weather-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(223, 171, 45, 0.1);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.weather-data {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.weather-temp {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

.weather-info {
    text-align: left;
}

.weather-info .city {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.weather-info .desc {
    font-size: 0.9rem;
    text-transform: capitalize;
}

.weather-stats {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
}

/* --- Footer --- */
.footer {
    background-color: #050806;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.footer-contact-icon {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(223, 171, 45, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Custom Keyframes Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { gap: 2rem; }
    
    /* Mobile Burger Navigation Collapses at 1024px to prevent link overflows */
    .burger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .split-content { order: -1; }
    .transport-grid { grid-template-columns: 1fr; }
    .pricing-flex { flex-direction: column; }
    .tours-grid { grid-template-columns: 1fr; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 22px; }
    .timeline-right { left: 0%; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
}

/* --- Elegant & Subtle Image Attribution Credits --- */
.image-credit {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.45;
    text-align: right;
    margin-top: 0.35rem;
    padding-right: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.image-credit a {
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.image-credit:hover {
    opacity: 0.95;
    color: var(--accent-gold);
}
