﻿/* ===== COMPLETE MACAWS ADVENTURE TOURS CSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #2E8B57;
    --secondary-color: #FF6B35;
    --accent-color: #00796B;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark-bg: #333;
    --hover-gold: #FFD700;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}
.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-header {
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    background-image: url('images-hero-/hero-index.jpg');
}
/* ===== Page-specific hero backgrounds ===== */
.hero-index {
    background-image: url('images-hero-/hero-index.jpg');
}
.hero-about {
	background-image: url('images-hero-/hero-about).jpg');
}
.hero-gallery {
    background-image: url('images-hero-/hero-gallery.jpg');
}
.hero-daytours {
    background-image: url('images-hero-/hero-day-tours.jpg');
}
.hero-shore {
    background-image: url('images-hero-/hero-shore-excursions.jpg');
}
.hero-transport {
    background-image: url('images-hero-/hero-transport.jpg');
}
.hero-bookings {
    background-image: url('images-hero-/hero-bookings.jpg');
}
.hero-contact {
    background-image: url('images-hero-/hero-contact.jpg');
}
.hero-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-header .tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
}
.main-nav {
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--hover-gold); }
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.cta-button:hover {
    background: #E55A2B;
    transform: translateY(-3px);
}
.tour-button, .book-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
}
.tour-button:hover, .book-now-btn:hover { background: #236B47; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.tour-card:hover { transform: translateY(-5px); }
.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-content { padding: 20px; }
.tour-content h3 { margin-bottom: 10px; color: var(--primary-color); }
.tour-details {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { background: #005f54; }
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}
.gallery figure {
    margin: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery figure:hover { transform: translateY(-5px); }
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.gallery figcaption {
    background: var(--accent-color);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}
.modal-body { padding: 20px; }
.tour-details-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.tour-image-large {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.tour-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}
.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
}
.step-number {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.step.active .step-number { background: var(--primary-color); color: white; }
.step.completed .step-number { background: var(--secondary-color); color: white; }
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.booking-summary {
    background: #f0f8f0;
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
}
.step-content { display: none; }
.step-content.active { display: block; }
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.tour-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
.tour-option.selected {
    border-color: var(--primary-color);
    background: #f0f8f0;
}
.payment-method {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-method.selected {
    border-color: var(--primary-color);
    background: #f0f8f0;
}
.payment-details {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.notification {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}
.notification.success { background: #d4edda; color: #155724; }
.notification.error { background: #f8d7da; color: #721c24; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    background: #f4f4f4;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 300px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-question i {
    transition: transform 0.3s ease;
}
footer {
    background: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 40px 20px;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}
@media (max-width: 768px) {
    .hero-header h1 { font-size: 2.5rem; }
    .main-nav a { display: block; margin: 10px 0; }
    .tour-details-modal, .booking-container, .contact-grid, .form-row { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
}

