/*
Theme Name: Altruistical Tours & Treks
Description: This Theme is specially designed for Altruistical Tours & Treks
Theme URL: https://www.eventexpeditiontravel.com/
Author: PINE TECH
Author URI: https://www.eventexpeditiontravel.com/
Version: 0.1
Date: 27/03/2026
Copyright: (c) 2026 Altruistical Tours & Treks
*/
:root {
    --primary: #1a4b8c;
    --primary-dark: #0f2d54;
    --primary-light: #2a6bc4;
    --secondary: #d4a843;
    --accent: #e8f0fe;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar-custom {
    background: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar-custom.scrolled {
    background: var(--primary-dark);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white) !important;
}

.navbar-custom .navbar-brand img {
    height: 80px;
    margin-right: 10px;
    border-radius: 6px;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 8px;
    transition: color 0.3s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--secondary) !important;
}

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-section .carousel-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Background image per slide */
.hero-section .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Gradient overlay */
.hero-section .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 45, 84, 0.75),
        rgba(26, 75, 140, 0.5));
    z-index: -1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 75, 140, 0.4);
}

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: #c49a35;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: transparent;
}

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

/* Section styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-subtitle {
    color: var(--secondary);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto 25px;
}

/* About */
.about-section {
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(26, 75, 140, 0.2));
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.about-stat p {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tour Packages */
.packages-section {
    background: var(--accent);
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.package-card .card-body {
    padding: 30px;
}

.package-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.package-card .duration {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.package-card .price span {
    font-size: 0.9rem;
    color: #999;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.package-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.95rem;
}

.package-features li i {
    color: var(--secondary);
    margin-right: 8px;
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Places */
.places-section {
    background: var(--white);
}

.place-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.4s;
}

.place-card:hover {
    transform: scale(1.03);
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.place-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(15, 45, 84, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
}

.place-card .overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.place-card .overlay p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

/* Travel Info */
.travel-info-section {
    background: var(--accent);
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card .icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card h5 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.info-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Contact */
.contact-section {
    background: var(--white);
}

.contact-form .form-control {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item .icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-info-item h6 {
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.contact-info-item p {
    color: #777;
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-card {
    background: #efefef;
    padding: 30px;
    border-radius: 12px;
    /*box-shadow:0 10px 30px rgba(0,0,0,0.08);*/
    text-align: center;
}

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

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

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(26, 75, 140, 0.4);
    transition: all 0.3s;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

body.admin-bar .navbar {
    top: 32px;
}
/* Hero Banner Overlay */
.hero.inner-image.overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient overlay using ::before */
.hero.inner-image.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay */
    background: linear-gradient(135deg, rgba(30,60,114,0.7), rgba(42,82,152,0.7));
    z-index: 1;
}

/* Ensure text is above overlay */
.hero.inner-image.overlay .container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 500px) {
	.navbar-custom .navbar-brand img{
		height: 55px;
	}
	.navbar-custom .navbar-brand{
		font-size: 10px;
	}
} 