/* style.css - Hidden Wonders Safaris */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fffef7;
    color: #2c2a24;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .nav-links a, .btn, .section-title {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Cards & UI Elements */
.card, .package-card, .testimonial-card, .service-card, .destination-card, .blog-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover, .package-card:hover, .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 40px -16px rgba(0,0,0,0.12);
}

.btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e67e22;
    color: #e67e22;
}

.btn-outline:hover {
    background: #e67e22;
    color: white;
}

.btn:hover {
    background: #cf711f;
    transform: scale(0.97);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Header */
header {
    background: #ffffffdd;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid #f0ede5;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h2 {
    font-size: 1.8rem;
    color: #2c5e2e;
}
.logo span {
    color: #e67e22;
    font-weight: 700;
}
.logo p {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #3a352a;
    transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: #e67e22;
}

/* Hero Section */
.hero {
    background: linear-gradient(105deg, #faf7ef 0%, #fff3e0 100%);
    padding: 60px 0 80px;
    border-radius: 0 0 64px 64px;
}
.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c5e2e;
}
.hero-image {
    flex: 1;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}
.hero-image img {
    width: 100%;
    display: block;
}

/* Sections */
.section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #2c5e2e;
}
.section-sub {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: #5e5a4f;
}

/* Grids */
.dest-grid, .packages-grid, .services-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.destination-card, .service-card {
    text-align: center;
    padding: 32px 16px;
    background: #fffbf0;
}
.destination-card i, .service-card i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 20px;
}
.destination-card h3, .service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

/* Package Cards */
.package-card {
    padding: 0;
    overflow: hidden;
}
.package-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.package-info {
    padding: 24px;
}
.package-price {
    font-weight: 800;
    color: #e67e22;
    font-size: 1.4rem;
    margin: 12px 0;
}

/* Blog Cards */
.blog-card {
    overflow: hidden;
}
.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.blog-content {
    padding: 24px;
}
.blog-date {
    color: #e67e22;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* Forms */
.booking-form, .contact-form {
    background: white;
    padding: 40px;
    border-radius: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 20px;
}
input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 48px;
    border: 1px solid #ddd8c8;
    font-family: 'Inter', sans-serif;
    background: #fefcf5;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e67e22;
}

/* Payment Section */
.payment-methods {
    background: #2c5e2e10;
    border-radius: 48px;
    padding: 32px;
    margin-top: 32px;
}
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    font-size: 2.4rem;
    color: #2c5e2e;
    margin: 24px 0;
}
.payment-icons i, .payment-icons span {
    font-size: 2.2rem;
}

/* Testimonials */
.testimonial-card {
    padding: 28px;
    background: #fffcf3;
}
.rating {
    color: #f4b942;
    margin: 12px 0;
}

/* Footer */
footer {
    background: #1f2a1b;
    color: #ece3d0;
    padding: 48px 0 24px;
    border-radius: 48px 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 40px;
}
.social-icons a {
    color: #f3cf9a;
    font-size: 1.6rem;
    margin-right: 20px;
    transition: 0.2s;
}
.social-icons a:hover {
    color: #e67e22;
}

/* Responsive */
@media (max-width: 800px) {
    .nav-flex {
        flex-direction: column;
        gap: 16px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 50px 0;
    }
    .booking-form, .contact-form {
        padding: 24px;
    }
}