/* General Styles */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-padding {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #000000;
}

h1.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

h1.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #DAA520; /* Gold */
    margin: 10px auto 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #DAA520; /* Gold */
    text-decoration: none;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #DAA520; /* Gold */
    transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #DAA520; /* Gold */
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    /* You must replace 'hero-bg.jpg' with your chosen background image filename */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin: 0 0 40px;
}

.cta-button {
    background-color: #DAA520; /* Gold */
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #B8860B; /* Darker Gold */
}

/* About Section */
.about-section {
    background-color: #F8F8FF; /* Off-white */
}

/* Featured Tours Section */
.featured-tours-section {
    background-color: #ffffff;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-info {
    padding: 20px;
    text-align: center;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-top: 0;
}

.learn-more-button {
    display: inline-block;
    background-color: #DAA520; /* Gold */
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #B8860B; /* Darker Gold */
}

/* Tours Page Styles */
.tours-page-content {
    background-color: #F8F8FF;
}

.tour-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tour-image {
    flex: 1;
}

.tour-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.tour-details {
    flex: 2;
}

.tour-details h2 {
    font-size: 2rem;
    margin-top: 0;
    color: #DAA520;
}

.tour-price {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tour-price strong {
    color: #000000;
}

.tour-description {
    line-height: 1.6;
}

.tour-features, .tour-itinerary {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tour-features li, .tour-itinerary p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.booking-form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form label {
    font-weight: 500;
}

.booking-form select,
.booking-form input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.paypal-button {
    background-color: #007bff; /* PayPal Blue */
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.paypal-button:hover {
    background-color: #0056b3; /* Darker Blue */
}

/* Reviews Page Styles */
.reviews-page-content {
    background-color: #F8F8F