
/* Imports */
@import url('travel-style.css');

:root {
    --primary: #2d5a3d;
    --light-green: #f2f8f3;
    --accent: #6bc28b;
    --text: #333;
    --white: #ffffff;
    --border: #e0eadd;
}

[data-theme="dark"] {
    --primary: #ffffff;
    --light-green: #1a1a1a;
    --accent: #4ade80;
    --text: #a1a1a1;
    --white: #111111;
    --border: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* Nav */
nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.logo { font-weight: 800; color: var(--primary); font-size: 1.5rem; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
nav a:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0 10px;
}

[data-theme="dark"] nav { background: rgba(17, 17, 17, 0.9); }

/* Hero */
.hero { background-color: var(--light-green); padding: 100px 0; border-bottom: 1px solid var(--border); }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text h1 { font-size: 3.5rem; color: var(--primary); margin-bottom: 10px; }
.hero-text h2 { font-size: 1.5rem; color: #666; font-weight: 400; margin-bottom: 25px; }
.hero-image img { width: 350px; height: 350px; max-width: 100%; border-radius: 30px; object-fit: cover; border: 10px solid var(--white); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

[data-theme="dark"] .hero-text h2 { color: var(--text); }
[data-theme="dark"] .hero-image img { border: 1px solid var(--border); box-shadow: none; filter: grayscale(20%); }

/* Buttons */
.btn { padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--primary); color: white; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); margin-left: 15px; }
.btn-primary:hover { background: var(--accent); transform: translateY(-3px); }
.btn-outline:hover { border-color: var(--primary); }

/* Sections */
section { padding: 100px 0; }
.section-title { font-size: 2.2rem; margin-bottom: 50px; color: var(--primary); text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--light-green); padding: 40px; border-radius: 20px; border: 1px solid var(--border); }
.card h3 { margin-bottom: 15px; color: var(--primary); }

/* Timeline */
.timeline-item { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.timeline-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 15px; }
.company { color: var(--primary); font-weight: 700; }
.timeline-item ul { margin-left: 20px; color: #555; }
[data-theme="dark"] .timeline-item ul { color: var(--text); }

/* Footer */
footer { background: var(--primary); color: white; padding: 80px 0 40px; text-align: center; }
[data-theme="dark"] footer { background: var(--white); color: var(--text); border-top: 1px solid var(--border); }
.contact-info { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.contact-info a { color: white; text-decoration: underline; font-weight: 600; }
.copyright { margin-top: 50px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
    /* Tablet & Mobile Layout */
    .nav-container { flex-wrap: wrap; align-items: center; }
    
    .mobile-menu-btn { display: block; }

    nav ul { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column; 
        gap: 20px; 
        text-align: center;
        padding: 30px 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    nav ul.active { display: flex; }
    
    /* Ensure dark mode dropdown has correct background */
    [data-theme="dark"] nav ul { background-color: #1a1a1a; }

    .hero { padding: 60px 0; }
    .hero-flex { flex-direction: column-reverse; text-align: center; gap: 40px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-image img { width: 300px; height: 300px; margin: 0 auto; }
    
    .section-title { font-size: 2rem; }
    .timeline-header { flex-direction: column; gap: 5px; }
}

@media (max-width: 600px) {
    /* Mobile Specific */
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text h2 { font-size: 1.2rem; }
    .hero-image img { width: 250px; height: 250px; }
    
    .cta-group { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn { width: 100%; max-width: 300px; text-align: center; }
    .btn-outline { margin-left: 0; }

    section { padding: 50px 0; }
    .card { padding: 30px 20px; }
    .contact-info { flex-direction: column; gap: 15px; }
}

/* Add these to your existing style.css */

.active { color: var(--primary) !important; border-bottom: 2px solid var(--primary); }
.text-center { text-align: center; }
.contact-sub { font-size: 1.2rem; color: #666; margin-bottom: 40px; }
[data-theme="dark"] .contact-sub { color: var(--text); }

.contact-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    margin-top: 40px; 
}

.contact-card {
    background: var(--light-green);
    padding: 40px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: 0.3s;
}

.contact-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.contact-icon { font-size: 2rem; margin-bottom: 15px; color: var(--primary); }

/* Map Dark Mode Fix */
[data-theme="dark"] .leaflet-tile { filter: grayscale(100%) invert(100%) brightness(0.8); }

/* Theme Toggle */
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--light-green, #f2f8f3);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
#theme-toggle:hover { transform: scale(1.1); border-color: var(--primary); }