/* Tours Index Page Styles */

/* Import Tailwind Utilities */
@import url('tailwind-utilities.css');

/* Hero Section */
.tours-hero {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    padding: 4rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-container {
    max-width: 72rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 48rem;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    background-color: #f8fafc;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    background-color: #ffffff;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    color: #ffffff;
    border-color: transparent;
}

/* Base Layout */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #334155;
    min-height: 100vh;
}

/* Tours Grid Section */
.tours-grid-section {
    padding: 2rem 1rem;
    background-color: #ffffff;
}

@media (min-width: 640px) {
    .tours-grid-section {
        padding: 3rem 2rem;
    }
}

.container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

/* Tour Card */
.tour-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Hide cards when filtered */
.tour-card[style*="display: none"] {
    display: none !important;
}

/* Tour Image */
.tour-image {
    position: relative;
    height: 15rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .tour-image {
        height: 18rem;
    }
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Tour Badge */
.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    z-index: 10;
}

/* Tour Duration Badge */
.tour-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

/* Tour Description */
.tour-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tour Highlights */
.tour-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tour-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.875rem;
}

.tour-highlights i {
    color: #f97316;
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* Tour Content */
.tour-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.tour-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Tour Details Grid */
.tour-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.tour-details-column {
    min-width: 0;
}

.details-heading {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}

.checkmark {
    color: #f97316;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Tour Footer */
.tour-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tour Pricing */
.tour-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.price-info {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* View Tour Button */
.btn-view-tour {
    background: linear-gradient(to right, #fbbf24, #f97316);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-tour:hover {
    background: linear-gradient(to right, #f97316, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #94a3b8;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #f97316;
}

.breadcrumb .active {
    color: #1e293b;
    font-weight: 500;
}

/* Section Intro */
.section-intro {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
}

/* Featured Card */
.tour-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .tour-card.featured {
        grid-template-columns: 1fr 1fr;
    }
    
    .tour-card.featured .tour-image {
        height: 100%;
        min-height: 25rem;
    }
}

/* Tour Route */
.tour-route {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.tour-route h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.tour-route p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Tour Includes */
.tour-includes {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.tour-includes h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
}

.tour-includes .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.tour-includes span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.tour-includes i {
    color: #f97316;
    font-size: 0.875rem;
}

/* Utility Classes */
.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray-600 {
    color: #64748b;
}

.text-gray-700 {
    color: #475569;
}

.text-amber-500 {
    color: #f97316;
}

.font-semibold {
    font-weight: 600;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gap-2 {
    gap: 0.5rem;
}

/* Info Section */
.info-section {
    background-color: #f8fafc;
    padding: 4rem 1rem;
    margin-top: 4rem;
}

.info-container {
    max-width: 72rem;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3rem;
    }
}

.info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.info-text {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .tour-card {
        margin: 0 0.5rem;
    }
    
    .tour-title {
        font-size: 1.25rem;
    }
    
    .tour-description {
        font-size: 0.875rem;
    }
    
    .btn-view-tour {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* CTA Section Styles */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    background-color: white;
    color: #f59e0b;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button-secondary {
    background-color: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-secondary:hover {
    background-color: white;
    color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}