/* Main Styles for PanAf Travel and Tours Website */

/* Global Styles */
:root {
    --primary-color: #003366;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --light-bg: #f5f5f5;
    --dark-bg: #333333;
    --text-color: #333333;
    --light-text: #ffffff;
    --font-main: 'Open Sans', Arial, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.logo-container {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
}

.logo-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

.logo-container p {
    font-style: italic;
    color: var(--secondary-color);
}

/* Banner Styles */
.page-banner {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Package Styles */
.package {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 40px;
}

.package h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.package-intro {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.itinerary h5, .inclusions-exclusions h5 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.inclusions-exclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.inclusions, .exclusions {
    flex: 1;
    min-width: 300px;
}

.inclusions p, .exclusions p {
    margin-bottom: 8px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
    color: white;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: bold;
    text-align: right;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.contact-form h3, .contact-info h3 {
    color: white;
    margin-bottom: 20px;
}

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

.contact .cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo, .footer-links, .footer-services, .footer-newsletter {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: white;
}

.footer-links h4, .footer-services h4, .footer-newsletter h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    color: #ccc;
    margin: 0 10px;
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-banner h2 {
        font-size: 2rem;
    }
    
    .inclusions-exclusions {
        flex-direction: column;
    }
    
    .service-card, .package {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
}
