/* public/css/style.css */

/* --- Global Variables and Base Styles --- */
:root {
    --primary-purple: #3b2460;
    --light-purple: #59368d;
    --white: #ffffff;
    --black: #000000;
    --text-color: #333333;
    --light-gray: #f8f9fa; /* Lighter background for overall sleekness */
    --mid-gray: #e9ecef;
    --dark-gray: #6c757d;
    --border-color: #dee2e6;

    /* Admin specific colors (used in admin_header.php inline styles) */
    --admin-primary-dark: #2c3e50;
    --admin-secondary-light: #34495e;
    --admin-accent-purple: #59368d; /* Matches light-purple */
    --admin-text-light: #ecf0f1;
    --admin-text-dark: #34495e;
    --admin-bg-light: #f8f9fa; /* Matches light-gray */
    --admin-bg-dark: #e9ecef; /* Matches mid-gray */
    --admin-border: #dee2e6; /* Matches border-color */
}

/* Base HTML & Body Styles */
html {
    box-sizing: border-box;
    font-size: 16px; /* Base font size for rem units */
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--light-gray); /* Overall background */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Content Wrapper - Defines the 80-90% content width */
.content-wrapper {
    max-width: 1200px; /* Max width for content */
    width: 90%; /* Occupy 90% of screen width */
    margin: 0 auto; /* Center the content wrapper */
    padding: 0; /* No padding here, padding handled by elements inside */
}

/* --- Typography Adjustments --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-purple);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { font-size: 1rem; line-height: 1.7; margin-bottom: 1em; }

.section-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 30px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn i {
    margin-right: 8px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--light-purple);
}

.btn-secondary {
    background-color: var(--dark-gray);
    color: var(--white);
}
.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-info { background-color: #17a2b8; color: white; }
.btn-info:hover { background-color: #138496; }
.btn-danger { background-color: #dc3545; color: white; }
.btn-danger:hover { background-color: #c82333; }
.btn-success { background-color: #28a745; color: white; }
.btn-success:hover { background-color: #218838; }

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Header & Navigation - REDESIGN --- */
header {
    background-color: transparent; /* Main header background transparent */
    box-shadow: none; /* No shadow on main header */
    padding: 0; /* No padding here */
}

.top-bar {
    background-color: var(--primary-purple); /* Primary purple top bar */
    color: var(--white); /* White text */
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar .content-wrapper {
    display: flex;
    justify-content: flex-end; /* Align all content to the right */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between contact info and switcher */
}

.top-bar-contact-info {
    display: flex;
    gap: 20px; /* Space between email and phone */
    align-items: center;
}

.top-bar-contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-contact-info a:hover {
    color: var(--light-purple);
}

.top-bar-contact-info i {
    margin-right: 5px;
}

.main-nav-container {
    background-color: var(--white); /* White background for main nav */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Subtle shadow for white nav */
    padding: 0.8rem 0; /* Vertical padding */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 50px; /* Slightly larger logo */
    width: auto;
    object-fit: contain;
    padding: 5px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: center; /* Center menu items */
    gap: 5px; /* Small gap between buttons */
}

nav ul li {
    margin: 0; /* No margin here, gap handles spacing */
}

nav ul li a {
    color: var(--primary-purple); /* Primary purple text for menu items */
    text-decoration: none;
    font-weight: 600; /* Bolder font */
    padding: 10px 15px; /* Button-like padding */
    display: block;
    border-radius: 5px; /* Rounded corners for buttons */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover {
    background-color: var(--light-purple); /* Light purple background on hover */
    color: var(--white); /* White text on hover */
    transform: translateY(-2px); /* Subtle lift */
}

/* Specific styling for active menu item */
nav ul li a.active-link {
    background-color: var(--primary-purple);
    color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
nav ul li a.active-link:hover {
    background-color: var(--light-purple);
}


.currency-lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-lang-switcher select,
.currency-lang-switcher button {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--light-gray);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.currency-lang-switcher select:hover,
.currency-lang-switcher button:hover {
    background-color: var(--mid-gray);
    border-color: var(--dark-gray);
}

.currency-lang-switcher select option {
    background-color: var(--white);
    color: var(--text-color);
}

/* --- Main Content Area --- */
main {
    width: 100%; /* Main element itself is full width to allow background color */
    padding: 30px 0; /* Vertical padding */
    background-color: var(--light-gray); /* Main background color */
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 40px 0 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.main-footer .social-links {
    margin-top: 15px;
}

.main-footer .social-links a {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.main-footer .social-links a:hover {
    color: var(--light-purple);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--light-purple);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-col .social-links a {
    font-size: 1.3rem;
    margin-right: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--light-purple);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* --- Common Sections --- */
.section-padding {
    padding: 50px 0;
}

.bg-light-purple {
    background-color: var(--light-purple);
    color: var(--white);
}

.bg-primary-purple {
    background-color: var(--primary-purple);
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}
.text-center {
    text-align: center;
}

/* --- Hero Section (Home & About) --- */
.hero-section, .about-hero-section, .page-header, .call-to-action {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 40px;
}

.hero-section { height: 65vh; }
.about-hero-section { height: 50vh; }
.page-header { padding: 30px 0; }
.call-to-action { padding: 60px 0; }


.hero-slider, .about-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider .overlay, .about-hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content, .about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1, .about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-content p, .about-hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
}

.slider-nav button {
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slider-nav button:hover {
    background-color: rgba(0,0,0,0.7);
    transform: scale(1.02);
}

/* --- Filter Bar --- */
.filter-bar {
    text-align: center;
    margin-bottom: 30px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-bar label {
    font-weight: 600;
    color: var(--primary-purple);
    margin-right: 10px;
    font-size: 1rem;
}

.filter-bar select, .filter-bar input[type="date"] {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: var(--white);
    color: var(--text-color);
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%233b2460%22%20d%3D%22M287%2C197.9L159.2%2C69.2c-4.7-4.7-12.3-4.7-17%2C0L5.4%2C197.9c-4.7%2C4.7-4.7%2C12.3%2C0%2C17l19.8%2C19.8c4.7%2C4.7%2C12.3%2C4.7%2C17%2C0l106.6-106.6l106.6%2C106.6c4.7%2C4.7%2C12.3%2C4.7%2C17%2C0l19.8-19.8C291.7%2C210.2%2C291.7%2C202.6%2C287%2C197.9z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px auto;
}

.filter-bar select:focus, .filter-bar input[type="date"]:focus {
    border-color: var(--light-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(89, 54, 141, 0.2);
}

/* --- Card Grid (Common for listings) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-meta {
    font-size: 0.85rem;
    margin-bottom: 10px;
    gap: 8px;
}

.card-meta i {
    font-size: 1rem;
}

.card-price {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.card-price span {
    color: var(--light-purple);
}

.btn-card {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 1.1rem;
    color: var(--dark-gray);
    padding: 40px 0;
}

/* --- Call to Action Section --- */
.call-to-action {
    background: linear-gradient(to right, var(--primary-purple), var(--light-purple));
    color: var(--white);
    padding: 60px 0;
    border-radius: 0;
    margin-top: 30px;
    box-shadow: none;
}
.call-to-action .content-wrapper {
    padding: 0 20px;
}
.call-to-action h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* --- Page Header (Common for listing pages) --- */
.page-header {
    background-color: var(--light-purple);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
}
.page-header .content-wrapper {
    padding: 0 20px;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Detail Page Headers (Tour, Event, Group Trip) --- */
.tour-detail-header, .event-detail-header, .group-trip-detail-header {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.tour-image-banner, .event-image-banner, .group-trip-image-banner {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 25px 0;
}

.tour-image-banner .overlay, .event-image-banner .overlay, .group-trip-image-banner .overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.tour-title-content, .event-title-content, .group-trip-title-content {
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}
.tour-image-banner .tour-title-content,
.event-image-banner .event-title-content,
.group-trip-image-banner .group-trip-title-content {
    padding: 0 20px;
}


.tour-title-content h1, .event-title-content h1, .group-trip-title-content h1 {
    font-size: 3rem;
    margin-bottom: 8px;
}

.tour-title-content p, .event-title-content p, .group-trip-title-content p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* --- Common Detail Sections (Main Content & Sidebar) --- */
.tour-details-section, .group-trip-details-section, .product-detail-section, .contact-section, .blog-content-section,
.about-intro, .our-mission, .what-we-offer, .why-different, .static-content-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0;
}
/* Ensure internal content is wrapped for padding */
.tour-details-section > .content-wrapper, .group-trip-details-section > .content-wrapper, .product-detail-section > .content-wrapper,
.contact-section > .content-wrapper, .blog-content-section > .content-wrapper, .static-content-section > .content-wrapper {
    /* No horizontal padding on this wrapper, it's already handled by .content-wrapper */
}


.tour-main-content, .event-main-content, .group-trip-main-content, .product-info, .contact-info, .contact-form-container, .blog-posts-list, .blog-sidebar {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.tour-main-content { flex: 3; min-width: 350px; }
.tour-sidebar { flex: 1; min-width: 280px; align-self: flex-start; }
.group-trip-main-content { flex: 3; min-width: 350px; }
.group-trip-sidebar { flex: 1; min-width: 280px; align-self: flex-start; }
.product-image-gallery { flex: 1; min-width: 300px; text-align: center; }
.product-info { flex: 2; min-width: 350px; }
.contact-info { flex: 1; min-width: 300px; }
.contact-form-container { flex: 2; min-width: 350px; }
.blog-posts-list { flex: 3; min-width: 300px; }
.blog-sidebar { flex: 1; min-width: 280px; align-self: flex-start; }


.tour-main-content h2, .booking-widget h3, .event-main-content h2, .registration-info h3, .trip-meta-details h3,
.product-info h2, .contact-info h2, .contact-form-container h2, .blog-posts-list h2, .blog-sidebar h2 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-purple);
    padding-bottom: 8px;
}

.tour-main-content p, .event-main-content p, .group-trip-main-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.itinerary-list .itinerary-item {
    background-color: var(--light-gray);
    border-left: 4px solid var(--light-purple);
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.itinerary-list .itinerary-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tour-dates-list .date-item {
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tour-dates-list .date-item .status {
    font-size: 0.8rem;
    padding: 4px 8px;
}

.booking-widget .price-from {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.booking-widget .price-from span {
    font-size: 1.6rem;
}

.booking-widget .form-group {
    margin-bottom: 15px;
}

.booking-widget label {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.booking-widget select, .booking-widget input[type="number"], .booking-widget input[type="text"], .booking-widget textarea {
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.addons-list {
    margin-top: 8px;
}

.addon-item {
    margin-bottom: 6px;
}

.addon-item input[type="checkbox"] {
    transform: scale(1);
}

.addon-item label {
    font-size: 0.9rem;
}

/* --- About Page Specifics --- */
.about-intro .intro-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.mission-item p {
    font-size: 1.1rem;
}

.offer-icon, .differentiator-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.offer-card h3, .differentiator-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-card p, .differentiator-item p {
    font-size: 0.9rem;
}

.offer-card ul {
    margin: 10px auto 0;
    font-size: 0.85rem;
}

/* --- Contact Page Specifics --- */
.contact-info h2, .contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    width: 30px;
}

.info-item h3 {
    font-size: 1.1rem;
}

.info-item p {
    font-size: 0.9rem;
}

.social-media-contact h3 {
    font-size: 1.3rem;
}

.social-media-contact a {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* --- Blog Page Specifics --- */
.blog-post-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: row; /* Default for larger screens */
    align-items: center;
}

.blog-post-card img {
    width: 250px; /* Fixed width for image on larger screens */
    height: 180px;
    object-fit: cover;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.blog-post-card .post-content {
    padding: 15px;
    flex-grow: 1;
}

.blog-post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.blog-post-card .post-meta {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.blog-post-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-sidebar {
    background-color: var(--white); /* Added background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* Added shadow */
}

.instagram-placeholder i {
    font-size: 2.5rem;
}

.instagram-placeholder p {
    font-size: 0.9rem;
}

.categories-archive ul li a {
    font-size: 0.9rem;
}

/* Blog Show Page */
.blog-post-detail .post-header h1 {
    font-size: 2.5rem;
}

.blog-post-detail .post-meta {
    font-size: 0.9rem;
}

.blog-post-detail .post-main-image {
    height: 300px;
}

.blog-post-detail .post-content-body {
    font-size: 1rem;
}

/* --- Auth Forms --- */
.auth-container {
    max-width: 400px;
    padding: 25px;
    margin: 40px auto;
}

.auth-container h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.auth-form label {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.auth-form input[type="email"], .auth-form input[type="password"], .auth-form input[type="text"] {
    padding: 10px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.auth-form .btn-primary {
    padding: 12px;
    font-size: 1rem;
}

.auth-links {
    margin-top: 20px;
    font-size: 0.9rem;
}

.message {
    padding: 10px 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* --- User Dashboard --- */
.dashboard-header h1 {
    font-size: 2.5rem;
}

.dashboard-header p {
    font-size: 1rem;
}

.dashboard-sections {
    gap: 20px;
}

.dashboard-card {
    padding: 20px;
}

.dashboard-card i {
    font-size: 3rem;
}

.dashboard-card h3 {
    font-size: 1.5rem;
}

.dashboard-card p {
    font-size: 0.9rem;
}

.dashboard-card .btn-primary {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.recent-activity h2 {
    font-size: 2rem;
}

.activity-grid {
    gap: 20px;
}

.activity-card {
    padding: 20px;
}

.activity-card h3 {
    font-size: 1.4rem;
}

.activity-card ul li {
    font-size: 0.9rem;
}

.activity-card .btn-secondary {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* --- User Profile --- */
.profile-header h1 {
    font-size: 2.5rem;
}

.profile-header p {
    font-size: 1.0rem;
}

.profile-image-section {
    padding: 15px;
}

.profile-image-section img {
    width: 150px;
    height: 150px;
}

.profile-form {
    padding: 25px;
}

.profile-form label {
    font-size: 0.95rem;
}

.profile-form input[type="text"], .profile-form input[type="email"], .profile-form input[type="file"] {
    padding: 10px;
    font-size: 0.95rem;
}

.profile-form .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
}

/* --- Plan a Trip --- */
.plan-a-trip-section {
    padding: 25px;
}

.plan-trip-header h1 {
    font-size: 2.5rem;
}

.plan-trip-header p {
    font-size: 1.1rem;
}

.plan-trip-form label {
    font-size: 0.95rem;
}

.plan-trip-form input, .plan-trip-form textarea {
    padding: 10px;
    font-size: 0.95rem;
}

.plan-trip-form textarea {
    min-height: 100px;
}

.plan-trip-form .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
}

/* --- My Bookings / Order History --- */
.my-bookings-section h1, .order-history-section h1 {
    font-size: 2.5rem;
}

.my-bookings-section p, .order-history-section p {
    font-size: 1.1rem;
}

.booking-card, .order-card {
    padding: 20px;
    gap: 15px;
}

.booking-card h3, .order-card h3 {
    font-size: 1.5rem;
}

.booking-card p, .order-card p {
    font-size: 0.9rem;
}

.booking-addons h4, .order-card .order-items h4, .order-card .order-shipping h4 {
    font-size: 1.1rem;
}

.booking-addons ul li, .order-card .order-items ul li {
    font-size: 0.85rem;
}

.booking-actions .btn, .order-card .order-actions .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* --- Shop Index --- */
.shop-listing .card img {
    height: 200px;
}

/* --- Product Show --- */
.product-info h1 {
    font-size: 2.8rem;
}

.product-price {
    font-size: 1.8rem;
}

.product-description h2 {
    font-size: 1.5rem;
}

.product-description p {
    font-size: 1rem;
}

.product-meta p {
    font-size: 0.9rem;
}

.add-to-cart-form input[type="number"] {
    width: 80px;
    padding: 8px;
    font-size: 0.95rem;
}

.add-to-cart-form .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
}

/* --- Cart Page --- */
.cart-header h1 {
    font-size: 2.5rem;
}

.cart-header p {
    font-size: 1.1rem;
}

.cart-item {
    padding: 12px;
    gap: 10px;
}

.cart-item-image {
    width: 70px;
    height: 70px;
}

.cart-item .item-details h3 {
    font-size: 1.1rem;
}

.cart-item .item-details .item-type {
    font-size: 0.75rem;
}

.cart-item .item-addons {
    font-size: 0.75rem;
}

.cart-item .item-addons h4 {
    font-size: 0.85rem;
}

.quantity-input {
    width: 45px;
    padding: 5px;
    font-size: 0.85rem;
}

.item-price {
    font-size: 1.1rem;
}

.cart-summary h2 {
    font-size: 1.8rem;
}

.summary-line {
    font-size: 0.95rem;
}

.summary-line.total-line {
    font-size: 1.1rem;
}

.cart-summary .btn-primary, .cart-summary .btn-secondary {
    padding: 10px 0;
    font-size: 1rem;
}

/* --- Checkout Page --- */
.checkout-header h1 {
    font-size: 2.5rem;
}

.checkout-header p {
    font-size: 1.1rem;
}

.checkout-form {
    padding: 25px;
}

.shipping-details h2, .payment-details h2 {
    font-size: 1.5rem;
}

.checkout-form label {
    font-size: 0.95rem;
}

.checkout-form input, .checkout-form select {
    padding: 8px;
    font-size: 0.95rem;
}

.order-summary-checkout h3 {
    font-size: 1.3rem;
}

.order-summary-checkout .summary-line {
    font-size: 0.95rem;
}

.order-summary-checkout .summary-line.total-line {
    font-size: 1.1rem;
}

.checkout-form .btn-primary {
    padding: 12px;
    font-size: 1.1rem;
}

/* --- Admin Panel Common Styles (already in admin_header.php, but ensure consistency) --- */
/* These are already defined within the <style> block of admin_header.php,
   but ensure they align with the new global aesthetic */

/* Responsive Adjustments (Global) */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    .section-title { font-size: 2.2rem; }
    .hero-content h1, .about-hero-content h1 { font-size: 3rem; }
    .hero-content p, .about-hero-content p { font-size: 1.2rem; }
    .call-to-action h2 { font-size: 2.5rem; }
    .call-to-action p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    p { font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.9rem; }

    /* Full width containers with padding */
    .content-wrapper {
        width: 95%; /* Adjust width for smaller screens */
    }

    /* Header & Nav */
    .top-bar .content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .top-bar-contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .currency-lang-switcher {
        width: 100%;
        justify-content: flex-start;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        align-items: flex-start;
    }
    nav ul li {
        margin: 5px 0;
    }
    .currency-lang-switcher {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
        margin-left: 0;
    }

    /* Hero */
    .hero-section, .about-hero-section {
        height: 50vh;
        margin-bottom: 30px;
    }
    .hero-content h1, .about-hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p, .about-hero-content p {
        font-size: 1rem;
    }
    .btn-hero {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .slider-nav button {
        padding: 10px;
        font-size: 1.2rem;
    }

    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card img {
        height: 180px;
    }

    /* Sections */
    .section-padding {
        padding: 30px 0;
    }
    .call-to-action {
        padding: 40px 15px;
    }
    .call-to-action h2 {
        font-size: 2rem;
    }
    .call-to-action p {
        font-size: 1rem;
    }

    /* Detail Pages (common layout) */
    .tour-details-section, .group-trip-details-section, .product-detail-section, .contact-section, .blog-content-section,
    .about-intro, .our-mission, .what-we-offer, .why-different, .static-content-section {
        flex-direction: column;
        gap: 20px;
    }
    .tour-image-banner .tour-title-content,
    .event-image-banner .event-title-content,
    .group-trip-image-banner .group-trip-title-content {
        padding: 0 15px;
    }

    .tour-main-content, .tour-sidebar, .group-trip-main-content, .group-trip-sidebar,
    .product-image-gallery, .product-info, .contact-info, .contact-form-container,
    .blog-posts-list, .blog-sidebar {
        flex: none;
        width: 100%;
        min-width: unset;
        padding: 20px;
    }
    .tour-image-banner, .event-image-banner, .group-trip-image-banner {
        height: 250px;
        padding: 15px;
    }
    .tour-title-content h1, .event-title-content h1, .group-trip-title-content h1 {
        font-size: 2rem;
    }
    .tour-title-content p, .event-title-content p, .group-trip-title-content p {
        font-size: 0.95rem;
    }

    /* Forms */
    .auth-container, .plan-a-trip-section, .checkout-form {
        padding: 20px;
        margin: 20px auto;
    }
    .auth-container h2, .plan-trip-header h1, .checkout-header h1 {
        font-size: 1.8rem;
    }
    .auth-form input, .auth-form select, .auth-form textarea,
    .plan-trip-form input, .plan-trip-form select, .plan-trip-form textarea,
    .checkout-form input, .checkout-form select {
        padding: 8px;
        font-size: 0.9rem;
    }
    .auth-form .btn-primary, .plan-trip-form .btn-primary, .checkout-form .btn-primary {
        padding: 10px;
        font-size: 1rem;
    }

    /* Lists/Tables */
    .my-bookings-section h1, .order-history-section h1, .cart-header h1, .shop-listing h1 {
        font-size: 2rem;
    }
    .booking-card, .order-card {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .booking-card h3, .order-card h3 {
        font-size: 1.4rem;
    }
    .booking-card p, .order-card p {
        font-size: 0.9rem;
    }
    .booking-addons h4, .order-card .order-items h4, .order-card .order-shipping h4 {
        font-size: 1.1rem;
    }
    .booking-addons ul li, .order-card .order-items ul li {
        font-size: 0.85rem;
    }
    .booking-actions .btn, .order-card .order-actions .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* --- Shop Index --- */
    .shop-listing .card img {
        height: 180px;
    }

    /* --- Product Show --- */
    .product-info h1 {
        font-size: 2.5rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .product-description h2 {
        font-size: 1.3rem;
    }

    .product-description p {
        font-size: 0.95rem;
    }

    .product-meta p {
        font-size: 0.85rem;
    }

    .add-to-cart-form input[type="number"] {
        width: 70px;
        padding: 6px;
        font-size: 0.9rem;
    }

    .add-to-cart-form .btn-primary {
        padding: 8px 15px;
        font-size: 0.95rem;
    }

    /* --- Cart Page --- */
    .cart-item {
        padding: 10px;
    }
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    .cart-item .item-details h3 {
        font-size: 1.1rem;
    }
    .cart-item .item-details .item-type {
        font-size: 0.75rem;
    }
    .cart-item .item-addons {
        font-size: 0.75rem;
    }
    .cart-item .item-addons h4 {
        font-size: 0.85rem;
    }
    .quantity-input {
        width: 45px;
        padding: 5px;
        font-size: 0.85rem;
    }
    .item-price {
        font-size: 1.1rem;
    }

    .cart-summary h2 {
        font-size: 1.5rem;
    }
    .summary-line {
        font-size: 0.85rem;
    }
    .summary-line.total-line {
        font-size: 1.1rem;
    }
    .cart-summary .btn-primary, .cart-summary .btn-secondary {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    /* --- Checkout Page --- */
    .checkout-header h1 {
        font-size: 2.5rem;
    }
    .checkout-header p {
        font-size: 1.1rem;
    }
    .checkout-form {
        padding: 20px;
    }
    .shipping-details h2, .payment-details h2 {
        font-size: 1.5rem;
    }
    .checkout-form label {
        font-size: 0.9rem;
    }
    .checkout-form input, .checkout-form select {
        padding: 8px;
        font-size: 0.9rem;
    }
    .order-summary-checkout h3 {
        font-size: 1.3rem;
    }
    .order-summary-checkout .summary-line {
        font-size: 0.85rem;
    }
    .order-summary-checkout .summary-line.total-line {
        font-size: 1.1rem;
    }
    .checkout-form .btn-primary {
        padding: 10px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col .social-links {
        justify-content: center;
        display: flex;
    }
}
