/* Base Styles */
:root {
    --primary-color: #2b5797;
    --secondary-color: #a77e2d;
    --accent-color: #e74c3c;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --text-color: #4a4a4a;
    --white-color: #fff;
    --max-width: 1200px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #1a4178;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: #8c6820;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    color: #777;
    font-size: 18px;
}

/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 22px;
    color: var(--white-color);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: #777;
}

/* Tours Preview Section */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tour-content p {
    color: #777;
    margin-bottom: 20px;
}

.tour-meta {
    display: flex;
    margin-bottom: 20px;
}

.tour-meta span {
    margin-right: 20px;
    color: #777;
    font-size: 14px;
}

.tour-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}

.testimonials .section-header h2 {
    color: var(--white-color);
}

.testimonials .section-header p {
    color: #ccc;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: #ccc;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 100px 0;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3 {
    color: var(--white-color);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white-color);
    margin-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .feature-card, .tour-card, .testimonial {
        padding: 20px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 70px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tours Page */
.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.tour-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.tour-item:nth-child(even) {
    direction: rtl;
}

.tour-item:nth-child(even) .tour-details,
.tour-item:nth-child(even) .tour-image {
    direction: ltr;
}

.tour-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 15px;
}

.tour-highlights span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    margin-right: 20px;
}

.tour-highlights i {
    margin-right: 5px;
    color: var(--primary-color);
}

.tag {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.tour-details p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
}

.tour-features {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.tour-features h3,
.tour-pricing h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tour-features ul {
    list-style: none;
}

.tour-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.tour-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 16px;
}

.tour-pricing {
    margin-bottom: 25px;
}

.tour-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
}

/* Custom Tours Section */
.custom-tours {
    background-color: var(--light-color);
    padding: 80px 0;
}

.custom-tours-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-tours-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.custom-tours-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

.custom-tours-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.custom-tours-content i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.custom-tours-content .btn {
    margin-top: 20px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--white-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 0;
    color: var(--dark-color);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Update for Mobile View */
@media (max-width: 768px) {
    .tour-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-item:nth-child(even) {
        direction: ltr;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .tour-details h2 {
        font-size: 28px;
    }
    
    .tour-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-highlights span {
        margin-right: 0;
    }
}

/* Additional responsive adjustments */
@media (max-width: 576px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .tour-features, 
    .tour-pricing {
        padding: 15px;
    }
    
    .tour-features h3,
    .tour-pricing h3 {
        font-size: 18px;
    }
}

/* Contact Page */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info,
.contact-form {
    padding: 30px;
    border-radius: 8px;
}

.contact-info {
    background-color: var(--light-color);
}

.contact-form {
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info .social-links h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info .social-links .links {
    display: flex;
}

.contact-info .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.contact-info .social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--dark-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(43, 87, 151, 0.2);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.contact-form .btn-primary {
    padding: 14px 30px;
    font-size: 16px;
    margin-top: 10px;
}

/* Map Section */
.map {
    height: 400px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Layout for larger forms */
@media (min-width: 768px) {
    .contact-form form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact h2 {
        font-size: 28px;
    }
    
    .info-item i {
        font-size: 20px;
        margin-right: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
} 