/*
Theme Name: The Majestic Tours
Description: Custom WordPress theme for catamaran tour bookings in Costa Rica
Version: 1.0.0
Author: The Majestic Tours
Text Domain: majestic-tours
*/

:root {
    --primary-color: #2c5530;
    --secondary-color: #4a90a4;
    --accent-color: #f4a261;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(44, 85, 48, 0.4), rgba(74, 144, 164, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Tour Calendar Styles */
.tour-calendar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day {
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.calendar-day.selected {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.3);
}

/* Booking Form Styles - Centered */
.booking-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem auto;
    max-width: 1000px;
    width: 100%;
    display: block;
    clear: both;
}

.booking-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-color);
}

.form-group label.required::after {
    content: ' *';
    color: #dc3545;
}

.price-breakdown {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin: 15px 0;
}

.availability-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid var(--secondary-color);
}

.booking-notice {
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
}
