
:root {
    --primary-color: #1a472a;
    --secondary-color: #2e6a34;
    --accent-color: #c9a227;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --light-green: #e8f5e9;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 1.15rem;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .6)), url('../images/main-build.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 320px 0 120px;
    text-align: center;
    position: relative;
}

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

    .hero-section p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

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

.section-title {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

.feature-box {
    padding: 40px 25px;
    border-radius: 10px;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

    .feature-box:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.feature-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    background-color: rgba(46, 106, 52, 0.1);
}

.placeholder-img {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

    .placeholder-img:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    }

.accommodation-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .accommodation-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    position: relative;
    overflow: hidden;
}

    .pricing-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--secondary-color);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .pricing-card.featured {
        border: 2px solid var(--accent-color);
        transform: scale(1.05);
    }

        .pricing-card.featured:before {
            background: var(--accent-color);
            height: 5px;
        }

        .pricing-card.featured:after {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: 600;
        }

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

    .price span {
        font-size: 16px;
        font-weight: normal;
        color: #6c757d;
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0,0,0,0.1);
    }

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0,0,0,0.1);
    }

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e1e5ea;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(46, 106, 52, 0.15);
    }

footer {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 70px 0 30px;
}

    footer h4, footer h5 {
        color: white;
    }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

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

.history-section {
    background-color: var(--light-green);
    position: relative;
}

    .history-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(46, 106, 52, 0.05)" stroke-width="2"/></svg>');
    }

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        width: 6px;
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
        border-radius: 3px;
    }

.timeline-item {
    padding: 15px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        background-color: white;
        border: 5px solid var(--secondary-color);
        border-radius: 50%;
        top: 20px;
        right: -12px;
        z-index: 1;
    }

.left {
    left: 0;
}

.right {
    left: 50%;
}

    .right::after {
        left: -12px;
    }

.timeline-content {
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

    .timeline-content:before {
        content: '';
        position: absolute;
        top: 20px;
        width: 0;
        height: 0;
        border-style: solid;
    }

.left .timeline-content:before {
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
}

.right .timeline-content:before {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item::after {
            left: 50%;
            top:0;
            transform:translate(-50%, -50%)
        }
    .timeline-content {
        margin: 10px 0;
    }

    .right {
        left: 0;
    }

        .left .timeline-content:before, .right .timeline-content:before {
            display: none;
        }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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

.stats-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: -10px;
    color: var(--accent-color);
}

.stat-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-section {
    background-color: white;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 15px;
    position: relative;
}

    .testimonial-card:before {
        content: """; position: absolute;
        top: -20px;
        left: 20px;
        font-size: 80px;
        color: var(--light-green);
        font-family: Georgia, serif;
        line-height: 1;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    border-radius: 50px;
}

.nav-pills .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    margin: 0 5px;
}

.gallery-section {
    background-color: var(--light-green);
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 250px;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: 10%;
    right: 5%;
}

.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
}

    .navbar.scrolled {
        padding: 10px 0;
        background-color: white !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

        .navbar.scrolled .navbar-brand h3 {
            color: var(--primary-color);
        }

        .navbar.scrolled .nav-link {
            color: var(--dark-color) !important;
        }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }
#hpot {
    display: none;
}
.pixelz {
    display: inline-block;
    color: white;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: all 0.5s ease;
}
    .pixelz:hover {
        color: lightgray;
        text-decoration: none;
    }