:root {
    --mex-pink: #E6007E;
    --obsidian: #1a1a1a;
    --smoke: #f4f4f4;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
body { background-color: var(--smoke); color: var(--obsidian); line-height: 1.6; }

/* Navigation */
nav { background: var(--obsidian); padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
.logo { 
    display: flex;
    align-items: center;
    text-decoration: none; 
}
.logo img {
    height: 45px; /* Adjust this until it looks right in your nav bar */
    width: auto;  /* Keeps the proportions correct */
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05); /* Adds a subtle 'pop' when hovered */
}
/* .logo { color: var(--mex-pink); font-weight: 900; font-size: 1.6rem; text-decoration: none; letter-spacing: 1px; } */
.nav-links a { color: var(--white); text-decoration: none; margin-left: 20px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.nav-links a:hover { color: var(--mex-pink); }

.hero {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 40vh; /* Optional: gives you a default height */
}

.hero h1 {
    color: var(--white); /* Keeps all hero titles white by default */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Adds a dark glow behind the letters */
    font-size: 3rem;
    padding: 0 10%;
}

/* Hero Section */
header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1518105779142-d975f22f1b0a?auto=format&fit=crop&q=80&w=1500'); height: 80vh; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--white); padding: 0 10%; }
header h1 { font-size: 3.5rem; margin-bottom: 1rem; }
header p { font-size: 1.2rem; max-width: 700px; margin-bottom: 2rem; }

/* Transparency Banner */
.transparency-banner { background: #e9ecef; padding: 2rem 5%; text-align: center; border-bottom: 4px solid var(--mex-pink); }
.badge { background: var(--mex-pink); color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; margin-right: 10px; }

/* Tour Grid & Cards */
.section-title { text-align: center; padding: 4rem 0 2rem; font-size: 2.5rem; }
.tours-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; padding: 0 8% 4rem; }
.tour-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.08); transition: 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-10px); }
.tour-img { height: 220px; background-size: cover; background-position: center; }
.tour-content { padding: 1.5rem; flex-grow: 1; }
.price-split { border-top: 1px solid #eee; margin-top: 1rem; padding-top: 1rem; font-size: 0.9rem; }
.ticket-cost { color: #666; display: flex; justify-content: space-between; }
.service-fee { font-weight: bold; color: var(--mex-pink); display: flex; justify-content: space-between; }
.total-price { font-size: 1.4rem; font-weight: 800; margin-top: 5px; display: flex; justify-content: space-between; }

/* About Section */
.about-section { background: var(--obsidian); color: var(--white); padding: 6rem 10%; display: flex; align-items: center; gap: 4rem; }
.about-text { flex: 1; }
.about-img { flex: 1; height: 450px; background: #333 url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&q=80&w=1500') center/cover; border-radius: 10px; }

/* Global Buttons */
.btn-main { background: var(--mex-pink); color: var(--white); padding: 1rem 2rem; text-decoration: none; border-radius: 6px; font-weight: bold; transition: 0.3s; display: inline-block; }
.btn-main:hover { transform: scale(1.05); background: #c5006b; }

/* Booking Page Specifics */
.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; padding: 4rem 8%; }
.booking-box { background: white; padding: 2.5rem; border-radius: 12px; border-top: 6px solid var(--mex-pink); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

footer { background: #000; color: #777; text-align: center; padding: 4rem 0; font-size: 0.85rem; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 2px 5px 15px rgba(0,0,0,0.3); text-decoration: none; z-index: 1000; font-weight: bold; }

@media (max-width: 900px) { .about-section, .split { flex-direction: column; grid-template-columns: 1fr; } }