/*
	Theme Name: Kii Nam Tours & Travels
	Description: This Theme is specially designed for Kii Nam Tours & Travels
	Theme URL: https://www.kiinamtour.com
	Author: PINE TECH
	Author URI: https://www.kiinamtour.com
	Version: 0.1
	Date: 07/12/2025
	Copyright: (c) 2025 Kii Nam Tours & Travels
*/
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7931E;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav li.current-menu-item > a,
.navbar-nav li.current-menu-parent > a,
.navbar-nav li.current-menu-ancestor > a {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav li > a {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.navbar-nav li > a:hover {
    color: var(--primary-color);
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

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

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Counter Stats */
.counter-section {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.counter-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.counter-item h4 {
    font-size: 1.3rem;
}

.counter-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tours Section */
.tours-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 1rem;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-card-body {
    padding: 1.5rem;
}

.tour-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tour-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tour-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(0,78,137,0.95), rgba(255,107,53,0.85)),
                url('assets/images/news.png') center/cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 1rem;
    border-radius: 25px;
    border: none;
    margin-right: 1rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

footer h5 {
    color: white;
    margin-bottom: 1rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}